summaryrefslogtreecommitdiff
path: root/dev-python/pkgcraft-python/pkgcraft-python-0.0.3.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-02-06 08:23:58 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-02-06 08:23:58 +0000
commit779f080e8cf3d2ccd41a1d4416b2e9b10977a6bc (patch)
tree37afa9817138227bba024d5043556cdd58f43a5e /dev-python/pkgcraft-python/pkgcraft-python-0.0.3.ebuild
parente124fc070d11b3fe1d3ecfe4daee99351f2b8f8d (diff)
downloadbaldeagleos-repo-779f080e8cf3d2ccd41a1d4416b2e9b10977a6bc.tar.gz
baldeagleos-repo-779f080e8cf3d2ccd41a1d4416b2e9b10977a6bc.tar.xz
baldeagleos-repo-779f080e8cf3d2ccd41a1d4416b2e9b10977a6bc.zip
Adding metadata
Diffstat (limited to 'dev-python/pkgcraft-python/pkgcraft-python-0.0.3.ebuild')
-rw-r--r--dev-python/pkgcraft-python/pkgcraft-python-0.0.3.ebuild74
1 files changed, 0 insertions, 74 deletions
diff --git a/dev-python/pkgcraft-python/pkgcraft-python-0.0.3.ebuild b/dev-python/pkgcraft-python/pkgcraft-python-0.0.3.ebuild
deleted file mode 100644
index 5dc743ca3d03..000000000000
--- a/dev-python/pkgcraft-python/pkgcraft-python-0.0.3.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for pkgcraft"
-HOMEPAGE="
- https://pypi.org/project/pkgcraft/
- https://github.com/pkgcraft/pkgcraft-python
-"
-
-if [[ ${PV} == 9999 ]] ; then
- EGIT_REPO_URI="https://github.com/pkgcraft/pkgcraft-python"
- inherit git-r3
-
- PKGCRAFT_VERSION_MIN="9999"
- PKGCRAFT_VERSION_MAX="9999"
-else
- SRC_URI="https://github.com/pkgcraft/pkgcraft-python/releases/download/v${PV}/${P/-python}.tar.gz"
- S="${WORKDIR}"/${P/-python}
-
- KEYWORDS="~amd64"
-
- PKGCRAFT_VERSION_MIN="0.0.4"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+examples"
-
-RDEPEND="
- >=sys-libs/pkgcraft-${PKGCRAFT_VERSION_MIN}:=
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- dev-python/cython
- dev-python/setuptools_scm
- virtual/pkgconfig
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
- if [[ ${PV} != 9999 ]] ; then
- local actual_pkgcraft_min=$(sed -En '/^MIN_VERSION =/{s/[^0-9.]//gp}' setup.py || die)
- if [[ ${actual_pkgcraft_min} != ${PKGCRAFT_VERSION_MIN} ]] ; then
- die "Mismatch between setup.py's MIN_VERSION and ebuild!"
- fi
- fi
-
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest
-}
-
-python_install() {
- # Conditional because these aren't installed officially right now
- # and the naming is just for convenience.
- if use examples ; then
- while IFS= read -r -d '' file ; do
- python_newexe "${S}"/examples/${file##*/} pkgcraft-${file##*/}
- done < <(find "${S}"/examples -type f -executable -print0 || die)
- fi
-
- distutils-r1_python_install
-}