Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/construct/
Date: Sun, 10 Sep 2017 20:48:29
Message-Id: 1505076465.a8f73307de9e19a680ec72ce4d1fd1edd08af0c9.monsieurp@gentoo
1 commit: a8f73307de9e19a680ec72ce4d1fd1edd08af0c9
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Sat Sep 9 10:19:55 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 10 20:47:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8f73307
7
8 dev-python/construct: version bump to 2.8.14.
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11 Closes: https://github.com/gentoo/gentoo/pull/5669
12
13 dev-python/construct/Manifest | 1 +
14 dev-python/construct/construct-2.8.14.ebuild | 33 ++++++++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/dev-python/construct/Manifest b/dev-python/construct/Manifest
18 index 67412f113a1..bb71c86c98b 100644
19 --- a/dev-python/construct/Manifest
20 +++ b/dev-python/construct/Manifest
21 @@ -1,2 +1,3 @@
22 DIST construct-2.5.2.tar.gz 58373 SHA256 665b6271eeadf15219c726b180c8d7a641d026784d72ca3dad90a20aae009020 SHA512 dbfa28f58821811fa28ef170818d74212e76389a017c4073acd24025ace292285828506cb44387ff07c1c05ae70766a3a0679baea25deb3b0dcc31c85b24340b WHIRLPOOL ebe5ac0a09e317a2d8c123f24c110b3ea303c179710da6112c8f376bbf1d526c4c29ebf7f60c12f8873f74ec4ebabf010b4e537173fe28f166da6f49b79635cc
23 DIST construct-2.8.12.tar.gz 720277 SHA256 67ee2c69a11bdadc0705c7e0de0ff16ef74b730932537e22ac1f64f479240ffa SHA512 4d0f59623a62eeab3c10e95b4e8153a1593219bcbcbbe5f87e75ba0a010b62021a9502faf715623faa78b4e397f1a74b41e9bffd1ede92dbebf87b0d4a59b66b WHIRLPOOL a73a2ad27c32e0ec59eb2b04fb45eb9f16e93460f722c3d19007840e141dd846695659adff3f6d50581fbf4ecaa37b982317722fda847bf3eb298432146ec19d
24 +DIST construct-2.8.14.tar.gz 719633 SHA256 7ca89f47a6e3e702465aa360ac3a2c578728cbd7b6c82659ab2f7f48aae4f0e3 SHA512 ada1853ff9559f19dbb153ef4b60a6daf58dadaf0524fcb35c4a38e8c0a476acfbeec2f4d02ebfa1858c9d2660ffc8695d7ff8055a23e8dc40aca8290c53ac69 WHIRLPOOL 9feb7940e160949ed5ce3db246297c5b563f2a10bce7f79866ae6bcc2b18728201aacca76592e5806e08f724217e32026c1bcfcac74df862f96e68fde571c0ad
25
26 diff --git a/dev-python/construct/construct-2.8.14.ebuild b/dev-python/construct/construct-2.8.14.ebuild
27 new file mode 100644
28 index 00000000000..ceeedd6f36d
29 --- /dev/null
30 +++ b/dev-python/construct/construct-2.8.14.ebuild
31 @@ -0,0 +1,33 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="A powerful declarative parser for binary data"
41 +HOMEPAGE="http://construct.readthedocs.io/ https://pypi.python.org/pypi/construct"
42 +SRC_URI="https://github.com/construct/construct/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="test"
48 +
49 +DEPEND="test? (
50 + dev-python/numpy[${PYTHON_USEDEP}]
51 + dev-python/pytest[${PYTHON_USEDEP}]
52 + dev-python/pytest-cov[${PYTHON_USEDEP}]
53 + dev-python/tox[${PYTHON_USEDEP}]
54 + )"
55 +
56 +python_test() {
57 + py.test -vv || die "Tests failed under ${EPYTHON}"
58 +}
59 +
60 +pkg_postinst() {
61 + ewarn "Version 2.8.x has significant API and implementation changes from"
62 + ewarn "previous 2.5.x releases. Please read the documentation at"
63 + ewarn "http://construct.readthedocs.io/ for more info."
64 +}