Date: Thu, 5 Apr 2018 04:52:49 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466533 - in head/security: . py-netmiko Message-ID: <201804050452.w354qnOH013292@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Thu Apr 5 04:52:49 2018 New Revision: 466533 URL: https://svnweb.freebsd.org/changeset/ports/466533 Log: New port: security/py-netmiko: Multi-vendor library to simplify SSH connections to network devices PR: 227088 Submitted by: Kai <freebsd_ports@k-worx.org> Added: head/security/py-netmiko/ head/security/py-netmiko/Makefile (contents, props changed) head/security/py-netmiko/distinfo (contents, props changed) head/security/py-netmiko/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Thu Apr 5 04:52:36 2018 (r466532) +++ head/security/Makefile Thu Apr 5 04:52:49 2018 (r466533) @@ -945,6 +945,7 @@ SUBDIR += py-mhash SUBDIR += py-mixbox SUBDIR += py-mnemonic + SUBDIR += py-netmiko SUBDIR += py-ntlm-auth SUBDIR += py-oauth2client SUBDIR += py-oauthlib Added: head/security/py-netmiko/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-netmiko/Makefile Thu Apr 5 04:52:49 2018 (r466533) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= netmiko +DISTVERSION= 2.1.1 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= freebsd_ports@k-worx.org +COMMENT= Multi-vendor library to simplify SSH connections to network devices + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}paramiko>=2.0.0:security/py-paramiko@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}serial>0:comms/py-serial@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scp>=0.10.0:security/py-scp@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}textfsm>0:textproc/py-textfsm@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/security/py-netmiko/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-netmiko/distinfo Thu Apr 5 04:52:49 2018 (r466533) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522350835 +SHA256 (netmiko-2.1.1.tar.gz) = f9051df1895e27b7f245e8a350d9116ae476bec811776a9fe63e827b8dedcf9b +SIZE (netmiko-2.1.1.tar.gz) = 71410 Added: head/security/py-netmiko/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-netmiko/pkg-descr Thu Apr 5 04:52:49 2018 (r466533) @@ -0,0 +1,23 @@ +Multi-vendor library to simplify Paramiko SSH connections to network devices. + +Supports following platforms: + +- Arista vEOS +- Cisco ASA/IOS/IOS-XE/IOS-XR/NX-OS/SG300/WLC +- HP Comware7/ProCurve +- Juniper JunOS +- Linux + +Following platforms are also supported: + +- Alcatel AOS6/AOS8 +- Avaya ERS/VSP +- Brocade VDX/MLX/NetIron +- Calix B6 +- Dell-Force10 and Dell PowerConnect +- Huawei, Mellanox, NetApp cDOT, Palo Alto PAN-OS +- Pluribus, Ruckus ICX/FastIron, Ubiquiti EdgeSwitch, Vyatta VyOS + +There is also experimental support for more platforms not listed here. + +WWW: https://github.com/ktbyers/netmiko
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804050452.w354qnOH013292>