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: Wed, 03 May 2017 06:15:24
Message-Id: 1493792093.3eb3bf810225fa156e4276332273bb344c34cfbb.mgorny@gentoo
1 commit: 3eb3bf810225fa156e4276332273bb344c34cfbb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 2 20:34:57 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 3 06:14:53 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eb3bf81
7
8 dev-python/cssselect: Clean old versions up
9
10 dev-python/cssselect/Manifest | 2 --
11 dev-python/cssselect/cssselect-0.9.2.ebuild | 44 --------------------------
12 dev-python/cssselect/cssselect-1.0.0.ebuild | 48 -----------------------------
13 3 files changed, 94 deletions(-)
14
15 diff --git a/dev-python/cssselect/Manifest b/dev-python/cssselect/Manifest
16 index e2b5850ce3d..8af48e2c9dc 100644
17 --- a/dev-python/cssselect/Manifest
18 +++ b/dev-python/cssselect/Manifest
19 @@ -1,4 +1,2 @@
20 DIST cssselect-0.9.1.tar.gz 32952 SHA256 0535a7e27014874b27ae3a4d33e8749e345bdfa62766195208b7996bf1100682 SHA512 c4cd2c8d6fbfa99b836554685dd59e1e794e1fab06fcf4419a226b0608a05d58be5af54e507003f2a233a22f03d59d3d63c0bf19b3314f15c95ab3ce5f4db6cc WHIRLPOOL 0fabe49d4f504069eb782ba98c93a34fa9433fd4d10a545f46f5aa1a5fb3a898580f4e17d744052590e18fe7a0f06feca0527d86ac243282e826caddfb410324
21 -DIST cssselect-0.9.2.tar.gz 33065 SHA256 713b5b99ef08022257b3409c7ae1b18b2c6536b3f155e6237c5cfba0f67ae6f5 SHA512 313965d3a0ad37b24d72d6faf861c04e7af7e4ff06f58450a23585c45bd9f247e565a4b7d594c008d40625601c2b8e76919801b3d77cfd62c7edc20cf366c1f9 WHIRLPOOL 90907b0cbc799d9e7f00ea366a24101fa4ff84786add028a035a355b4e8ce2073da82dfc4bc3a8e9a058341e117887e5ea1bac0e3b4befd8ac5df1bbbb21a2ca
22 -DIST cssselect-1.0.0.tar.gz 22278 SHA256 582a85780249255707872c31d0438fc457aa24cfb43e472ff8f3e7ad6857953f SHA512 59b8ed898a2f5286f3d1be5b9bf2486f0b0cc372271d34098dbbc95696eb951bbb52e53810f9e20f0aab8e2a26c4eaf1905e1604f85287965bd4d105bb4b71fb WHIRLPOOL bcec8e04fa428c0ba54c0738d1864ff8128a65253777e5786a756b720c9a7087ff6eebab5cd48a695b2b2fc0ae9405330b4a1820dc2f4f1c926288f85d2ac7c1
23 DIST cssselect-1.0.1.tar.gz 21849 SHA256 73db1c054b9348409e2862fc6c0dde5c4e4fbe4da64c5c5a9e05fbea45744077 SHA512 060c4b8d427a935b851b4b20d10ef89b9d6f685692b7144afc8f848e318abaa182ed60538355ea3f25050e358f24904fa0d9c01fe77e3d2428e2ef2a825e2928 WHIRLPOOL e89bcbbd08ed35490d9e79e8d6f5c290e4a9e73dc7cdc2217324fb06e1e1bdc18a16c08dbbe8ca4407c0eb77b4c74ff3fbabf9b3307b94b66aae421d33ef8e29
24
25 diff --git a/dev-python/cssselect/cssselect-0.9.2.ebuild b/dev-python/cssselect/cssselect-0.9.2.ebuild
26 deleted file mode 100644
27 index f076649a71b..00000000000
28 --- a/dev-python/cssselect/cssselect-0.9.2.ebuild
29 +++ /dev/null
30 @@ -1,44 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="parses CSS3 Selectors and translates them to XPath 1.0"
41 -HOMEPAGE="http://packages.python.org/cssselect/ https://pypi.python.org/pypi/cssselect"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
47 -IUSE="doc test"
48 -
49 -DEPEND="
50 - dev-python/setuptools[${PYTHON_USEDEP}]
51 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
52 - test? ( dev-python/lxml[${PYTHON_USEDEP}] )"
53 -RDEPEND=""
54 -
55 -python_prepare_all() {
56 - # prevent non essential d'load of files in doc build
57 - sed -e 's:intersphinx_:#&:' -i docs/conf.py || die
58 - distutils-r1_python_prepare_all
59 -}
60 -
61 -python_compile_all() {
62 - if use doc ; then
63 - "${PYTHON}" setup.py build_sphinx || die
64 - fi
65 -}
66 -
67 -python_test() {
68 - "${PYTHON}" ${PN}/tests.py -v || die "Tests fail with ${EPYTHON}"
69 -}
70 -
71 -python_install_all() {
72 - use doc && local HTML_DOCS=( docs/_build/html/. )
73 - distutils-r1_python_install_all
74 -}
75
76 diff --git a/dev-python/cssselect/cssselect-1.0.0.ebuild b/dev-python/cssselect/cssselect-1.0.0.ebuild
77 deleted file mode 100644
78 index ee28e89b4d0..00000000000
79 --- a/dev-python/cssselect/cssselect-1.0.0.ebuild
80 +++ /dev/null
81 @@ -1,48 +0,0 @@
82 -# Copyright 1999-2017 Gentoo Foundation
83 -# Distributed under the terms of the GNU General Public License v2
84 -
85 -EAPI=6
86 -
87 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
88 -
89 -inherit distutils-r1
90 -
91 -DESCRIPTION="parses CSS3 Selectors and translates them to XPath 1.0"
92 -HOMEPAGE="http://packages.python.org/cssselect/ https://pypi.python.org/pypi/cssselect"
93 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
94 -
95 -LICENSE="BSD"
96 -SLOT="0"
97 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
98 -IUSE="doc test"
99 -
100 -# No tests.py file in this release.
101 -# Please check on version bumps if it's still missing.
102 -RESTRICT="test"
103 -
104 -DEPEND="
105 - dev-python/setuptools[${PYTHON_USEDEP}]
106 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
107 - test? ( dev-python/lxml[${PYTHON_USEDEP}] )"
108 -RDEPEND=""
109 -
110 -python_prepare_all() {
111 - # prevent non essential d'load of files in doc build
112 - sed -e 's:intersphinx_:#&:' -i docs/conf.py || die
113 - distutils-r1_python_prepare_all
114 -}
115 -
116 -python_compile_all() {
117 - if use doc ; then
118 - "${PYTHON}" setup.py build_sphinx || die
119 - fi
120 -}
121 -
122 -python_test() {
123 - "${PYTHON}" ${PN}/tests.py -v || die "Tests fail with ${EPYTHON}"
124 -}
125 -
126 -python_install_all() {
127 - use doc && local HTML_DOCS=( docs/_build/html/. )
128 - distutils-r1_python_install_all
129 -}