From owner-svn-ports-all@freebsd.org Thu Apr 5 04:52:52 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 48D02F88F69; Thu, 5 Apr 2018 04:52:52 +0000 (UTC) (envelope-from yuri@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 A379C68067; Thu, 5 Apr 2018 04:52:50 +0000 (UTC) (envelope-from yuri@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 6D79E1DF4D; Thu, 5 Apr 2018 04:52:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w354qoam013299; Thu, 5 Apr 2018 04:52:50 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w354qnOH013292; Thu, 5 Apr 2018 04:52:49 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201804050452.w354qnOH013292@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 5 Apr 2018 04:52:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466533 - in head/security: . py-netmiko X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/security: . py-netmiko X-SVN-Commit-Revision: 466533 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, 05 Apr 2018 04:52:52 -0000 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 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 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