repo/gentoo:master commit in: sys-apps/pkgcore/
"Arthur Zamarin" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786994215.59c9a31d7a01347bdf23c89afd62730fdc261100.arthurzam@gentoo> |
commit: 59c9a31d7a01347bdf23c89afd62730fdc261100
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 17 18:45:23 2026 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 17 19:16:55 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59c9a31d
sys-apps/pkgcore: drop 0.12.37-r1
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-apps/pkgcore/Manifest | 2 --
sys-apps/pkgcore/pkgcore-0.12.37-r1.ebuild | 55 ------------------------------
2 files changed, 57 deletions(-)
diff --git a/sys-apps/pkgcore/Manifest b/sys-apps/pkgcore/Manifest
index 47a0b20b290e..bf20278e57dd 100644
--- a/sys-apps/pkgcore/Manifest
+++ b/sys-apps/pkgcore/Manifest
@@ -1,4 +1,2 @@
-DIST pkgcore-0.12.37-fix-empty-depset.patch 4349 BLAKE2B abee753e497e45197faeb2fa7da269c4be905df84db9f47019b4f6fbdfdcd3dd3c3209f1bd6b53221262ced4e1a038d583e58a41a4cbed3624e303e5362dbb01 SHA512 f4cfb7146002ae245cde7797dec727190727f7530f8cb809eb503b18c39799b339ba2b5b1d529c9a14d837e5b60236c42074798656cc603654b67f862b05fdb0
-DIST pkgcore-0.12.37.tar.gz 601731 BLAKE2B b4320a9e6e4bf6e7e3185f0e7f906fe53846e0d6d4a97ede3c53fdf26493b27a4f42c10c6ced438e381b7cedc4289c2bbf87e5f2905b829f331f6f3be681dc64 SHA512 30d6f6600cf68aede6963fd0c170842fb834b183b4225e5357b3d2e79a2d49957f67b667798e7dfb08b0d73a34380bd2a34a76ad52810849cc8b748731fb58e2
DIST pkgcore-0.12.38.tar.gz 647843 BLAKE2B a24f80cd0dd5dbe8f22f827f318791eb3d825106efe165381094eebd694c46a163e6f2afdd8df348202fd3597ffc64d3207c3a4f852d2e30a35d6efc77ad3a09 SHA512 fe45b38f3f3f8976a2c1d6a41e9f8892d5d2d1a1cc774d042df93bfd75c8b40e72a409cb11ed3903e5cdd9f85643279f5207ed223187eabf87602adfd5945465
DIST pkgcore-0.12.39.tar.gz 650895 BLAKE2B f84e045c4de896d2cdee9fe90f9c4c9adc2654f25d282126d367af49e186152894ba43ed2be4b24c2f931288ae49236c1484d25f8ff5958c91f3bc381c956c0b SHA512 6ee7664e69bdaece4c653812b89aa69244a2f90da8c6c38cfc66f3538ac590e5ad4e91a69643a192e20a88661bfec855113488be99683c9c608bee18b0ffde97
diff --git a/sys-apps/pkgcore/pkgcore-0.12.37-r1.ebuild b/sys-apps/pkgcore/pkgcore-0.12.37-r1.ebuild
deleted file mode 100644
index f59a04f82d14..000000000000
--- a/sys-apps/pkgcore/pkgcore-0.12.37-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# 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"
-SRC_URI+=" https://github.com/pkgcore/pkgcore/commit/64f1319f0bb147d61cb080f07acd5f416d9c680e.patch
- -> ${P}-fix-empty-depset.patch"
-
-LICENSE="BSD MIT"
-SLOT="0"
-
-if [[ ${PV} == *9999 ]]; then
- RDEPEND="~dev-python/snakeoil-9999[${PYTHON_USEDEP}]"
-else
- RDEPEND=">=dev-python/snakeoil-0.11.3[${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
- )
-"
-
-PATCHES=(
- "${DISTDIR}/${P}-fix-empty-depset.patch"
-)
-
-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
-}