Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pkgcore/
Date: Sat, 30 Jul 2022 11:19:40
Message-Id: 1659179884.77fd6d6cfe42b59fc30311e50e45ed6d507a142d.mgorny@gentoo
1 commit: 77fd6d6cfe42b59fc30311e50e45ed6d507a142d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 30 11:18:04 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 30 11:18:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77fd6d6c
7
8 sys-apps/pkgcore: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-apps/pkgcore/Manifest | 1 -
13 sys-apps/pkgcore/pkgcore-0.12.10.ebuild | 55 ---------------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/sys-apps/pkgcore/Manifest b/sys-apps/pkgcore/Manifest
17 index d66bde349b58..95d79f167062 100644
18 --- a/sys-apps/pkgcore/Manifest
19 +++ b/sys-apps/pkgcore/Manifest
20 @@ -1,2 +1 @@
21 -DIST pkgcore-0.12.10.tar.gz 625285 BLAKE2B e6d8aeec37e9f5379cc12ca9ff502bbfd8ab355087be63160b9a03feddb5c792cc0ef01d338926e3217ee01859fca5a84aa710db8e224dde8e2befc59e3fafad SHA512 8b5159a06e8291be1663de077ac089b0cfc0da1334111ee66cb6c3b627bb29ecbc7fa6b4727fef1d4c9ac93889a7de787114d07071157a1fc1ed0b5143ebe12f
22 DIST pkgcore-0.12.11.tar.gz 625613 BLAKE2B f9bb17286cf30714d9f6f47ae6286031e418fd5f420e8921e1f1ed546cb1f293772e8d6e11ea2f4af8046d82fd166abb7c27f640f7f105c13a73d9ce19ccc52b SHA512 b98804603a9d14562efd56d01fa0b17ee1753d25b8c108d0d12eb47b103787f5fa7170f9924b473996817f31c31c40b5920db597974438cdc43215f5f83e43db
23
24 diff --git a/sys-apps/pkgcore/pkgcore-0.12.10.ebuild b/sys-apps/pkgcore/pkgcore-0.12.10.ebuild
25 deleted file mode 100644
26 index e0fb6d80f2d5..000000000000
27 --- a/sys-apps/pkgcore/pkgcore-0.12.10.ebuild
28 +++ /dev/null
29 @@ -1,55 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -DISTUTILS_IN_SOURCE_BUILD=1
37 -inherit distutils-r1
38 -
39 -if [[ ${PV} == *9999 ]] ; then
40 - EGIT_REPO_URI="https://github.com/pkgcore/pkgcore.git"
41 - inherit git-r3
42 -else
43 - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
44 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 -fi
46 -
47 -DESCRIPTION="a framework for package management"
48 -HOMEPAGE="https://github.com/pkgcore/pkgcore"
49 -
50 -LICENSE="BSD MIT"
51 -SLOT="0"
52 -
53 -RDEPEND="
54 - >=app-shells/bash-5.0
55 - dev-python/lxml[${PYTHON_USEDEP}]"
56 -if [[ ${PV} == *9999 ]]; then
57 - RDEPEND+=" ~dev-python/snakeoil-9999[${PYTHON_USEDEP}]"
58 -else
59 - RDEPEND+=" >=dev-python/snakeoil-0.9.10[${PYTHON_USEDEP}]"
60 -fi
61 -BDEPEND="
62 - test? (
63 - >=dev-python/pytest-6[${PYTHON_USEDEP}]
64 - dev-vcs/git
65 - )
66 -"
67 -
68 -distutils_enable_tests setup.py
69 -
70 -src_test() {
71 - # With PYTHONDONTWRITEBYTECODE=, python will try rebuild all sorts of modules.
72 - # https://bugs.gentoo.org/840266
73 - local -x SANDBOX_PREDICT=${SANDBOX_PREDICT}
74 - addpredict /
75 -
76 - local -x PYTHONDONTWRITEBYTECODE=
77 - distutils-r1_src_test
78 -}
79 -
80 -python_install_all() {
81 - local DOCS=( NEWS.rst )
82 - [[ ${PV} == *9999 ]] || doman man/*
83 - distutils-r1_python_install_all
84 -}