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/beautifulsoup/
Date: Tue, 02 Jan 2018 22:14:18
Message-Id: 1514931233.fd5f47798c61091bdf8473771f7f7100d37c5c97.mgorny@gentoo
1 commit: fd5f47798c61091bdf8473771f7f7100d37c5c97
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 2 15:10:42 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 2 22:13:53 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd5f4779
7
8 dev-python/beautifulsoup: Clean old up
9
10 dev-python/beautifulsoup/Manifest | 1 -
11 .../beautifulsoup/beautifulsoup-4.5.3.ebuild | 46 ----------------------
12 2 files changed, 47 deletions(-)
13
14 diff --git a/dev-python/beautifulsoup/Manifest b/dev-python/beautifulsoup/Manifest
15 index 38cd1842b5d..1f76d7e9032 100644
16 --- a/dev-python/beautifulsoup/Manifest
17 +++ b/dev-python/beautifulsoup/Manifest
18 @@ -1,4 +1,3 @@
19 DIST BeautifulSoup-3.2.1.tar.gz 31224 BLAKE2B 9361ce6d048d0443c3257d10ec2734c24202af8eb850a59a4344e6992856f849d92dd509f102c27cdf9634bbc235e5f96e304993e6d4813d275d66bd3791b451 SHA512 365b7b045a2069cf437877543577bc0aa99256a6dc4c9743670b46bfceab5494a06628012d6eccecfe99c25d5c9e0c65814964b47026f15ba1a538444cfb7789
20 DIST beautifulsoup4-4.5.1.tar.gz 158039 BLAKE2B 5eb99c7efdb13c359385c7c7f3280332ca28cc4b5ff80b90c326d80ef55acef8e98d86691a7b1df420bf68bc65e96ad7d559b461a03f44e494fb4b7789753601 SHA512 d560d7f743507084ec546708d29bb3764512f5b2c380004280dde813350bf48d1697fddce3bd3f95186407bf5142941d7adc7d0de8e7962eb5ca1278dbc7e93f
21 -DIST beautifulsoup4-4.5.3.tar.gz 159185 BLAKE2B 8319869698aa4767ccc3e8b4f57ab17bd6eded30c408fe5a450be53ba0c4c555079bdfdd2254927895b09b0b01428fc0feb8b18fbd0c033a90749b3362e6c8b8 SHA512 d31db0e3bb778a78c37882fcd55dc580eb5eeadfd48744eae6e2e0d0ef5983b216a4682af84a4971611b05fb99c45012ce094475f2d7c39a5b90dad99906ec84
22 DIST beautifulsoup4-4.6.0.tar.gz 160846 BLAKE2B c56c61c5ac2116721815b3cc8e0ec249f191a76bc36e26593af54cc0937e3a4d70c5a2b3069b12f1ae4f5b78cda78e2abda5da99fdd6987afe0f581a4130685c SHA512 1a7eee4218e58cc3852e71fe4f0892f673bb46a851941264766a38eff8ef05d612d88b4641fcb478ce8f66ac50dc987ca039923c4bbb11867c74813289f7e578
23
24 diff --git a/dev-python/beautifulsoup/beautifulsoup-4.5.3.ebuild b/dev-python/beautifulsoup/beautifulsoup-4.5.3.ebuild
25 deleted file mode 100644
26 index 82ee5a047f3..00000000000
27 --- a/dev-python/beautifulsoup/beautifulsoup-4.5.3.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -MY_PN=${PN}4
40 -MY_P=${MY_PN}-${PV}
41 -
42 -DESCRIPTION="Provides pythonic idioms for iterating, searching, and modifying an HTML/XML parse tree"
43 -HOMEPAGE="https://bugs.launchpad.net/beautifulsoup/
44 - https://pypi.python.org/pypi/beautifulsoup4"
45 -SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="4"
49 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
50 -
51 -IUSE="doc test"
52 -
53 -# html5lib is optional however hard coding since its use is actively discouraged in the devmanual
54 -RDEPEND="
55 - $(python_gen_cond_dep 'dev-python/html5lib[${PYTHON_USEDEP}]' python2_7 pypy)
56 - $(python_gen_cond_dep 'dev-python/lxml[${PYTHON_USEDEP}]' python2_7 'python3*')"
57 -DEPEND="
58 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
59 - test? ( dev-python/nose[${PYTHON_USEDEP}] )
60 - "
61 -
62 -S=${WORKDIR}/${MY_P}
63 -
64 -python_compile_all() {
65 - use doc && emake -C doc html
66 -}
67 -
68 -python_test() {
69 - nosetests --verbose -w "${BUILD_DIR}"/lib || die "Tests fail with ${EPYTHON}"
70 -}
71 -
72 -python_install_all() {
73 - use doc && local HTML_DOCS=( doc/build/html/. )
74 - distutils-r1_python_install_all
75 -}