Date: Thu, 12 Apr 2018 16:52:46 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467165 - head/net/py-netsnmpagent Message-ID: <201804121652.w3CGqk3O024493@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wg Date: Thu Apr 12 16:52:46 2018 New Revision: 467165 URL: https://svnweb.freebsd.org/changeset/ports/467165 Log: net/py-netsnmpagent: Python module that facilitates writing Net-SNMP subagents in Python Subagents connect to a locally running Master agent (snmpd) over a Unix domain socket and using the AgentX protocol (RFC2741). They implement custom Management Information Base (MIB) modules that extend the local node MIB tree. Usually, this requires writing a MIB as well, ie. a text file that specifies the structure, names and data types of the information within the MIB module. WWW: https://pypi.python.org/pypi/netsnmpagent Added: head/net/py-netsnmpagent/ head/net/py-netsnmpagent/Makefile (contents, props changed) head/net/py-netsnmpagent/distinfo (contents, props changed) head/net/py-netsnmpagent/pkg-descr (contents, props changed) Added: head/net/py-netsnmpagent/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-netsnmpagent/Makefile Thu Apr 12 16:52:46 2018 (r467165) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= netsnmpagent +PORTVERSION= 0.6.0 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= vladimirv@ixsystems.com +COMMENT= Python module that facilitates writing Net-SNMP subagents in Python + +LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= autoplist concurrent distutils + +.include <bsd.port.mk> Added: head/net/py-netsnmpagent/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-netsnmpagent/distinfo Thu Apr 12 16:52:46 2018 (r467165) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523553999 +SHA256 (netsnmpagent-0.6.0.tar.gz) = 1f2b9505b240336036245d7a2eadb2439d9e44070b2ab47c825c3eb8314e7be0 +SIZE (netsnmpagent-0.6.0.tar.gz) = 57113 Added: head/net/py-netsnmpagent/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-netsnmpagent/pkg-descr Thu Apr 12 16:52:46 2018 (r467165) @@ -0,0 +1,10 @@ +Python module that facilitates writing Net-SNMP subagents in Python. + +Subagents connect to a locally running Master agent (snmpd) over a Unix domain +socket and using the AgentX protocol (RFC2741). +They implement custom Management Information Base (MIB) modules that extend +the local node MIB tree. Usually, this requires writing a MIB as well, ie. +a text file that specifies the structure, names and data types of the +information within the MIB module. + +WWW: https://pypi.python.org/pypi/netsnmpagent
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804121652.w3CGqk3O024493>