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: Sun, 01 Dec 2019 06:16:30
Message-Id: 1575180897.8a358656d82929319c29dab4c45b8f0c56d705f5.radhermit@gentoo
1 commit: 8a358656d82929319c29dab4c45b8f0c56d705f5
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 1 06:14:57 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 1 06:14:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a358656
7
8 dev-python/pychroot: remove old
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 dev-python/pychroot/Manifest | 2 --
13 dev-python/pychroot/pychroot-0.10.0.ebuild | 48 -----------------------------
14 dev-python/pychroot/pychroot-0.9.18.ebuild | 49 ------------------------------
15 3 files changed, 99 deletions(-)
16
17 diff --git a/dev-python/pychroot/Manifest b/dev-python/pychroot/Manifest
18 index a384ddf5e76..77041c22743 100644
19 --- a/dev-python/pychroot/Manifest
20 +++ b/dev-python/pychroot/Manifest
21 @@ -1,3 +1 @@
22 -DIST pychroot-0.10.0.tar.gz 23960 BLAKE2B 6d22ccbf3d71854d863577f0cf5ec3b1bea40f0f80d5c07942520d5d522ee299222e96cab4893c9cab93866c7f881052f67ad9091267c329a772fc4c3065bae1 SHA512 4a3941da9a94b75963e72536ec8f6218564dbdcb97e6314562044eb55f523e0704aecbc81e8e377338781e8bfd1a2aafb22cdc82f37bdb198a03e0e30d2323e5
23 DIST pychroot-0.10.1.tar.gz 22169 BLAKE2B 7c39438addfbf9d307ebc751585c8add24712b0a3917986dd76478932389c39b8fbc6238cb21e4c1d13fee08f9478365911e766b676176fe209b4341c551267a SHA512 4df7f405872b693bf9ecac331927f749653b7251a49eaa10c423357f3150bbcbea73052ec4363a0f510aaeecd6b467d985402a8f764e99e67f5882e6b2ea4f97
24 -DIST pychroot-0.9.18.tar.gz 32879 BLAKE2B 769b3347bae3f7dfb47c0335015cc898ec851a3d45f774a4e21aeaf9b8d7937331bc69aa5bcbb298e76e7e51ffc2e55f049336fd90f6b08fc3bba87089f2205d SHA512 59c8750c9ba8d601eca485079c04d4153bba92531dbd30fba0104694e4435d76e65b762b76ef89a6a6f8908dd6054d1d95fe4be74825ac1c5a56e473370dfa41
25
26 diff --git a/dev-python/pychroot/pychroot-0.10.0.ebuild b/dev-python/pychroot/pychroot-0.10.0.ebuild
27 deleted file mode 100644
28 index e1419b49ab2..00000000000
29 --- a/dev-python/pychroot/pychroot-0.10.0.ebuild
30 +++ /dev/null
31 @@ -1,48 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -PYTHON_COMPAT=( python3_{6,7} )
37 -inherit distutils-r1
38 -
39 -if [[ ${PV} == *9999 ]] ; then
40 - EGIT_REPO_URI="https://github.com/pkgcore/pychroot.git"
41 - inherit git-r3
42 -else
43 - KEYWORDS="~amd64 ~x86"
44 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 -fi
46 -
47 -DESCRIPTION="a python library and cli tool that simplify chroot handling"
48 -HOMEPAGE="https://github.com/pkgcore/pychroot"
49 -
50 -LICENSE="BSD"
51 -SLOT="0"
52 -IUSE="test"
53 -RESTRICT="!test? ( test )"
54 -
55 -if [[ ${PV} == *9999 ]]; then
56 - RDEPEND="~dev-python/snakeoil-9999[${PYTHON_USEDEP}]"
57 -else
58 - RDEPEND=">=dev-python/snakeoil-0.8.1[${PYTHON_USEDEP}]"
59 -fi
60 -
61 -DEPEND="${RDEPEND}
62 - dev-python/setuptools[${PYTHON_USEDEP}]
63 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
64 -"
65 -[[ ${PV} == *9999 ]] && DEPEND+=" dev-python/sphinx[${PYTHON_USEDEP}]"
66 -
67 -python_compile_all() {
68 - esetup.py build_man
69 -}
70 -
71 -python_test() {
72 - esetup.py test
73 -}
74 -
75 -python_install_all() {
76 - local DOCS=( NEWS.rst README.rst )
77 - esetup.py install_man --mandir="${ED}/usr/share/man"
78 - distutils-r1_python_install_all
79 -}
80
81 diff --git a/dev-python/pychroot/pychroot-0.9.18.ebuild b/dev-python/pychroot/pychroot-0.9.18.ebuild
82 deleted file mode 100644
83 index 465cf543b27..00000000000
84 --- a/dev-python/pychroot/pychroot-0.9.18.ebuild
85 +++ /dev/null
86 @@ -1,49 +0,0 @@
87 -# Copyright 1999-2019 Gentoo Authors
88 -# Distributed under the terms of the GNU General Public License v2
89 -
90 -EAPI=5
91 -PYTHON_COMPAT=( python{2_7,3_5,3_6} )
92 -inherit distutils-r1
93 -
94 -if [[ ${PV} == *9999 ]] ; then
95 - EGIT_REPO_URI="https://github.com/pkgcore/pychroot.git"
96 - inherit git-r3
97 -else
98 - KEYWORDS="~amd64 ~x86"
99 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
100 -fi
101 -
102 -DESCRIPTION="a python library and cli tool that simplify chroot handling"
103 -HOMEPAGE="https://github.com/pkgcore/pychroot"
104 -
105 -LICENSE="BSD"
106 -SLOT="0"
107 -IUSE="test"
108 -
109 -if [[ ${PV} == *9999 ]]; then
110 - RDEPEND="=dev-python/snakeoil-9999[${PYTHON_USEDEP}]"
111 -else
112 - RDEPEND=">=dev-python/snakeoil-0.7.4[${PYTHON_USEDEP}]"
113 -fi
114 -
115 -DEPEND="${RDEPEND}
116 - dev-python/setuptools[${PYTHON_USEDEP}]
117 - test? (
118 - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
119 - dev-python/pytest[${PYTHON_USEDEP}]
120 - )"
121 -[[ ${PV} == *9999 ]] && DEPEND+=" dev-python/sphinx[${PYTHON_USEDEP}]"
122 -
123 -python_compile_all() {
124 - esetup.py build_man
125 -}
126 -
127 -python_test() {
128 - esetup.py test
129 -}
130 -
131 -python_install_all() {
132 - local DOCS=( NEWS.rst README.rst )
133 - distutils-r1_python_install install_man
134 - distutils-r1_python_install_all
135 -}