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: Fri, 25 Feb 2022 23:41:29
Message-Id: 1645828935.8954ed646c4c01bb1500333e009cc2a17fd77f36.mgorny@gentoo
1 commit: 8954ed646c4c01bb1500333e009cc2a17fd77f36
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 25 22:42:15 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 25 22:42:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8954ed64
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.8.ebuild | 50 ----------------------------------
14 2 files changed, 51 deletions(-)
15
16 diff --git a/sys-apps/pkgcore/Manifest b/sys-apps/pkgcore/Manifest
17 index 791a2c4a80a7..12db5fcebedc 100644
18 --- a/sys-apps/pkgcore/Manifest
19 +++ b/sys-apps/pkgcore/Manifest
20 @@ -1,2 +1 @@
21 -DIST pkgcore-0.12.8.tar.gz 624442 BLAKE2B d7e15fc659820e3cd6e4f7848413c12b2439d38900c9f64c582ba078d3fe874c12d66d39fdf59a7e4ff585d82d29fcad16c9af869b2388ed6e0af0be7d16d887 SHA512 d02087d4bada3bc2f87738b0ddedc72782b2facdf681927e84fed32dc6645e48ebde83de5aeb9eb0f64e01afe2ac511ae0f7450a2708698bbad872a60044319b
22 DIST pkgcore-0.12.9.tar.gz 624918 BLAKE2B 190ccae01862b7e498dabcab5e8716ab0f3ed732eeb0469a0ca39f5e201c75ea19575f49be29a6d36b3acad8d5252528dc5e76444cd21fec25681a9350b93875 SHA512 2e391f9ae2baacaaec025c4b6cd7fd7c7757d7815d8bc62aec0f09e4fdbf7fc99ce832bc2c3ce15013fda860465ca19f27377935dc535a286446e548e08be6cd
23
24 diff --git a/sys-apps/pkgcore/pkgcore-0.12.8.ebuild b/sys-apps/pkgcore/pkgcore-0.12.8.ebuild
25 deleted file mode 100644
26 index fd787036187e..000000000000
27 --- a/sys-apps/pkgcore/pkgcore-0.12.8.ebuild
28 +++ /dev/null
29 @@ -1,50 +0,0 @@
30 -# Copyright 1999-2021 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 ~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.6[${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 - local -x PYTHONDONTWRITEBYTECODE=
72 - distutils-r1_src_test
73 -}
74 -
75 -python_install_all() {
76 - local DOCS=( NEWS.rst )
77 - [[ ${PV} == *9999 ]] || doman man/*
78 - distutils-r1_python_install_all
79 -}