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/bleach/
Date: Tue, 02 Jan 2018 22:14:11
Message-Id: 1514931235.1ec5c7c8e3af6474a0711393fdc5ca47735255e7.mgorny@gentoo
1 commit: 1ec5c7c8e3af6474a0711393fdc5ca47735255e7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 2 15:11:39 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 2 22:13:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ec5c7c8
7
8 dev-python/bleach: Clean old up
9
10 dev-python/bleach/Manifest | 1 -
11 dev-python/bleach/bleach-2.0.0.ebuild | 29 -----------------------------
12 2 files changed, 30 deletions(-)
13
14 diff --git a/dev-python/bleach/Manifest b/dev-python/bleach/Manifest
15 index f813e5a4d73..39d438afaf7 100644
16 --- a/dev-python/bleach/Manifest
17 +++ b/dev-python/bleach/Manifest
18 @@ -1,3 +1,2 @@
19 DIST bleach-1.5.0.tar.gz 36502 BLAKE2B a56eb875a5becd21f7ff71a29db8178a7536a7aadfe81fe178360ba61ba599df9d4d9a782bbf72eb186b61a0b2e3f99058c483cc0d194e735a787319697c7327 SHA512 572a089691af61f096716d96517a96755fe674cc471bdbcff80615ae903eaeff72c47b918ee28a1db60ee5c0253c0c52ba02544f8535ae4f283a3a87a3061124
20 -DIST bleach-2.0.0.tar.gz 46083 BLAKE2B 50ff912e4805ea2eab034368acc98a37d852be7e16270028b95cef887358f56d567a860baae91f13ffebf0e2ddcd80121716ed2b0e2a59ac18150f6108100158 SHA512 78237c72224fc8facd0c247671c0e2deb66dc8dc46c446cfa7e8b83cce5ca99a52fec320ef59ae0ece47c54a48120de16e4393e269db9c74542c8165eeb96d2e
21 DIST bleach-2.1.1.tar.gz 58491 BLAKE2B bd1efbfa30cee61b5d8bfd029ff107ddc997d38139bf5b25a70a6731193f6d02a81e1e49c9ffe3eef6cbda864464108cb1f65599c68c48f1033ced27fdb65c29 SHA512 dc8ef7b678966bfebddb2d27c78abf50e71f2d90c5807cf788a08b852a085a4d990368da5dfb5f61a49e0f2f1e7d9ac73c2b6967fdacb55663ae2c339016d4c2
22
23 diff --git a/dev-python/bleach/bleach-2.0.0.ebuild b/dev-python/bleach/bleach-2.0.0.ebuild
24 deleted file mode 100644
25 index 1d0c20cec34..00000000000
26 --- a/dev-python/bleach/bleach-2.0.0.ebuild
27 +++ /dev/null
28 @@ -1,29 +0,0 @@
29 -# Copyright 1999-2017 Gentoo Foundation
30 -# Distributed under the terms of the GNU General Public License v2
31 -
32 -EAPI=6
33 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="an easy whitelist-based HTML-sanitizing tool"
38 -HOMEPAGE="https://github.com/mozilla/bleach https://pypi.python.org/pypi/bleach"
39 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="Apache-2.0"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86"
44 -IUSE="test"
45 -
46 -RDEPEND="
47 - >=dev-python/html5lib-0.99999999[${PYTHON_USEDEP}]
48 - dev-python/six[${PYTHON_USEDEP}]
49 -"
50 -DEPEND="${RDEPEND}
51 - dev-python/setuptools[${PYTHON_USEDEP}]
52 - test? ( >=dev-python/pytest-3.0.3[${PYTHON_USEDEP}] )
53 -"
54 -
55 -python_test() {
56 - py.test -v || die "tests failed under ${EPYTHON}"
57 -}