Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ipaddress/
Date: Tue, 29 Dec 2015 10:02:16
Message-Id: 1451383313.1e1829d7ea7a366fc2b86d579e55d8dbc5ab2b39.jlec@gentoo
1 commit: 1e1829d7ea7a366fc2b86d579e55d8dbc5ab2b39
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 29 07:27:04 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 29 10:01:53 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e1829d7
7
8 dev-python/ipaddress: Version Bump
9
10 Package-Manager: portage-2.2.26
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/ipaddress/Manifest | 1 +
14 dev-python/ipaddress/ipaddress-1.0.16.ebuild | 25 +++++++++++++++++++++++++
15 2 files changed, 26 insertions(+)
16
17 diff --git a/dev-python/ipaddress/Manifest b/dev-python/ipaddress/Manifest
18 index afa1b8a..78845a3 100644
19 --- a/dev-python/ipaddress/Manifest
20 +++ b/dev-python/ipaddress/Manifest
21 @@ -1,2 +1,3 @@
22 DIST ipaddress-1.0.14.tar.gz 30429 SHA256 226f4be44c6cb64055e23060848266f51f329813baae28b53dc50e93488b3b3e SHA512 fb33b484ca435f4e8817c735a1084f2fa749abca4643a10be644003fdb73cc9205fc28f484ef96d2db90e8b27d8a238d1d7cf20140f7942e39be12c7524e8d6f WHIRLPOOL 30e21d5b7568125575fecd0f8cac4172713c029faa81f88cd2a6111b47da1fb3bea9305a9311ce1a7b2795e9d54b58f2cbef1e5b66f355b8c91633ead0836d04
23 DIST ipaddress-1.0.15.tar.gz 30438 SHA256 af6c85cfc9cdb12b861655e6b9f2f59618bf3088cbde858727b2c0a98e9f6636 SHA512 6cb53a2689da356b9f853bca564ca41b9d9c5700dd3c46c6f2937f2f7f97f955f3e351700494fdd2f20d6333f5feb2e5cb2d957eb4c626cc2c28cc3521fca0a1 WHIRLPOOL e1dd179078cddb62232468e8ea6032272c41892c23d6a77269ddb4daf70d9eb5a3a1a908e8e4d2c077a2959a79665e65b9c1b0a9f4f698217c9b87a7480da0a7
24 +DIST ipaddress-1.0.16.tar.gz 31765 SHA256 5a3182b322a706525c46282ca6f064d27a02cffbd449f9f47416f1dc96aa71b0 SHA512 50baf15f185b039037eef7b047d5a0ffbe1b335d2d94c218b6a2012ae1ba89c5e5c4f64667d8a623e4e4e7598d90c8a7caa8327ea4c155260ab90384f86a6c89 WHIRLPOOL de25e35f36e33a0b490ba51fb9abe8f2e81b09ba3e2b8d496f3e4fe1b29e243da928a0ce8ea837cee39c49d3ba60fddbe143a7eee1642baf1e97f10b5bb3785b
25
26 diff --git a/dev-python/ipaddress/ipaddress-1.0.16.ebuild b/dev-python/ipaddress/ipaddress-1.0.16.ebuild
27 new file mode 100644
28 index 0000000..182e7d2
29 --- /dev/null
30 +++ b/dev-python/ipaddress/ipaddress-1.0.16.ebuild
31 @@ -0,0 +1,25 @@
32 +# Copyright 1999-2015 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +
38 +PYTHON_COMPAT=( python2_7 pypy pypy3 )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="IPv4/IPv6 manipulation library, backport of the ipaddress module"
43 +HOMEPAGE="https://github.com/phihag/ipaddress"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +SLOT="0"
47 +LICENSE="PSF-2"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
49 +IUSE=""
50 +
51 +RDEPEND=""
52 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
53 +
54 +python_test() {
55 + "${PYTHON}" test_ipaddress.py || die
56 +}