From owner-svn-ports-all@freebsd.org Thu Apr 12 16:52:47 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3EF48FA3977; Thu, 12 Apr 2018 16:52:47 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E076673F28; Thu, 12 Apr 2018 16:52:46 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C15FE608A; Thu, 12 Apr 2018 16:52:46 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3CGqki5024496; Thu, 12 Apr 2018 16:52:46 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3CGqk3O024493; Thu, 12 Apr 2018 16:52:46 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201804121652.w3CGqk3O024493@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Thu, 12 Apr 2018 16:52:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467165 - head/net/py-netsnmpagent X-SVN-Group: ports-head X-SVN-Commit-Author: wg X-SVN-Commit-Paths: head/net/py-netsnmpagent X-SVN-Commit-Revision: 467165 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Apr 2018 16:52:47 -0000 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 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