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: dev-python/cssselect/
Date: Sun, 26 Jan 2020 17:11:54
Message-Id: 1580058695.915418800aa93fbaf1cd18bf59853c21f279680b.mgorny@gentoo
1 commit: 915418800aa93fbaf1cd18bf59853c21f279680b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 26 16:56:16 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 26 17:11:35 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91541880
7
8 dev-python/cssselect: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/cssselect/Manifest | 3 --
13 dev-python/cssselect/cssselect-0.9.1.ebuild | 46 --------------------------
14 dev-python/cssselect/cssselect-1.0.1.ebuild | 50 -----------------------------
15 dev-python/cssselect/cssselect-1.0.3.ebuild | 27 ----------------
16 4 files changed, 126 deletions(-)
17
18 diff --git a/dev-python/cssselect/Manifest b/dev-python/cssselect/Manifest
19 index 666b6aa8270..aac0457f118 100644
20 --- a/dev-python/cssselect/Manifest
21 +++ b/dev-python/cssselect/Manifest
22 @@ -1,4 +1 @@
23 -DIST cssselect-0.9.1.tar.gz 32952 BLAKE2B 7f7a78e8085036bed72c2a1a0e4a97cd1988e8d6981ae830f15d5fc03f5fdd43f0caa7b94d2923181f9dc926a6a11e970b3f091178640124286aa680fa023aaf SHA512 c4cd2c8d6fbfa99b836554685dd59e1e794e1fab06fcf4419a226b0608a05d58be5af54e507003f2a233a22f03d59d3d63c0bf19b3314f15c95ab3ce5f4db6cc
24 -DIST cssselect-1.0.1.tar.gz 21849 BLAKE2B cfe3637746329db224a44b680cda044238fa831ed0d05cf3484be6181de13bf8660330362626ddc03c7284a80e7c4a814bba293dfdca07a529d9c0c7163c95d2 SHA512 060c4b8d427a935b851b4b20d10ef89b9d6f685692b7144afc8f848e318abaa182ed60538355ea3f25050e358f24904fa0d9c01fe77e3d2428e2ef2a825e2928
25 -DIST cssselect-1.0.3.tar.gz 34027 BLAKE2B fff15a50d26ce83a0480020e54d00a027a7f21ca2c4c45d5552c6b4c19f7be21c390650c4befa61b7ae2b63946de88945deb488ebd6c7f7fc470950dab233671 SHA512 08feb3a515cc75089657a508cd1a80c6aaa97d710f27e99f9e749a1519adc13c5540134c6a4e0d7f548b022b8bd23dcbe360530d2329c5da36e43aca1f9627d1
26 DIST cssselect-1.1.0.tar.gz 35516 BLAKE2B b4480ad4335ba15ae8a2ae758ff942865a5b61de68b3b00fb59d517b1dacfce1cd817280e4aac562dbf829f90601a56220f01d99aecbc502420b9102e50c46ca SHA512 b33bca6a026f4de37b75606fd238dbd170b57d06288fbff3ea97ce79685a99af275fb8522b04ea9d6693aba5a18541d70b657191fdad881be79718bcf2e7655c
27
28 diff --git a/dev-python/cssselect/cssselect-0.9.1.ebuild b/dev-python/cssselect/cssselect-0.9.1.ebuild
29 deleted file mode 100644
30 index 535ae23e0d6..00000000000
31 --- a/dev-python/cssselect/cssselect-0.9.1.ebuild
32 +++ /dev/null
33 @@ -1,46 +0,0 @@
34 -# Copyright 1999-2020 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=5
38 -
39 -PYTHON_COMPAT=( python2_7 python3_6 )
40 -
41 -inherit distutils-r1
42 -
43 -DESCRIPTION="parses CSS3 Selectors and translates them to XPath 1.0"
44 -HOMEPAGE="https://cssselect.readthedocs.io/en/latest/
45 - https://pypi.org/project/cssselect/"
46 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 -
48 -LICENSE="BSD"
49 -SLOT="0"
50 -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 ~sh sparc x86"
51 -IUSE="doc test"
52 -RESTRICT="!test? ( test )"
53 -
54 -DEPEND="
55 - dev-python/setuptools[${PYTHON_USEDEP}]
56 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
57 - test? ( dev-python/lxml[${PYTHON_USEDEP}] )"
58 -RDEPEND=""
59 -
60 -python_prepare_all() {
61 - # prevent non essential d'load of files in doc build
62 - sed -e 's:intersphinx_:#&:' -i docs/conf.py || die
63 - distutils-r1_python_prepare_all
64 -}
65 -
66 -python_compile_all() {
67 - if use doc ; then
68 - "${PYTHON}" setup.py build_sphinx || die
69 - fi
70 -}
71 -
72 -python_test() {
73 - "${PYTHON}" ${PN}/tests.py -v || die "Tests fail with ${EPYTHON}"
74 -}
75 -
76 -python_install_all() {
77 - use doc && local HTML_DOCS=( docs/_build/html/. )
78 - distutils-r1_python_install_all
79 -}
80
81 diff --git a/dev-python/cssselect/cssselect-1.0.1.ebuild b/dev-python/cssselect/cssselect-1.0.1.ebuild
82 deleted file mode 100644
83 index 83c87c58007..00000000000
84 --- a/dev-python/cssselect/cssselect-1.0.1.ebuild
85 +++ /dev/null
86 @@ -1,50 +0,0 @@
87 -# Copyright 1999-2020 Gentoo Authors
88 -# Distributed under the terms of the GNU General Public License v2
89 -
90 -EAPI=6
91 -
92 -PYTHON_COMPAT=( python2_7 python3_6 )
93 -
94 -inherit distutils-r1
95 -
96 -DESCRIPTION="parses CSS3 Selectors and translates them to XPath 1.0"
97 -HOMEPAGE="https://cssselect.readthedocs.io/en/latest/
98 - https://pypi.org/project/cssselect/"
99 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
100 -
101 -LICENSE="BSD"
102 -SLOT="0"
103 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
104 -IUSE="doc test"
105 -
106 -# No tests.py file in this release.
107 -# Please check on version bumps if it's still missing.
108 -RESTRICT="test"
109 -
110 -DEPEND="
111 - dev-python/setuptools[${PYTHON_USEDEP}]
112 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
113 - test? ( dev-python/lxml[${PYTHON_USEDEP}] )"
114 -
115 -RDEPEND=""
116 -
117 -python_prepare_all() {
118 - # prevent non essential d'load of files in doc build
119 - sed -e 's:intersphinx_:#&:' -i docs/conf.py || die
120 - distutils-r1_python_prepare_all
121 -}
122 -
123 -python_compile_all() {
124 - if use doc ; then
125 - "${PYTHON}" setup.py build_sphinx || die
126 - fi
127 -}
128 -
129 -python_test() {
130 - "${PYTHON}" ${PN}/tests.py -v || die "Tests fail with ${EPYTHON}"
131 -}
132 -
133 -python_install_all() {
134 - use doc && local HTML_DOCS=( docs/_build/html/. )
135 - distutils-r1_python_install_all
136 -}
137
138 diff --git a/dev-python/cssselect/cssselect-1.0.3.ebuild b/dev-python/cssselect/cssselect-1.0.3.ebuild
139 deleted file mode 100644
140 index 004a8ab3457..00000000000
141 --- a/dev-python/cssselect/cssselect-1.0.3.ebuild
142 +++ /dev/null
143 @@ -1,27 +0,0 @@
144 -# Copyright 1999-2020 Gentoo Authors
145 -# Distributed under the terms of the GNU General Public License v2
146 -
147 -EAPI=6
148 -
149 -PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
150 -
151 -inherit distutils-r1
152 -
153 -DESCRIPTION="parses CSS3 Selectors and translates them to XPath 1.0"
154 -HOMEPAGE="https://cssselect.readthedocs.io/en/latest/
155 - https://pypi.org/project/cssselect/
156 - https://github.com/scrapy/cssselect"
157 -SRC_URI="https://github.com/scrapy/cssselect/archive/v${PV}.tar.gz -> ${P}.tar.gz"
158 -
159 -LICENSE="BSD"
160 -SLOT="0"
161 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
162 -IUSE="test"
163 -RESTRICT="!test? ( test )"
164 -
165 -DEPEND="
166 - dev-python/setuptools[${PYTHON_USEDEP}]
167 - test? ( dev-python/lxml[${PYTHON_USEDEP}] )"
168 -
169 -distutils_enable_sphinx docs
170 -distutils_enable_tests unittest