Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/html5lib/
Date: Tue, 09 May 2017 01:55:04
Message-Id: 1494294860.99d071475448abc9d4935da9f2b7b5182bd4a1f5.zmedico@gentoo
1 commit: 99d071475448abc9d4935da9f2b7b5182bd4a1f5
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 9 01:54:20 2017 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Tue May 9 01:54:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99d07147
7
8 dev-python/html5lib: version bump to 0.999999999
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 dev-python/html5lib/Manifest | 1 +
13 dev-python/html5lib/html5lib-0.999999999.ebuild | 32 +++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-python/html5lib/Manifest b/dev-python/html5lib/Manifest
17 index de4d9101029..1870dc9db70 100644
18 --- a/dev-python/html5lib/Manifest
19 +++ b/dev-python/html5lib/Manifest
20 @@ -1 +1,2 @@
21 DIST html5lib-0.9999999.tar.gz 889312 SHA256 2612a191a8d5842bfa057e41ba50bbb9dcb722419d2408c78cff4758d0754868 SHA512 1748a1921f4bc93b7f208d89701eeabfe507e40515dd2e88ece239ba7c1704c8ae9dc4eea310164c7b207225dce910f78a8b34f826f4f87a2992365c07089c28 WHIRLPOOL 48dbd278e247e98e2765e7da1ce99474fba241b0a6b70e441899271b0cffffca33720646a35ae724713be5ce5a15617d611ebd76c192755e72485d09d446f5ac
22 +DIST html5lib-0.999999999.tar.gz 245488 SHA256 ee747c0ffd3028d2722061936b5c65ee4fe13c8e4613519b4447123fc4546298 SHA512 b30d9ea74d0ad03e07ebee0d33caefeed717e6084f2ef44559ebf73948563ffd60e40c774e23c8964a32b0f265d1d1f0b98759861acaa208f28e5ab2813c3ca0 WHIRLPOOL 369e81d83d03636b34901277f53e80373f54ecc15ae948d4a4f04554cd78815b6574759835d76e3105028803e6797a92144a1346e7c826a72269239dc5d105ee
23
24 diff --git a/dev-python/html5lib/html5lib-0.999999999.ebuild b/dev-python/html5lib/html5lib-0.999999999.ebuild
25 new file mode 100644
26 index 00000000000..6465ee9478e
27 --- /dev/null
28 +++ b/dev-python/html5lib/html5lib-0.999999999.ebuild
29 @@ -0,0 +1,32 @@
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 +PYTHON_REQ_USE="xml(+)"
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="HTML parser based on the HTML5 specification"
41 +HOMEPAGE="https://github.com/html5lib/html5lib-python/ https://html5lib.readthedocs.org"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +IUSE="test"
48 +
49 +RDEPEND="dev-python/six[${PYTHON_USEDEP}]
50 + dev-python/webencodings[${PYTHON_USEDEP}]"
51 +DEPEND="${RDEPEND}
52 + dev-python/setuptools[${PYTHON_USEDEP}]
53 + test? (
54 + dev-python/pytest[${PYTHON_USEDEP}]
55 + dev-python/pytest-expect[${PYTHON_USEDEP}]
56 + dev-python/mock[${PYTHON_USEDEP}]
57 + )"
58 +
59 +python_test() {
60 + py.test -v || die "Tests fail with ${EPYTHON}"
61 +}