diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-12-23 10:00:13 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-12-23 10:02:01 +0100 |
commit | 709a4f9f8e12c02c874a41ad508df115f6acb695 (patch) | |
tree | cdc9dc16bf857df4df968d35515b26674e785ef2 /dev-python | |
parent | dev-python/pympler: Remove last-rited pkg (diff) | |
download | gentoo-709a4f9f8e12c02c874a41ad508df115f6acb695.tar.gz gentoo-709a4f9f8e12c02c874a41ad508df115f6acb695.tar.bz2 gentoo-709a4f9f8e12c02c874a41ad508df115f6acb695.zip |
dev-python/python-ethtool: Remove last-rited pkg
Closes: https://bugs.gentoo.org/755623
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/python-ethtool/Manifest | 1 | ||||
-rw-r--r-- | dev-python/python-ethtool/files/test-skip-wg-dev.patch | 29 | ||||
-rw-r--r-- | dev-python/python-ethtool/metadata.xml | 17 | ||||
-rw-r--r-- | dev-python/python-ethtool/python-ethtool-0.14.ebuild | 29 |
4 files changed, 0 insertions, 76 deletions
diff --git a/dev-python/python-ethtool/Manifest b/dev-python/python-ethtool/Manifest deleted file mode 100644 index d42a9219ab7b..000000000000 --- a/dev-python/python-ethtool/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST python-ethtool-0.14.tar.gz 41945 BLAKE2B d83e40e79481ee5f91f7e097dc4f6f0eb541f88ba83e13c13b3129ece2196ee999f9110310339ebbc2343b814a3b2c80405a3b4ce6931110509a54281b370cd8 SHA512 57a3f2d60dd8309192fc858614645d4e7533c90c03113ffc1eeeb810b86eb71b0a80b4eb209d3452c7624c5318a853de50d9d716d41334bf079e6e3e2490fd4b diff --git a/dev-python/python-ethtool/files/test-skip-wg-dev.patch b/dev-python/python-ethtool/files/test-skip-wg-dev.patch deleted file mode 100644 index 435a81ae494d..000000000000 --- a/dev-python/python-ethtool/files/test-skip-wg-dev.patch +++ /dev/null @@ -1,29 +0,0 @@ -From aa18c4a046ed2b508a87161f886e07c6d3716dd3 Mon Sep 17 00:00:00 2001 -From: Georgy Yakovlev <gyakovlev@gentoo.org> -Date: Sat, 2 Feb 2019 14:00:52 -0800 -Subject: [PATCH] tests/test_ethtool.py: skip test_get_active_devices for wg - -wg is a wireguard interface and this test fails with -OSError: [Errno 95] Operation not supported ---- - tests/test_ethtool.py | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/tests/test_ethtool.py b/tests/test_ethtool.py -index 6162cd3..0ff78b1 100755 ---- a/tests/test_ethtool.py -+++ b/tests/test_ethtool.py -@@ -254,8 +254,8 @@ class EthtoolTests(unittest.TestCase): - - def test_get_active_devices(self): - for devname in ethtool.get_active_devices(): -- # Skip these test on tun devices -- if devname.startswith('tun'): -+ # Skip these test on tun and wg devices -+ if devname.startswith('tun') or devname.startswith('wg'): - continue - self._functions_accepting_devnames(devname) - --- -2.20.1 - diff --git a/dev-python/python-ethtool/metadata.xml b/dev-python/python-ethtool/metadata.xml deleted file mode 100644 index 52da32872c98..000000000000 --- a/dev-python/python-ethtool/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>python@gentoo.org</email> - <name>Python</name> - </maintainer> - <longdescription lang="en"> - Python bindings for the ethtool kernel interface, that allows querying and - changing of Ethernet card settings, such as speed, port, auto-negotiation, and - PCI locations. - </longdescription> - <upstream> - <remote-id type="pypi">ethtool</remote-id> - <remote-id type="github">fedora-python/python-ethtool</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-python/python-ethtool/python-ethtool-0.14.ebuild b/dev-python/python-ethtool/python-ethtool-0.14.ebuild deleted file mode 100644 index 64886a510607..000000000000 --- a/dev-python/python-ethtool/python-ethtool-0.14.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7} ) - -# TODO: install scripts and their man pages - -inherit distutils-r1 - -DESCRIPTION="Ethernet settings python bindings" -HOMEPAGE="https://pypi.org/project/ethtool/ - https://github.com/fedora-python/python-ethtool" -SRC_URI="https://github.com/fedora-python/python-ethtool/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" - -DEPEND="dev-libs/libnl:3" -RDEPEND="${DEPEND}" -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -PATCHES=( "${FILESDIR}"/test-skip-wg-dev.patch ) - -python_test() { - esetup.py test || die "Tests failed with ${EPYTHON}" -} |