sys-apps/pkgcore: add 0.12.40

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
Arthur Zamarin
2026-08-17 21:46:25 +03:00
parent 59c9a31d7a
commit 2b0ab673e7
2 changed files with 50 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST pkgcore-0.12.38.tar.gz 647843 BLAKE2B a24f80cd0dd5dbe8f22f827f318791eb3d825106efe165381094eebd694c46a163e6f2afdd8df348202fd3597ffc64d3207c3a4f852d2e30a35d6efc77ad3a09 SHA512 fe45b38f3f3f8976a2c1d6a41e9f8892d5d2d1a1cc774d042df93bfd75c8b40e72a409cb11ed3903e5cdd9f85643279f5207ed223187eabf87602adfd5945465
DIST pkgcore-0.12.39.tar.gz 650895 BLAKE2B f84e045c4de896d2cdee9fe90f9c4c9adc2654f25d282126d367af49e186152894ba43ed2be4b24c2f931288ae49236c1484d25f8ff5958c91f3bc381c956c0b SHA512 6ee7664e69bdaece4c653812b89aa69244a2f90da8c6c38cfc66f3538ac590e5ad4e91a69643a192e20a88661bfec855113488be99683c9c608bee18b0ffde97
DIST pkgcore-0.12.40.tar.gz 658740 BLAKE2B 417edb50f09304410baa00499f47308d3e86a936c6993e858d6a1775d580075285c8fbf3bb4ecd662c54b81f4743a08372e6416c361f13d6436ca0e6a1e1e052 SHA512 6c52e36dd2fd835859969c2d3aa10951300dc762930c76cbb7113905d58b03b2a166b43421418ad600ab5b050631691ce75b99ce1b244e85b327d1b6cef148f2

View File

@@ -0,0 +1,49 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=standalone
PYTHON_COMPAT=( python3_{12..15} )
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 ~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"
if [[ ${PV} == *9999 ]]; then
RDEPEND="~dev-python/snakeoil-9999[${PYTHON_USEDEP}]"
else
RDEPEND=">=dev-python/snakeoil-0.11.4[${PYTHON_USEDEP}]"
fi
RDEPEND+="
>=app-shells/bash-5.3[readline]
dev-python/lxml[${PYTHON_USEDEP}]
"
BDEPEND="${RDEPEND}
>=dev-python/flit-core-3.8[${PYTHON_USEDEP}]
test? (
dev-vcs/git
)
"
EPYTEST_PLUGINS=( pkgcore )
distutils_enable_tests pytest
python_install_all() {
local DOCS=( NEWS.rst )
[[ ${PV} == *9999 ]] || doman build/sphinx/man/*
distutils-r1_python_install_all
}