summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-07-05 10:47:07 +0200
committerMichał Górny <mgorny@gentoo.org>2025-07-05 10:47:07 +0200
commitb250a4615b86f4656a4f7fe34fb417cc3e5cb94b (patch)
tree90f108658383db2f5e970a6335c2000e3ef29c5b /dev-python
parent7fae92eebc47f7b53d1cf81508f07bf63063bc1b (diff)
downloadgentoo-b250a4615b86f4656a4f7fe34fb417cc3e5cb94b.tar.gz
gentoo-b250a4615b86f4656a4f7fe34fb417cc3e5cb94b.tar.bz2
gentoo-b250a4615b86f4656a4f7fe34fb417cc3e5cb94b.zip
dev-python/pysnmp: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/pysnmp/Manifest1
-rw-r--r--dev-python/pysnmp/pysnmp-7.1.20.ebuild54
2 files changed, 0 insertions, 55 deletions
diff --git a/dev-python/pysnmp/Manifest b/dev-python/pysnmp/Manifest
index 18ce73823ccd..3154729a917e 100644
--- a/dev-python/pysnmp/Manifest
+++ b/dev-python/pysnmp/Manifest
@@ -1,2 +1 @@
-DIST pysnmp-7.1.20.gh.tar.gz 498284 BLAKE2B 1f4a5129792375b0e8fcae7c7b2cc3b00fd0fc0d3b8ff4fb1ea62274e5a35835f07213477cb2248a18c2ac9b215826e84e555ea4602ad58753ba6f56eb232322 SHA512 41024f45f559cf001958f53cb00b1acaf14aba9caaf21cfbab7a3232e349b8c59a2fc4c686fe1429db71fed1dead19f3aaeb6d6550d370f669b910cdfeabd388
DIST pysnmp-7.1.21.gh.tar.gz 471713 BLAKE2B 11223cc35043aee87b527438152f17af7920c8ac8364bcaa4bb97ae2f53f6e0f93861ce2f5fa0cbe84eb4661b63871304e22320d4327aed89869a25a3c4b1458 SHA512 65e609690d08b2db8ab497fa4a974e4bc90630891ff80b28351e74d17f1da654a0aa309226658731ad315cce192c6e9e36d9bcbbf87270c9c48dc187df36b03a
diff --git a/dev-python/pysnmp/pysnmp-7.1.20.ebuild b/dev-python/pysnmp/pysnmp-7.1.20.ebuild
deleted file mode 100644
index 123c764e99cf..000000000000
--- a/dev-python/pysnmp/pysnmp-7.1.20.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{11..13} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python SNMP library"
-HOMEPAGE="
- https://pypi.org/project/pysnmp/
- https://github.com/lextudio/pysnmp/
-"
-SRC_URI="
- https://github.com/lextudio/pysnmp/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc ~sparc x86"
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
- >=dev-python/cryptography-43.0.1[${PYTHON_USEDEP}]
- >=dev-python/pyasn1-0.4.8[${PYTHON_USEDEP}]
- >=dev-python/pysmi-1.5.7[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/pytest-asyncio[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-# TODO
-# distutils_enable_sphinx docs/source dev-python/furo dev-python/sphinx-copybutton dev-python/sphinx-sitemap
-
-python_test() {
- local EPYTEST_DESELECT=(
- # TODO
- tests/smi/manager/test_mib-tree-inspection.py::test_getNodeName_by_symbol_description_with_module_name_2
- )
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- mibdump CISCO-ENHANCED-IPSEC-FLOW-MIB.py || die
- mibdump LEXTUDIO-TEST-MIB || die
- mibdump NET-SNMP-EXAMPLES-MIB || die
- mibdump IF-MIB || die
- epytest -p asyncio
-}