diff options
author | Patrick McLean <chutzpah@gentoo.org> | 2024-04-08 14:22:01 -0700 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2024-04-08 15:30:31 -0700 |
commit | 9fc509b2bc5196e38f35f89377d11f067d7d67bc (patch) | |
tree | 4014fe767635ef20c6ba407cee45757f1eeb4ac1 | |
parent | dev-python/hishel: new package, add 0.0.25 (diff) | |
download | gentoo-9fc509b2bc5196e38f35f89377d11f067d7d67bc.tar.gz gentoo-9fc509b2bc5196e38f35f89377d11f067d7d67bc.tar.bz2 gentoo-9fc509b2bc5196e38f35f89377d11f067d7d67bc.zip |
dev-python/pbs-installer: new package, add 2024.4.1
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
-rw-r--r-- | dev-python/pbs-installer/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pbs-installer/metadata.xml | 12 | ||||
-rw-r--r-- | dev-python/pbs-installer/pbs-installer-2024.4.1.ebuild | 31 |
3 files changed, 44 insertions, 0 deletions
diff --git a/dev-python/pbs-installer/Manifest b/dev-python/pbs-installer/Manifest new file mode 100644 index 000000000000..64f270ba927d --- /dev/null +++ b/dev-python/pbs-installer/Manifest @@ -0,0 +1 @@ +DIST pbs-installer-2024.4.1.gh.tar.gz 68006 BLAKE2B 5455b00dd08881e78fbbc9b565e9224ee7d04f17855da9869fcb420fcbf8ee3743e6f21113d406bcfb66e786788735bd1ef2d3bfa30a14a5a74fb2c36e8f3d0a SHA512 407ffc7a7f5430d8f889f32b53614cc2c5e3fb05937905d6b43c7ca9151f3d5cb794bcd60633e4945dc62555cc6575d75e0b7b7a1e5dc0c9f99c2318fada3a10 diff --git a/dev-python/pbs-installer/metadata.xml b/dev-python/pbs-installer/metadata.xml new file mode 100644 index 000000000000..10fd06206281 --- /dev/null +++ b/dev-python/pbs-installer/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>chutzpah@gentoo.org</email> + <name>Patrick McLean</name> + </maintainer> + <upstream> + <remote-id type="pypi">pbs-installer</remote-id> + <remote-id type="github">frostming/pbs-installer</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/pbs-installer/pbs-installer-2024.4.1.ebuild b/dev-python/pbs-installer/pbs-installer-2024.4.1.ebuild new file mode 100644 index 000000000000..dfe012214833 --- /dev/null +++ b/dev-python/pbs-installer/pbs-installer-2024.4.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=pdm-backend +PYTHON_COMPAT=( python3_{10..12} ) +inherit distutils-r1 + +DESCRIPTION="Installer for Python Build Standalone" +HOMEPAGE=" + https://pypi.org/project/pbs-installer/ + https://github.com/frostming/pbs-installer/ + +" +SRC_URI="https://github.com/frostming/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +BDEPEND=" + dev-python/zstandard[${PYTHON_USEDEP}] +" + +# upstream does not provide any tests +RESTRICT=test + +python_configure_all() { + export PDM_BUILD_SCM_VERSION=${PV} +} |