svn commit: r466528 - in head/net-mgmt: . py-junos-eznc

Yuri Victorovich yuri at FreeBSD.org
Thu Apr 5 04:14:36 UTC 2018


Author: yuri
Date: Thu Apr  5 04:14:35 2018
New Revision: 466528
URL: https://svnweb.freebsd.org/changeset/ports/466528

Log:
  New port: net-mgmt/py-junos-eznc: Junos easy automation for non-programmers
  
  PR:		224343
  Submitted by:	Sergey Akhmatov <sergey at akhmatov.ru>

Added:
  head/net-mgmt/py-junos-eznc/
  head/net-mgmt/py-junos-eznc/Makefile   (contents, props changed)
  head/net-mgmt/py-junos-eznc/distinfo   (contents, props changed)
  head/net-mgmt/py-junos-eznc/pkg-descr   (contents, props changed)
Modified:
  head/net-mgmt/Makefile

Modified: head/net-mgmt/Makefile
==============================================================================
--- head/net-mgmt/Makefile	Thu Apr  5 03:44:55 2018	(r466527)
+++ head/net-mgmt/Makefile	Thu Apr  5 04:14:35 2018	(r466528)
@@ -309,6 +309,7 @@
     SUBDIR += py-dnsdiag
     SUBDIR += py-ipcalc
     SUBDIR += py-ipy
+    SUBDIR += py-junos-eznc
     SUBDIR += py-msrest
     SUBDIR += py-msrestazure
     SUBDIR += py-ncclient

Added: head/net-mgmt/py-junos-eznc/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/py-junos-eznc/Makefile	Thu Apr  5 04:14:35 2018	(r466528)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	junos-eznc
+DISTVERSION=	2.1.7
+CATEGORIES=	net-mgmt python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sergey at akhmatov.ru
+COMMENT=	Junos easy automation for non-programmers
+
+LICENSE=	APACHE20
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Jinja2>=2.7.1:devel/py-Jinja2@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}lxml>=3.2.4:devel/py-lxml@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}ncclient>=0.5.3:net-mgmt/py-ncclient@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}netaddr>0:net/py-netaddr@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}paramiko>=1.15.2:security/py-paramiko@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}scp>=0.7.0:security/py-scp@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}serial>0:comms/py-serial@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}yaml>=3.10:devel/py-yaml@${FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/net-mgmt/py-junos-eznc/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/py-junos-eznc/distinfo	Thu Apr  5 04:14:35 2018	(r466528)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1513269828
+SHA256 (junos-eznc-2.1.7.tar.gz) = 95a037cdd05618a189517357e46a06886909a18c7923b628c6ac43d5f54b2912
+SIZE (junos-eznc-2.1.7.tar.gz) = 107811

Added: head/net-mgmt/py-junos-eznc/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/py-junos-eznc/pkg-descr	Thu Apr  5 04:14:35 2018	(r466528)
@@ -0,0 +1,15 @@
+Junos PyEZ is a Python library to remotely manage/automate Junos
+devices.
+
+Junos PyEZ is designed to provide the same capabilities as a user
+would have on the Junos CLI, but in an environment built for
+automation tasks. These capabilities include, but are not limited to:
+- Remote connectivity and management of Junos devices via NETCONF
+- Provide "facts" about the device such as software-version, serial-number, etc
+- Retrieve "operational" or "run-state" information as Tables/Views
+- Retrieve configuration information as Tables/Views
+- Make configuration changes in unstructured and structured ways
+- Provide common utilities for tasks such as secure copy of files and software
+  updates
+
+WWW: https://github.com/Juniper/py-junos-eznc


More information about the svn-ports-head mailing list