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 9501C138359 for ; Sun, 22 Nov 2020 16:48:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A97CCE077F; Sun, 22 Nov 2020 16:48:33 +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 8BFECE077F for ; Sun, 22 Nov 2020 16:48:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 9181F340E71 for ; Sun, 22 Nov 2020 16:48:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15FB642C for ; Sun, 22 Nov 2020 16:48:31 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1606063665.d5df5b36c677e2d9195cd3bac531373c9261fb46.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ifaddr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ifaddr/Manifest dev-python/ifaddr/ifaddr-0.1.7.ebuild X-VCS-Directories: dev-python/ifaddr/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: d5df5b36c677e2d9195cd3bac531373c9261fb46 X-VCS-Branch: master Date: Sun, 22 Nov 2020 16:48: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: b76da7ae-b611-4cf9-a7b3-b3689c4dcab8 X-Archives-Hash: 6dd67693ce39ed2fec9b43f47f8a0463 commit: d5df5b36c677e2d9195cd3bac531373c9261fb46 Author: Etienne d'Hautefeuille yahoo fr> AuthorDate: Sun Nov 22 08:02:10 2020 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sun Nov 22 16:47:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5df5b36 dev-python/ifaddr: bump to 0.1.7, add tests and Python 3.9 support Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Etienne d'Hautefeuille yahoo.fr> Closes: https://github.com/gentoo/gentoo/pull/18356 Signed-off-by: Louis Sautier gentoo.org> dev-python/ifaddr/Manifest | 1 + dev-python/ifaddr/ifaddr-0.1.7.ebuild | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/dev-python/ifaddr/Manifest b/dev-python/ifaddr/Manifest index 72f8ee64800..d75dbe3f297 100644 --- a/dev-python/ifaddr/Manifest +++ b/dev-python/ifaddr/Manifest @@ -1 +1,2 @@ DIST ifaddr-0.1.6.tar.gz 6526 BLAKE2B d30b955d42d0266a197214bbe16ff2a8b11e33b4305ae9ed128fca6719e2c86026c97b278b0abaf5f5f35f4c9b744e5b500b4a4c1783dede0ebd4aedff62803f SHA512 911f81c32e808b9e61f7e98b8c67dc9b40cb64de864843cd7239f08538c9ff7cd45c8f16428b2ce200ea5f213a539c7ed8479432e02feb5e82e917f838ee0cb6 +DIST ifaddr-0.1.7.tar.gz 9281 BLAKE2B 3f7d29b69462cbf592899f1b4035685d1e9bb4535b104e6e59b41fd51c4c2681d2502ad190dae633891aec90818bb330c1f8ea403be22d154d9e7de8a5a80dab SHA512 9a428dd6bb022c8f483b77df9e9301f96e9ba64207eda8b3956a7ca5993bfe97f222c451149851135d379db1a819c75d0834566f3b6501456b2f237b0645e300 diff --git a/dev-python/ifaddr/ifaddr-0.1.7.ebuild b/dev-python/ifaddr/ifaddr-0.1.7.ebuild new file mode 100644 index 00000000000..c125ab42190 --- /dev/null +++ b/dev-python/ifaddr/ifaddr-0.1.7.ebuild @@ -0,0 +1,18 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( pypy3 python3_{6..9} ) + +inherit distutils-r1 + +DESCRIPTION="Enumerate IP addresses on the local network adapters" +HOMEPAGE="https://github.com/pydron/ifaddr" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" + +distutils_enable_tests pytest