diff options
author | 2016-10-24 12:34:37 +0200 | |
---|---|---|
committer | 2016-10-24 13:30:35 +0200 | |
commit | 60e7b2fbb8693149f75cc06fb4826f05e8e68228 (patch) | |
tree | ca82f30c7edd03f5724dfbaf02fab7ae9be5f9f3 /dev-python/ipaddress/ipaddress-1.0.17.ebuild | |
parent | dev-python/cssselect: Bump to version 1.0.0 (diff) | |
download | gentoo-60e7b2fbb8693149f75cc06fb4826f05e8e68228.tar.gz gentoo-60e7b2fbb8693149f75cc06fb4826f05e8e68228.tar.bz2 gentoo-60e7b2fbb8693149f75cc06fb4826f05e8e68228.zip |
dev-python/ipaddress: Bump to version 1.0.17
Package-Manager: portage-2.3.2
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'dev-python/ipaddress/ipaddress-1.0.17.ebuild')
-rw-r--r-- | dev-python/ipaddress/ipaddress-1.0.17.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-python/ipaddress/ipaddress-1.0.17.ebuild b/dev-python/ipaddress/ipaddress-1.0.17.ebuild new file mode 100644 index 000000000000..a859cca21c16 --- /dev/null +++ b/dev-python/ipaddress/ipaddress-1.0.17.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="IPv4/IPv6 manipulation library, backport of the ipaddress module" +HOMEPAGE="https://github.com/phihag/ipaddress" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="PSF-2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND="" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + "${PYTHON}" test_ipaddress.py || die +} |