From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5A0DD138353 for ; Wed, 25 Mar 2020 13:00:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83ECDE0B29; Wed, 25 Mar 2020 13:00:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 628A3E0B14 for ; Wed, 25 Mar 2020 13:00:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 19B0B34F5BC for ; Wed, 25 Mar 2020 13:00:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A05841AF for ; Wed, 25 Mar 2020 13:00:09 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1585141182.dbac19db8b87373531e6c8920c2245ce1bd79c54.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ipaddr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ipaddr/Manifest dev-python/ipaddr/ipaddr-2.1.11-r1.ebuild X-VCS-Directories: dev-python/ipaddr/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: dbac19db8b87373531e6c8920c2245ce1bd79c54 X-VCS-Branch: master Date: Wed, 25 Mar 2020 13:00:09 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fb9d7825-7f29-4043-80f5-37e23c3a1af9 X-Archives-Hash: 2be0513f8a5a9e5354e759f391ccd768 commit: dbac19db8b87373531e6c8920c2245ce1bd79c54 Author: Michał Górny gentoo org> AuthorDate: Wed Mar 25 12:49:00 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Mar 25 12:59:42 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbac19db dev-python/ipaddr: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/ipaddr/Manifest | 1 - dev-python/ipaddr/ipaddr-2.1.11-r1.ebuild | 31 ------------------------------- 2 files changed, 32 deletions(-) diff --git a/dev-python/ipaddr/Manifest b/dev-python/ipaddr/Manifest index 0ff11febdd8..505715a4753 100644 --- a/dev-python/ipaddr/Manifest +++ b/dev-python/ipaddr/Manifest @@ -1,2 +1 @@ -DIST ipaddr-2.1.11.tar.gz 29046 BLAKE2B 8196898209d580ce25bc2ccb05b2e772c42c053116749bb5137a87b6648472c4fab522d76405510cb2304859b4179c593b213739e9294a1af1d9894cac7040ab SHA512 a97b0f760f0d7fac549e5edf17b644c966a8858c145b8f9472ddc8bf4805c9d537f6f8755e3716d78b729b87e84149f8b73c7f98c0deee4fbf266ccb7a206bc6 DIST ipaddr-2.2.0.tar.gz 26266 BLAKE2B f12807beb52c5cb3c7da2afa4b61b264fb58f0100900e5ca062127ce218f9f5710f38ac7c7183a7aa08b77757c39866d169e6e39c3bc5c6c55df003a9b414ec0 SHA512 5adb117c44e6e5dbdb9e96543aa7a34f35b4a4ec9baa163a25448058c34091bf4019d24f0250928291e4d4bc97dcdf75865daef739e2d94f98cc584e6e6c50dd diff --git a/dev-python/ipaddr/ipaddr-2.1.11-r1.ebuild b/dev-python/ipaddr/ipaddr-2.1.11-r1.ebuild deleted file mode 100644 index e94a6e557c7..00000000000 --- a/dev-python/ipaddr/ipaddr-2.1.11-r1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python{2_7,3_6} ) - -inherit distutils-r1 - -DESCRIPTION="Python IP address manipulation library" -HOMEPAGE="https://github.com/google/ipaddr-py https://pypi.org/project/ipaddr/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 arm ~arm64 x86" - -DOCS=( README RELEASENOTES ) - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -python_prepare() { - if python_is_python3; then - 2to3 -n -w --no-diffs *.py || die - fi -} - -python_test() { - distutils_install_for_testing - "${EPYTHON}" ipaddr_test.py || die "Tests fail with ${EPYTHON}" -}