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 05B62158090 for ; Sat, 21 May 2022 14:14:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E18EFE0905; Sat, 21 May 2022 14:14:13 +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 C5929E0905 for ; Sat, 21 May 2022 14:14:13 +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 D277A3416A3 for ; Sat, 21 May 2022 14:14:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 201AE483 for ; Sat, 21 May 2022 14:14: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: <1653142443.4e43a0575b5a531bc91566f6268d85f3f7aad762.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/netaddr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/netaddr/metadata.xml dev-python/netaddr/netaddr-0.8.0-r1.ebuild X-VCS-Directories: dev-python/netaddr/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4e43a0575b5a531bc91566f6268d85f3f7aad762 X-VCS-Branch: master Date: Sat, 21 May 2022 14:14: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: 8f2b9bf6-bcc8-4e91-89eb-1631f2434cee X-Archives-Hash: 3dca4f8fcbfea4da41a495ba11c2b73d commit: 4e43a0575b5a531bc91566f6268d85f3f7aad762 Author: Michał Górny gentoo org> AuthorDate: Sat May 21 14:08:38 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 21 14:14:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e43a057 dev-python/netaddr: Use PEP517 build Signed-off-by: Michał Górny gentoo.org> dev-python/netaddr/metadata.xml | 2 +- dev-python/netaddr/netaddr-0.8.0-r1.ebuild | 37 ++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/dev-python/netaddr/metadata.xml b/dev-python/netaddr/metadata.xml index 412f2bbd49f8..35a4cedd7fd9 100644 --- a/dev-python/netaddr/metadata.xml +++ b/dev-python/netaddr/metadata.xml @@ -7,7 +7,7 @@ netaddr - drkjam/netaddr + netaddr/netaddr https://github.com/netaddr/netaddr/issues https://github.com/netaddr/netaddr/blob/master/CHANGELOG https://netaddr.readthedocs.io/ diff --git a/dev-python/netaddr/netaddr-0.8.0-r1.ebuild b/dev-python/netaddr/netaddr-0.8.0-r1.ebuild new file mode 100644 index 000000000000..15689aea4594 --- /dev/null +++ b/dev-python/netaddr/netaddr-0.8.0-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 optfeature + +DESCRIPTION="Network address representation and manipulation library" +HOMEPAGE=" + https://github.com/netaddr/netaddr/ + https://pypi.org/project/netaddr/ + https://netaddr.readthedocs.io/ +" +SRC_URI=" + https://github.com/netaddr/netaddr/archive/${PV}.tar.gz + -> ${P}.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" + +distutils_enable_sphinx docs/source +distutils_enable_tests pytest + +src_prepare() { + # Disable coverage (requires additional plugins) + sed -i 's/^addopts = .*//' pytest.ini || die + distutils-r1_src_prepare +} + +pkg_postinst() { + optfeature "CLI support" dev-python/ipython +}