Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pkgcore/
Date: Sat, 25 Feb 2017 22:28:20
Message-Id: 1488061481.81741576f81be3cacdb1e640620727f4c07cf2d6.radhermit@gentoo
1 commit: 81741576f81be3cacdb1e640620727f4c07cf2d6
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 25 22:16:26 2017 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 25 22:24:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81741576
7
8 sys-apps/pkgcore: remove old
9
10 sys-apps/pkgcore/Manifest | 2 -
11 sys-apps/pkgcore/pkgcore-0.9.1.ebuild | 83 -----------------------------------
12 sys-apps/pkgcore/pkgcore-0.9.2.ebuild | 75 -------------------------------
13 3 files changed, 160 deletions(-)
14
15 diff --git a/sys-apps/pkgcore/Manifest b/sys-apps/pkgcore/Manifest
16 index aebf72e47d..349448fd76 100644
17 --- a/sys-apps/pkgcore/Manifest
18 +++ b/sys-apps/pkgcore/Manifest
19 @@ -1,3 +1 @@
20 -DIST pkgcore-0.9.1.tar.gz 570633 SHA256 d5f556c7dcf69aa45f8bc80c95cc5273de389d21ab7932a1cd8babcd5aa2fc10 SHA512 3cd221070369af07729afa2af5bba20a544d2d58913a6e8d7da90b7a59d043fec906b7276032194cc5c86d84417793ba732f326a342b5ac439f1f2bf6b14a262 WHIRLPOOL f39f927f0334be9ab95ed6bf6b8074f707fcee57eb124dc25b48bdc40c4743959fa9826e7cec593f082233624335d753f09990ce3faf7a798abf442c8879bbda
21 -DIST pkgcore-0.9.2.tar.bz2 464923 SHA256 99c554588b7d75b8d4a8e5ee333dd70861cda21d15a4754afd8c2adefffa0835 SHA512 33620d7c7a3fd2b8334dacf7bb925dcfe293a206c04125a738e3728a2c70e5491c3659b6aacc5427eb099ebbcd675424712751ecbfd20f2d55a7247ccf273064 WHIRLPOOL badd2bb5d5b2dc5752a11a60f938001212e24605ad030e37c00d3cc98a9daa2b08fb486777a218cf22fe30eb82e9f8e342838640adf967a75e197e8926cd7535
22 DIST pkgcore-0.9.4.tar.gz 593025 SHA256 741ec7df34b0b25e914adeadb8f0045ed077a79cfe65d2cf84fb2426373ed826 SHA512 c38fb5e4860e9b0442acfa60c431464b69791ffb2e6fe2429ae832c3ca66a54f4d263c031e6f72ae39080dd72b1058d93a5707009c1f9d9d02247b24f6001043 WHIRLPOOL 5367b3f272391bbc43b187880112242f007d538a75010ddaf021e80c56ec79f3a4b1937263dd65d8ba9faec80ca1d64b29e141618f4304433bb18b5e3ccb2f04
23
24 diff --git a/sys-apps/pkgcore/pkgcore-0.9.1.ebuild b/sys-apps/pkgcore/pkgcore-0.9.1.ebuild
25 deleted file mode 100644
26 index 89575fdf4f..0000000000
27 --- a/sys-apps/pkgcore/pkgcore-0.9.1.ebuild
28 +++ /dev/null
29 @@ -1,83 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -PYTHON_COMPAT=( python2_7 )
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 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
43 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -fi
45 -
46 -DESCRIPTION="pkgcore package manager"
47 -HOMEPAGE="https://github.com/pkgcore/pkgcore"
48 -
49 -LICENSE="|| ( BSD GPL-2 )"
50 -SLOT="0"
51 -IUSE="doc test"
52 -
53 -RDEPEND=">=dev-python/snakeoil-0.6.4[${PYTHON_USEDEP}]"
54 -DEPEND="${RDEPEND}
55 - dev-python/pyparsing[${PYTHON_USEDEP}]
56 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
57 - test? ( $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) )
58 -"
59 -
60 -pkg_setup() {
61 - # disable snakeoil 2to3 caching...
62 - unset PY2TO3_CACHEDIR
63 -
64 - mydistutilsargs=(
65 - build
66 - --disable-html-docs
67 - --disable-man-pages
68 - )
69 -}
70 -
71 -python_compile_all() {
72 - esetup.py $(use doc && echo 'build_docs')
73 -
74 - if [[ ${PV} == *9999 ]]; then
75 - esetup.py build_man
76 - ln -s "${BUILD_DIR}/sphinx/man" man || die
77 - fi
78 -
79 - # symlinks generated manpages into source root
80 - # dead symlinks are tolerated
81 - ln -s "${BUILD_DIR}/sphinx/html" html || die
82 -}
83 -
84 -python_test() {
85 - esetup.py test
86 -}
87 -
88 -src_install() {
89 - mydistutilsargs+=(
90 - install
91 - --disable-html-docs
92 - --disable-man-pages
93 - )
94 -
95 - distutils-r1_src_install
96 -}
97 -
98 -python_install_all() {
99 - local cmds=(
100 - install_man
101 - )
102 - use doc && cmds+=(
103 - install_docs --path="${ED%/}"/usr/share/doc/${PF}/html
104 - )
105 -
106 - distutils-r1_python_install "${cmds[@]}"
107 - distutils-r1_python_install_all
108 -}
109 -
110 -pkg_postinst() {
111 - python_foreach_impl pplugincache
112 -}
113
114 diff --git a/sys-apps/pkgcore/pkgcore-0.9.2.ebuild b/sys-apps/pkgcore/pkgcore-0.9.2.ebuild
115 deleted file mode 100644
116 index 1bbd7ca419..0000000000
117 --- a/sys-apps/pkgcore/pkgcore-0.9.2.ebuild
118 +++ /dev/null
119 @@ -1,75 +0,0 @@
120 -# Copyright 1999-2015 Gentoo Foundation
121 -# Distributed under the terms of the GNU General Public License v2
122 -# $Id$
123 -
124 -EAPI=5
125 -PYTHON_COMPAT=( python2_7 )
126 -inherit distutils-r1
127 -
128 -if [[ ${PV} == *9999 ]] ; then
129 - EGIT_REPO_URI="https://github.com/pkgcore/pkgcore.git"
130 - inherit git-r3
131 -else
132 - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
133 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2"
134 -fi
135 -
136 -DESCRIPTION="a framework for package management"
137 -HOMEPAGE="https://github.com/pkgcore/pkgcore"
138 -
139 -LICENSE="|| ( BSD GPL-2 )"
140 -SLOT="0"
141 -IUSE="doc test"
142 -
143 -if [[ ${PV} == *9999 ]] ; then
144 - SPHINX="dev-python/sphinx[${PYTHON_USEDEP}]"
145 -else
146 - SPHINX="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
147 -fi
148 -RDEPEND=">=dev-python/snakeoil-0.6.5[${PYTHON_USEDEP}]"
149 -DEPEND="${RDEPEND}
150 - ${SPHINX}
151 - dev-python/setuptools[${PYTHON_USEDEP}]
152 - dev-python/pyparsing[${PYTHON_USEDEP}]
153 - test? ( $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) )
154 -"
155 -
156 -pkg_setup() {
157 - # disable snakeoil 2to3 caching...
158 - unset PY2TO3_CACHEDIR
159 -}
160 -
161 -python_compile_all() {
162 - if [[ ${PV} == *9999 ]]; then
163 - esetup.py build_man
164 - ln -s "${BUILD_DIR}/sphinx/man" man || die
165 - fi
166 -
167 - if use doc; then
168 - esetup.py build_docs
169 - ln -s "${BUILD_DIR}/sphinx/html" html || die
170 - fi
171 -}
172 -
173 -python_test() {
174 - esetup.py test
175 -}
176 -
177 -python_install_all() {
178 - local cmds=(
179 - install_man
180 - )
181 - use doc && cmds+=(
182 - install_docs --path="${ED%/}"/usr/share/doc/${PF}/html
183 - )
184 -
185 - distutils-r1_python_install "${cmds[@]}"
186 - distutils-r1_python_install_all
187 -
188 - insinto /usr/share/zsh/site-functions
189 - doins completion/zsh/*
190 -}
191 -
192 -pkg_postinst() {
193 - python_foreach_impl pplugincache
194 -}