python-pysnmp-mibs: new package

Signed-off-by: Ryan Barnett <rjbarnet@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Ryan Barnett 2013-12-11 21:27:11 +01:00 committed by Peter Korsgaard
parent ef63b034e6
commit 68f2291309
3 changed files with 30 additions and 0 deletions

View File

@ -407,6 +407,7 @@ source "package/python-pyparsing/Config.in"
source "package/python-pyro/Config.in"
source "package/python-pysnmp/Config.in"
source "package/python-pysnmp-apps/Config.in"
source "package/python-pysnmp-mibs/Config.in"
source "package/python-pyusb/Config.in"
source "package/python-pyzmq/Config.in"
source "package/python-serial/Config.in"

View File

@ -0,0 +1,13 @@
config BR2_PACKAGE_PYTHON_PYSNMP_MIBS
bool "python-pysnmp-mibs"
depends on BR2_PACKAGE_PYTHON
select BR2_PACKAGE_PYTHON_PYSNMP
depends on BR2_INSTALL_LIBSTDCPP # pysnmp -> pyasn
help
PySNMP MIBs is a set of IETF & IANA MIBs pre-compiled and
packaged to simplify their use with the PySNMP library.
http://pysnmp.sf.net
comment "python-pysnmp-libs needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP

View File

@ -0,0 +1,16 @@
################################################################################
#
# python-pysnmp-mibs
#
################################################################################
PYTHON_PYSNMP_MIBS_VERSION = 0.1.4
PYTHON_PYSNMP_MIBS_SOURCE = pysnmp-mibs-$(PYTHON_PYSNMP_MIBS_VERSION).tar.gz
PYTHON_PYSNMP_MIBS_SITE = https://pypi.python.org/packages/source/p/pysnmp-mibs
PYTHON_PYSNMP_MIBS_SETUP_TYPE = setuptools
PYTHON_PYSNMP_MIBS_LICENSE = BSD-3c
PYTHON_PYSNMP_MIBS_LICENSE_FILES = LICENSE
PYTHON_PYSNMP_MIBS_DEPENDENCIES = python-pysnmp
$(eval $(python-package))