diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2023-08-29 21:32:47 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-08-29 21:53:31 +0300 |
commit | ed336d5a40cf555dc5f9cc8b349af892080c6d61 (patch) | |
tree | e347b3c42a128e72feab4a9b7da3a7a7321c1c0a /sys-apps/pkgcore | |
parent | dev-python/sentry-sdk: add 1.30.0 (diff) | |
download | gentoo-ed336d5a40cf555dc5f9cc8b349af892080c6d61.tar.gz gentoo-ed336d5a40cf555dc5f9cc8b349af892080c6d61.tar.bz2 gentoo-ed336d5a40cf555dc5f9cc8b349af892080c6d61.zip |
sys-apps/pkgcore: add 0.12.23
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'sys-apps/pkgcore')
-rw-r--r-- | sys-apps/pkgcore/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/pkgcore/pkgcore-0.12.23.ebuild | 47 |
2 files changed, 48 insertions, 0 deletions
diff --git a/sys-apps/pkgcore/Manifest b/sys-apps/pkgcore/Manifest index a2d9ff7d217d..1fc9dc404760 100644 --- a/sys-apps/pkgcore/Manifest +++ b/sys-apps/pkgcore/Manifest @@ -1,2 +1,3 @@ DIST pkgcore-0.12.21.tar.gz 629769 BLAKE2B d8a558205ef7832a3da082a413804658778fa7b2764f63217528c31db5767ecfebbd3148308e00d637a335a181a9131ea42e9ddff628e21088a3c5bb7570002b SHA512 05821df638967ac881f549d20a92f10b87c1934e135aacafcf8d5c5434596e1c88913fcecf7dc68c4e09d456ac356ca2275b8ce664ee1bda4cf1a024395fea6f DIST pkgcore-0.12.22.tar.gz 631425 BLAKE2B 2f270f8f1a75111c60717fa7d793941984a910c9700aed09d8689a96cd6aa2a91ca55723aaeff64e97bbfa978fc49fd2ba0f519006f64124dd77124b1c1768a8 SHA512 ca69643567c073ee2e21b251aa10578dfd02355b498c16ccea82afcb7bb88ec7051a0a25238a93ff56b97f8e8d961c0bd97b58ad46f4aa68079c2d0d88b128cb +DIST pkgcore-0.12.23.tar.gz 632146 BLAKE2B c5e5911c957c48edac39e6da54456d0691205c4ccf170f34379d4e69ab519f5985247e172f63aac69c8fd2ef0c8bf5ec710faf6d3f88ccdd8718b50f919d5a17 SHA512 a5ff9c8cae148caa62e5562941d62da9964d1c0bab237249b258b46b225223c5cf630db1cf13dd9e03fc4936382eddaf823c4cb32d52578764ef903a678f845d diff --git a/sys-apps/pkgcore/pkgcore-0.12.23.ebuild b/sys-apps/pkgcore/pkgcore-0.12.23.ebuild new file mode 100644 index 000000000000..3f64d0ccb6e6 --- /dev/null +++ b/sys-apps/pkgcore/pkgcore-0.12.23.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=standalone +PYTHON_COMPAT=( python3_{10..12} ) +inherit distutils-r1 + +if [[ ${PV} == *9999 ]] ; then + EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/pkgcore/pkgcore.git + https://github.com/pkgcore/pkgcore.git" + inherit git-r3 +else + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" + inherit pypi +fi + +DESCRIPTION="a framework for package management" +HOMEPAGE="https://github.com/pkgcore/pkgcore" + +LICENSE="BSD MIT" +SLOT="0" + +RDEPEND=" + >=app-shells/bash-5.0[readline] + dev-python/lxml[${PYTHON_USEDEP}] +" +if [[ ${PV} == *9999 ]]; then + RDEPEND+=" ~dev-python/snakeoil-9999[${PYTHON_USEDEP}]" +else + RDEPEND+=" >=dev-python/snakeoil-0.10.4[${PYTHON_USEDEP}]" +fi +BDEPEND=" + >=dev-python/flit-core-3.8[${PYTHON_USEDEP}] + test? ( + dev-vcs/git + ) +" + +distutils_enable_tests pytest + +python_install_all() { + local DOCS=( NEWS.rst ) + [[ ${PV} == *9999 ]] || doman build/sphinx/man/* + distutils-r1_python_install_all +} |