Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/beautifulsoup4/
Date: Sat, 09 Oct 2021 19:27:32
Message-Id: 1633807630.179d00f9c02754994fa5d1d99149f36caedd6ab9.arthurzam@gentoo
1 commit: 179d00f9c02754994fa5d1d99149f36caedd6ab9
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 9 19:26:52 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 9 19:27:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=179d00f9
7
8 dev-python/beautifulsoup4: drop 4.9.3
9
10 Closes: https://bugs.gentoo.org/817035
11 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
12
13 dev-python/beautifulsoup4/Manifest | 1 -
14 .../beautifulsoup4/beautifulsoup4-4.9.3.ebuild | 32 ----------------------
15 2 files changed, 33 deletions(-)
16
17 diff --git a/dev-python/beautifulsoup4/Manifest b/dev-python/beautifulsoup4/Manifest
18 index 4dede2d8d2d..f27894a8549 100644
19 --- a/dev-python/beautifulsoup4/Manifest
20 +++ b/dev-python/beautifulsoup4/Manifest
21 @@ -1,2 +1 @@
22 DIST beautifulsoup4-4.10.0.tar.gz 399890 BLAKE2B 61f044064a81e94b64a72fd49cca164faa05442bc76f897c8a7fa4481acca039bcb9e4f7a1853a7155504fa25e56c518806d8af016369bc37316ecb95b59d7d3 SHA512 92be99ed0fd479b86519395143516e28f7b80f54a8251223d6e7b88dc98f8dfca9585079f5f1d89bfe68f577de3dff433711642486303203f46bc76754959a18
23 -DIST beautifulsoup4-4.9.3.tar.gz 376031 BLAKE2B fbe2139f288eee978c3f665c7640f66c6c51b857a186f6a8ace02b36effa1552f1cbea9e3744e0a46a65a06e6cdbd9203832e0ecd86b61406b933f9bd83d37b8 SHA512 e3cb6258bd7c51f12128fa8ee5948fb3566163ae233fac2dda21bab7772ab8dbb384d920b0ea138ef9921307b48f89cee3a9bf6111dfc8903d917ee7af365f34
24
25 diff --git a/dev-python/beautifulsoup4/beautifulsoup4-4.9.3.ebuild b/dev-python/beautifulsoup4/beautifulsoup4-4.9.3.ebuild
26 deleted file mode 100644
27 index c9b54e80fbf..00000000000
28 --- a/dev-python/beautifulsoup4/beautifulsoup4-4.9.3.ebuild
29 +++ /dev/null
30 @@ -1,32 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Pythonic idioms for iterating, searching, and modifying an HTML/XML parse tree"
41 -HOMEPAGE="https://www.crummy.com/software/BeautifulSoup/bs4/"
42 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
47 -
48 -RDEPEND="
49 - dev-python/soupsieve[${PYTHON_USEDEP}]
50 - dev-python/html5lib[${PYTHON_USEDEP}]
51 - dev-python/lxml[${PYTHON_USEDEP}]
52 -"
53 -BDEPEND="
54 - <dev-python/setuptools-58[${PYTHON_USEDEP}]
55 -"
56 -
57 -distutils_enable_tests nose
58 -distutils_enable_sphinx doc/source
59 -
60 -python_test() {
61 - nosetests --verbose -w "${BUILD_DIR}"/lib || die "Tests fail with ${EPYTHON}"
62 -}