mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 09:07:26 -08:00
22 lines
528 B
Bash
22 lines
528 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{10..11} )
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Pure-Python SNMP management tools"
|
|
HOMEPAGE="https://github.com/etingof/snmpclitools"
|
|
SRC_URI="https://github.com/etingof/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="
|
|
>=dev-python/pysnmp-4.2.2[${PYTHON_USEDEP}]
|
|
dev-python/pysnmp-mibs[${PYTHON_USEDEP}]
|
|
"
|