diff options
author | Etienne d'Hautefeuille <bdouxx-git@yahoo.fr> | 2020-11-22 09:02:10 +0100 |
---|---|---|
committer | Louis Sautier <sbraz@gentoo.org> | 2020-11-22 17:47:45 +0100 |
commit | d5df5b36c677e2d9195cd3bac531373c9261fb46 (patch) | |
tree | a4c1ca220408b75c72fa40a03bb41fa405c122e1 /dev-python/ifaddr | |
parent | games-sports/bygfoot: Port to EAPI 7 (diff) | |
download | gentoo-d5df5b36c677e2d9195cd3bac531373c9261fb46.tar.gz gentoo-d5df5b36c677e2d9195cd3bac531373c9261fb46.tar.bz2 gentoo-d5df5b36c677e2d9195cd3bac531373c9261fb46.zip |
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 <bdouxx-git@yahoo.fr>
Closes: https://github.com/gentoo/gentoo/pull/18356
Signed-off-by: Louis Sautier <sbraz@gentoo.org>
Diffstat (limited to 'dev-python/ifaddr')
-rw-r--r-- | dev-python/ifaddr/Manifest | 1 | ||||
-rw-r--r-- | dev-python/ifaddr/ifaddr-0.1.7.ebuild | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/dev-python/ifaddr/Manifest b/dev-python/ifaddr/Manifest index 72f8ee648008..d75dbe3f297e 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 000000000000..c125ab421907 --- /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 |