summaryrefslogtreecommitdiff
path: root/dev-python/installer/installer-1.0.1.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-05-13 17:57:46 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-05-13 17:57:46 +0000
commit33b1502bb3d163709fff312aca31b2b997e203a4 (patch)
tree044c568c750d3623ebbd9b42d04dfe603b8255d3 /dev-python/installer/installer-1.0.1.ebuild
parentc9247bc74da2fdefe6844e838ed60c995ce500bd (diff)
downloadbaldeagleos-repo-33b1502bb3d163709fff312aca31b2b997e203a4.tar.gz
baldeagleos-repo-33b1502bb3d163709fff312aca31b2b997e203a4.tar.xz
baldeagleos-repo-33b1502bb3d163709fff312aca31b2b997e203a4.zip
Adding metadata
Diffstat (limited to 'dev-python/installer/installer-1.0.1.ebuild')
-rw-r--r--dev-python/installer/installer-1.0.1.ebuild71
1 files changed, 71 insertions, 0 deletions
diff --git a/dev-python/installer/installer-1.0.1.ebuild b/dev-python/installer/installer-1.0.1.ebuild
new file mode 100644
index 000000000000..10ef0f43e6e2
--- /dev/null
+++ b/dev-python/installer/installer-1.0.1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 2022-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# please keep this ebuild at EAPI 8 -- sys-apps/portage dep
+EAPI=8
+
+DISTUTILS_USE_PEP517=no
+PYPI_VERIFY_REPO=https://github.com/pypa/installer
+PYTHON_COMPAT=( python3_{10..14} )
+
+inherit distutils-r1 pypi
+
+WHEEL_NAME=$(pypi_wheel_name)
+DESCRIPTION="A library for installing Python wheels"
+HOMEPAGE="
+ https://pypi.org/project/installer/
+ https://github.com/pypa/installer/
+ https://installer.readthedocs.io/en/latest/
+"
+SRC_URI+="
+ $(pypi_wheel_url)
+ verify-provenance? (
+ $(pypi_provenance_url "${WHEEL_NAME}") -> ${WHEEL_NAME}.provenance
+ )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
+
+BDEPEND="
+ app-arch/unzip
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+src_unpack() {
+ if use verify-provenance; then
+ pypi_verify_provenance "${DISTDIR}/${WHEEL_NAME}"{,.provenance}
+ fi
+
+ pypi_src_unpack
+
+ cp "${DISTDIR}/${WHEEL_NAME}" "${WHEEL_NAME}.zip" || die
+ unpack "./${WHEEL_NAME}.zip"
+}
+
+python_compile() {
+ python_domodule src/installer "${WORKDIR}"/*.dist-info
+}
+
+python_test() {
+ local EPYTEST_DESELECT=()
+
+ case ${EPYTHON} in
+ python3.15*)
+ EPYTEST_DESELECT+=(
+ # extra warnings for os.path.commonprefix()
+ tests/test_core.py::TestInstall::test_skips_pycache_and_warns
+ )
+ ;;
+ esac
+
+ epytest
+}
+
+python_install() {
+ distutils-r1_python_install
+ python_optimize
+}