From owner-svn-ports-head@freebsd.org Thu Apr 25 11:09:04 2019 Return-Path: Delivered-To: svn-ports-head@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 544BA1593558; Thu, 25 Apr 2019 11:09:04 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EAC8B774A8; Thu, 25 Apr 2019 11:09:03 +0000 (UTC) (envelope-from tz@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 C403622D01; Thu, 25 Apr 2019 11:09:03 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x3PB93PR042865; Thu, 25 Apr 2019 11:09:03 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x3PB93se042863; Thu, 25 Apr 2019 11:09:03 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201904251109.x3PB93se042863@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Thu, 25 Apr 2019 11:09:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r499986 - head/net-mgmt/py-junos-eznc X-SVN-Group: ports-head X-SVN-Commit-Author: tz X-SVN-Commit-Paths: head/net-mgmt/py-junos-eznc X-SVN-Commit-Revision: 499986 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EAC8B774A8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.975,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Apr 2019 11:09:04 -0000 Author: tz Date: Thu Apr 25 11:09:03 2019 New Revision: 499986 URL: https://svnweb.freebsd.org/changeset/ports/499986 Log: net-mgmt/py-junos-eznc: Upgrade from 2.2.0 to 2.2.1 Changelog: - Handle multiple package-result values from sw.install #864 - Extended support to WR-Based Linux H/W #882 #883 #889 - Fixed issues in Console over SSH #877 - Optimized PyEZ docker image size and minor bug fixes #894 #911 - Fixed JSON serialization for Junos facts #902 - Updated securityzone.yml. Added item zone-security #909 - Fixed runtime error while using Outbound-SSH #915 - Fixed Pyyaml bugs #914 #917 #918 Changelog taken from: https://github.com/Juniper/py-junos-eznc/releases/tag/2.2.1 Also add a newline before NO_ARCH in order to pet portlint PR: 237502 Submitted by: Sergey Akhmatov (maintainer) Approved by: Sergey Akhmatov (maintainer) Modified: head/net-mgmt/py-junos-eznc/Makefile head/net-mgmt/py-junos-eznc/distinfo Modified: head/net-mgmt/py-junos-eznc/Makefile ============================================================================== --- head/net-mgmt/py-junos-eznc/Makefile Thu Apr 25 10:59:36 2019 (r499985) +++ head/net-mgmt/py-junos-eznc/Makefile Thu Apr 25 11:09:03 2019 (r499986) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= junos-eznc -DISTVERSION= 2.2.0 +DISTVERSION= 2.2.1 CATEGORIES= net-mgmt python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,10 +19,11 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.7.1:deve ${PYTHON_PKGNAMEPREFIX}scp>=0.7.0:security/py-scp@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}serial>0:comms/py-serial@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}yaml>=3.10:devel/py-yaml@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}yaml>=5.1:devel/py-yaml@${PY_FLAVOR} USES= python USE_PYTHON= distutils autoplist + NO_ARCH= yes .include Modified: head/net-mgmt/py-junos-eznc/distinfo ============================================================================== --- head/net-mgmt/py-junos-eznc/distinfo Thu Apr 25 10:59:36 2019 (r499985) +++ head/net-mgmt/py-junos-eznc/distinfo Thu Apr 25 11:09:03 2019 (r499986) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536390825 -SHA256 (junos-eznc-2.2.0.tar.gz) = d97d8babf650abca25a096825aa6d88573d340481a0b0793afcdac4a7bee09d3 -SIZE (junos-eznc-2.2.0.tar.gz) = 110373 +TIMESTAMP = 1556017363 +SHA256 (junos-eznc-2.2.1.tar.gz) = 0133a10ba3d46ddf70f0ba6620aa3b92e5533f08c57edd000dbffd8fe60d586d +SIZE (junos-eznc-2.2.1.tar.gz) = 110625