From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DA24E1388C2 for ; Thu, 12 Nov 2015 18:38:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3249121C098; Thu, 12 Nov 2015 18:38:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BF581E08C8 for ; Thu, 12 Nov 2015 18:38:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B3995340754 for ; Thu, 12 Nov 2015 18:38:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B437E1473 for ; Thu, 12 Nov 2015 18:38:26 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1447353503.43a8e0b5113d975f884f2c808e662397b17217da.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ipaddress/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ipaddress/Manifest dev-python/ipaddress/ipaddress-1.0.14.ebuild dev-python/ipaddress/ipaddress-1.0.15.ebuild X-VCS-Directories: dev-python/ipaddress/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 43a8e0b5113d975f884f2c808e662397b17217da X-VCS-Branch: master Date: Thu, 12 Nov 2015 18:38:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f868b065-e022-4a6b-80c8-f6af86d8c63d X-Archives-Hash: d4166905af2f0b890aa7270c1e523464 commit: 43a8e0b5113d975f884f2c808e662397b17217da Author: Justin Lecher gentoo org> AuthorDate: Thu Nov 12 17:53:26 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Nov 12 18:38:23 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43a8e0b5 dev-python/ipaddress: Version Bump and impl cleanup As this is a backport, packages should use the standard libraries and depend on the virtual Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/ipaddress/Manifest | 1 + dev-python/ipaddress/ipaddress-1.0.14.ebuild | 4 ++-- .../ipaddress/{ipaddress-1.0.14.ebuild => ipaddress-1.0.15.ebuild} | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/dev-python/ipaddress/Manifest b/dev-python/ipaddress/Manifest index 8a5c56a..afa1b8a 100644 --- a/dev-python/ipaddress/Manifest +++ b/dev-python/ipaddress/Manifest @@ -1 +1,2 @@ DIST ipaddress-1.0.14.tar.gz 30429 SHA256 226f4be44c6cb64055e23060848266f51f329813baae28b53dc50e93488b3b3e SHA512 fb33b484ca435f4e8817c735a1084f2fa749abca4643a10be644003fdb73cc9205fc28f484ef96d2db90e8b27d8a238d1d7cf20140f7942e39be12c7524e8d6f WHIRLPOOL 30e21d5b7568125575fecd0f8cac4172713c029faa81f88cd2a6111b47da1fb3bea9305a9311ce1a7b2795e9d54b58f2cbef1e5b66f355b8c91633ead0836d04 +DIST ipaddress-1.0.15.tar.gz 30438 SHA256 af6c85cfc9cdb12b861655e6b9f2f59618bf3088cbde858727b2c0a98e9f6636 SHA512 6cb53a2689da356b9f853bca564ca41b9d9c5700dd3c46c6f2937f2f7f97f955f3e351700494fdd2f20d6333f5feb2e5cb2d957eb4c626cc2c28cc3521fca0a1 WHIRLPOOL e1dd179078cddb62232468e8ea6032272c41892c23d6a77269ddb4daf70d9eb5a3a1a908e8e4d2c077a2959a79665e65b9c1b0a9f4f698217c9b87a7480da0a7 diff --git a/dev-python/ipaddress/ipaddress-1.0.14.ebuild b/dev-python/ipaddress/ipaddress-1.0.14.ebuild index 5d183f5..66167cf 100644 --- a/dev-python/ipaddress/ipaddress-1.0.14.ebuild +++ b/dev-python/ipaddress/ipaddress-1.0.14.ebuild @@ -4,11 +4,11 @@ EAPI=5 -PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) +PYTHON_COMPAT=( python2_7 pypy pypy3 ) inherit distutils-r1 -DESCRIPTION="IPv4/IPv6 manipulation library, a port of the ipaddress module" +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" diff --git a/dev-python/ipaddress/ipaddress-1.0.14.ebuild b/dev-python/ipaddress/ipaddress-1.0.15.ebuild similarity index 62% copy from dev-python/ipaddress/ipaddress-1.0.14.ebuild copy to dev-python/ipaddress/ipaddress-1.0.15.ebuild index 5d183f5..182e7d2 100644 --- a/dev-python/ipaddress/ipaddress-1.0.14.ebuild +++ b/dev-python/ipaddress/ipaddress-1.0.15.ebuild @@ -4,17 +4,17 @@ EAPI=5 -PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) +PYTHON_COMPAT=( python2_7 pypy pypy3 ) inherit distutils-r1 -DESCRIPTION="IPv4/IPv6 manipulation library, a port of the ipaddress module" +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" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="" RDEPEND=""