Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pychroot/
Date: Tue, 22 Dec 2020 20:37:59
Message-Id: 1608669464.71617161e3897356a741405cd6817977386eb97d.radhermit@gentoo
1 commit: 71617161e3897356a741405cd6817977386eb97d
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 22 20:35:10 2020 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 22 20:37:44 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71617161
7
8 dev-python/pychroot: remove old
9
10 Closes: https://bugs.gentoo.org/738138
11 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
12
13 dev-python/pychroot/Manifest | 1 -
14 dev-python/pychroot/pychroot-0.10.2.ebuild | 44 ------------------------------
15 2 files changed, 45 deletions(-)
16
17 diff --git a/dev-python/pychroot/Manifest b/dev-python/pychroot/Manifest
18 index 4147b8898b6..374595c93e0 100644
19 --- a/dev-python/pychroot/Manifest
20 +++ b/dev-python/pychroot/Manifest
21 @@ -1,2 +1 @@
22 -DIST pychroot-0.10.2.tar.gz 23477 BLAKE2B a5145908c565479ba05583e396c669d344193dacaa70b489b152b49cc092cf5f77193324d48917271d01ce67c06ae737815d5c3098d02bc9ed5f1c25c2dca0f9 SHA512 e5ed1b94dc0779890786bb381fba86d13fbcdbc3df411cfcafc868ebb62fe94cf1248d15a20902b4df5dc4420abc0a93fccc7ddcb2f42ad7244a657b5ec99c76
23 DIST pychroot-0.10.3.tar.gz 23637 BLAKE2B 9ea0d3fdbabddd2901cf263b9f29eb91a6a6eb732c8973773c69630a320d6e39f458fb4f420f099617ba4f6e43353fe36dc4576cb84bca271a8e7b4db260b36c SHA512 b4d9fab3d2ba9bd5fd9bf6bcb988a1e63ea03aef0c898baf724d51de97943cb41c0223a235f4fa9f733cf737a3089a90006ae5ecb9049d74ec8c78712a1b6e7a
24
25 diff --git a/dev-python/pychroot/pychroot-0.10.2.ebuild b/dev-python/pychroot/pychroot-0.10.2.ebuild
26 deleted file mode 100644
27 index 55a39a5dd21..00000000000
28 --- a/dev-python/pychroot/pychroot-0.10.2.ebuild
29 +++ /dev/null
30 @@ -1,44 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -PYTHON_COMPAT=( python3_{6,7,8,9} )
36 -inherit distutils-r1
37 -
38 -if [[ ${PV} == *9999 ]] ; then
39 - EGIT_REPO_URI="https://github.com/pkgcore/pychroot.git"
40 - inherit git-r3
41 -else
42 - KEYWORDS="~amd64 ~x86"
43 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -fi
45 -
46 -DESCRIPTION="a python library and cli tool that simplify chroot handling"
47 -HOMEPAGE="https://github.com/pkgcore/pychroot"
48 -
49 -LICENSE="BSD"
50 -SLOT="0"
51 -IUSE="test"
52 -RESTRICT="!test? ( test )"
53 -
54 -if [[ ${PV} == *9999 ]]; then
55 - RDEPEND="~dev-python/snakeoil-9999[${PYTHON_USEDEP}]"
56 -else
57 - RDEPEND="<dev-python/snakeoil-0.8.9[${PYTHON_USEDEP}]"
58 -fi
59 -
60 -DEPEND="${RDEPEND}"
61 -BDEPEND="
62 - dev-python/setuptools[${PYTHON_USEDEP}]
63 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
64 -"
65 -
66 -python_test() {
67 - esetup.py test
68 -}
69 -
70 -python_install_all() {
71 - local DOCS=( NEWS.rst README.rst )
72 - [[ ${PV} == *9999 ]] || doman man/*
73 - distutils-r1_python_install_all
74 -}