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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AAB41158528 for ; Wed, 24 Jan 2024 19:07:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1CA5E2A99; Wed, 24 Jan 2024 19:07:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D3DAFE2A99 for ; Wed, 24 Jan 2024 19:07:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E7C0034338D for ; Wed, 24 Jan 2024 19:07:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8ADF7134C for ; Wed, 24 Jan 2024 19:07:31 +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: <1706123203.c2d0ed2caa76f006d3d6d0f4851e659e685f8918.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/netaddr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/netaddr/Manifest dev-python/netaddr/netaddr-0.10.0.ebuild X-VCS-Directories: dev-python/netaddr/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c2d0ed2caa76f006d3d6d0f4851e659e685f8918 X-VCS-Branch: master Date: Wed, 24 Jan 2024 19:07:31 +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: 1c22d012-15c9-4502-814a-0509dc84fafa X-Archives-Hash: 96a21c9574bdf413bcf28fdc7b8e3efc commit: c2d0ed2caa76f006d3d6d0f4851e659e685f8918 Author: Michał Górny gentoo org> AuthorDate: Wed Jan 24 19:06:43 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jan 24 19:06:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2d0ed2c dev-python/netaddr: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/netaddr/Manifest | 1 - dev-python/netaddr/netaddr-0.10.0.ebuild | 27 --------------------------- 2 files changed, 28 deletions(-) diff --git a/dev-python/netaddr/Manifest b/dev-python/netaddr/Manifest index f84526fb2aa4..730a4576b6ca 100644 --- a/dev-python/netaddr/Manifest +++ b/dev-python/netaddr/Manifest @@ -1,2 +1 @@ -DIST netaddr-0.10.0.tar.gz 2225176 BLAKE2B f426b55c450c3bb5204452f1299c7373e816833682d66dfcb80dae982289f295cdbb4404c107de042fdc76367c8ff832aebccbcf7b32034032c00eff7ad47d67 SHA512 120c7276c39f4d2e17265c5b09842408f7cc211035239a6fb540d538fa8d9c75cf1e201d4ae459d5319096b0c4d9c39a3f171364b2f1d2f5265d0535691fc2b3 DIST netaddr-0.10.1.tar.gz 2225283 BLAKE2B 1e350909779af0bf48d74834194358386cf4f8e11fa7b03c971b3011bcec437cc39feb72e7e79d55eb330e6ee138d15bb6dba9293667e1adb4ed1c6d42a35d78 SHA512 ca04171d5cbfd569d4f262f4870610edfd98be35899cb70983dbff5f37add963e05987ddbe1ab22d9b615580ac1abe96a8c2903681b18af8c9f2f96899b618ff diff --git a/dev-python/netaddr/netaddr-0.10.0.ebuild b/dev-python/netaddr/netaddr-0.10.0.ebuild deleted file mode 100644 index 7b207e5c1f43..000000000000 --- a/dev-python/netaddr/netaddr-0.10.0.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) - -inherit distutils-r1 optfeature pypi - -DESCRIPTION="Network address representation and manipulation library" -HOMEPAGE=" - https://github.com/netaddr/netaddr/ - https://pypi.org/project/netaddr/ - https://netaddr.readthedocs.io/ -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux" - -distutils_enable_sphinx docs/source -distutils_enable_tests pytest - -pkg_postinst() { - optfeature "CLI support" dev-python/ipython -}