diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-07-27 20:34:50 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-07-27 20:34:50 +0000 |
commit | a9d809785f52ab7911fc1553191cdedfa8aac444 (patch) | |
tree | 712195d32cd7800924c2b29c3c6d0e2336c42b93 /dev-python/ipaddress | |
parent | Mask unsupport and vulnerable django version (diff) | |
download | gentoo-2-a9d809785f52ab7911fc1553191cdedfa8aac444.tar.gz gentoo-2-a9d809785f52ab7911fc1553191cdedfa8aac444.tar.bz2 gentoo-2-a9d809785f52ab7911fc1553191cdedfa8aac444.zip |
Version Bump
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
Diffstat (limited to 'dev-python/ipaddress')
-rw-r--r-- | dev-python/ipaddress/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/ipaddress/ipaddress-1.0.14.ebuild | 25 |
2 files changed, 31 insertions, 1 deletions
diff --git a/dev-python/ipaddress/ChangeLog b/dev-python/ipaddress/ChangeLog index 8d43f56892ad..f08c400ce2b5 100644 --- a/dev-python/ipaddress/ChangeLog +++ b/dev-python/ipaddress/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/ipaddress # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ipaddress/ChangeLog,v 1.8 2015/07/19 00:21:46 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipaddress/ChangeLog,v 1.9 2015/07/27 20:34:50 jlec Exp $ + +*ipaddress-1.0.14 (27 Jul 2015) + + 27 Jul 2015; Justin Lecher <jlec@gentoo.org> +ipaddress-1.0.14.ebuild: + Version Bump *ipaddress-1.0.12 (19 Jul 2015) diff --git a/dev-python/ipaddress/ipaddress-1.0.14.ebuild b/dev-python/ipaddress/ipaddress-1.0.14.ebuild new file mode 100644 index 000000000000..531e004b7496 --- /dev/null +++ b/dev-python/ipaddress/ipaddress-1.0.14.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipaddress/ipaddress-1.0.14.ebuild,v 1.1 2015/07/27 20:34:50 jlec Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="IPv4/IPv6 manipulation library, a port 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="~amd64 ~arm ~hppa ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND="" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + "${PYTHON}" test_ipaddress.py || die +} |