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, 18 Sep 2020 09:38:26
Message-Id: 1600421890.7cfc85ad5c4a2c33aa03fa12cce30583863a8846.mgorny@gentoo
1 commit: 7cfc85ad5c4a2c33aa03fa12cce30583863a8846
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 18 09:32:58 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 18 09:38:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cfc85ad
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.10.12.ebuild | 47 ---------------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/sys-apps/pkgcore/Manifest b/sys-apps/pkgcore/Manifest
17 index 791b9a51719..2af50d0f14e 100644
18 --- a/sys-apps/pkgcore/Manifest
19 +++ b/sys-apps/pkgcore/Manifest
20 @@ -1,2 +1 @@
21 -DIST pkgcore-0.10.12.tar.gz 646922 BLAKE2B f3251b1a0d773e83d60f15598c2c5679a48a1e1dd81b82956ffb26ef72c25296903d64deeb0e91d95ae26832d0e08e3cdfcb68b95bbcd87acf8ed448a4f4ae56 SHA512 f6f900fc7f77a683c398c874c51eddb387f9aed572d5fce38f4856faa71f4f8e870b1bc276a87f15967733fa6ec7c8345f2d6b777897694537fa1e9165b1433c
22 DIST pkgcore-0.10.13.tar.gz 647320 BLAKE2B ef80320a0a8d35ed68b1d77d52a3cfb2ffbadae2fe9f11efe3f42c68f55388074b5c4b2857f265f1add4cfe479cba9716d45afaf141d113b0874d409955269c7 SHA512 acc5ee2cc6fd0f897129f311e0484e28a1c8f374c5a2e56a29d228fee74b7be0cb6059171b743e0db35544b5b5779d35efcda21e46e65285653ba4155205281f
23
24 diff --git a/sys-apps/pkgcore/pkgcore-0.10.12.ebuild b/sys-apps/pkgcore/pkgcore-0.10.12.ebuild
25 deleted file mode 100644
26 index 185be89d3ad..00000000000
27 --- a/sys-apps/pkgcore/pkgcore-0.10.12.ebuild
28 +++ /dev/null
29 @@ -1,47 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -PYTHON_COMPAT=( python3_{6..9} )
35 -DISTUTILS_IN_SOURCE_BUILD=1
36 -inherit distutils-r1
37 -
38 -if [[ ${PV} == *9999 ]] ; then
39 - EGIT_REPO_URI="https://github.com/pkgcore/pkgcore.git"
40 - inherit git-r3
41 -else
42 - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86"
43 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -fi
45 -
46 -DESCRIPTION="a framework for package management"
47 -HOMEPAGE="https://github.com/pkgcore/pkgcore"
48 -
49 -LICENSE="BSD MIT"
50 -SLOT="0"
51 -IUSE="test"
52 -RESTRICT="!test? ( test )"
53 -
54 -RDEPEND="dev-python/lxml[${PYTHON_USEDEP}]"
55 -if [[ ${PV} == *9999 ]]; then
56 - RDEPEND+=" ~dev-python/snakeoil-9999[${PYTHON_USEDEP}]"
57 -else
58 - RDEPEND+=" >=dev-python/snakeoil-0.8.7[${PYTHON_USEDEP}]"
59 -fi
60 -DEPEND="${RDEPEND}
61 - dev-python/setuptools[${PYTHON_USEDEP}]
62 - test? (
63 - dev-python/pytest[${PYTHON_USEDEP}]
64 - dev-vcs/git
65 - )
66 -"
67 -
68 -python_test() {
69 - esetup.py test
70 -}
71 -
72 -python_install_all() {
73 - local DOCS=( AUTHORS NEWS.rst )
74 - [[ ${PV} == *9999 ]] || doman man/*
75 - distutils-r1_python_install_all
76 -}