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: Mon, 30 Mar 2020 08:48:48
Message-Id: 1585557933.80203bc108b0081dc5ec49bf9f4ca6d65a72429d.mgorny@gentoo
1 commit: 80203bc108b0081dc5ec49bf9f4ca6d65a72429d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 30 08:45:33 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 30 08:45:33 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80203bc1
7
8 dev-python/beautifulsoup: Remove old (py2)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/beautifulsoup/Manifest | 1 -
13 .../beautifulsoup/beautifulsoup-3.2.1-r1.ebuild | 28 ----------------------
14 2 files changed, 29 deletions(-)
15
16 diff --git a/dev-python/beautifulsoup/Manifest b/dev-python/beautifulsoup/Manifest
17 index 66c4fd139bf..7fde3fdb219 100644
18 --- a/dev-python/beautifulsoup/Manifest
19 +++ b/dev-python/beautifulsoup/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST BeautifulSoup-3.2.1.tar.gz 31224 BLAKE2B 9361ce6d048d0443c3257d10ec2734c24202af8eb850a59a4344e6992856f849d92dd509f102c27cdf9634bbc235e5f96e304993e6d4813d275d66bd3791b451 SHA512 365b7b045a2069cf437877543577bc0aa99256a6dc4c9743670b46bfceab5494a06628012d6eccecfe99c25d5c9e0c65814964b47026f15ba1a538444cfb7789
22 DIST beautifulsoup4-4.8.1.tar.gz 159164 BLAKE2B 00121e9b30f700ade0bb2ec8f637b4173ecb4c187b8f9a77bcc4e6b333fced85a699c8d9efa5b757ab02f54c2b05740702c13625ff427730ccc1f6a97f43fa48 SHA512 7abc5e84cb8da5428dafc6b473418d0cc72b518cb1a73d4ae58b8dad3ec985e5778629dc1d7c8374dfb223be981983c745a1dbb55a98078b4cfe7ba5ce25539b
23 DIST beautifulsoup4-4.8.2.tar.gz 298650 BLAKE2B 6826abf793efa63be89d844bc25bdb105413196bfab21c18f3816fd59a7a771459bf2c7ee209b75b0c88dfa14da8f4625c948889acfb48502e2260ccca229675 SHA512 aab90eb22614e9a2fb47792389a951b3ad7faf9791e15984a6c27a38be6f3d0ccbf3a9753d9afb5c70105097ac1a9c5f9e07206e12c6d4cb7a7f6d4e90ec18c2
24
25 diff --git a/dev-python/beautifulsoup/beautifulsoup-3.2.1-r1.ebuild b/dev-python/beautifulsoup/beautifulsoup-3.2.1-r1.ebuild
26 deleted file mode 100644
27 index 4ca7a45e13c..00000000000
28 --- a/dev-python/beautifulsoup/beautifulsoup-3.2.1-r1.ebuild
29 +++ /dev/null
30 @@ -1,28 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -PYTHON_COMPAT=( python2_7 )
36 -
37 -inherit distutils-r1
38 -
39 -MY_PN="BeautifulSoup"
40 -MY_P="${MY_PN}-${PV}"
41 -
42 -DESCRIPTION="HTML/XML parser for quick-turnaround applications like screen-scraping"
43 -HOMEPAGE="https://www.crummy.com/software/BeautifulSoup/ https://pypi.org/project/BeautifulSoup/"
44 -SRC_URI="https://www.crummy.com/software/${MY_PN}/download/3.x/${MY_P}.tar.gz"
45 -
46 -LICENSE="BSD"
47 -SLOT="python-2"
48 -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
49 -IUSE=""
50 -
51 -DEPEND=""
52 -RDEPEND="!dev-python/beautifulsoup:0"
53 -
54 -S="${WORKDIR}/${MY_P}"
55 -
56 -python_test() {
57 - "${PYTHON}" BeautifulSoupTests.py || die "Testing failed with ${EPYTHON}"
58 -}