From owner-svn-ports-head@freebsd.org Fri Mar 1 22:11:17 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 E11731503724; Fri, 1 Mar 2019 22:11:16 +0000 (UTC) (envelope-from dbaio@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 87F6C93FF7; Fri, 1 Mar 2019 22:11:16 +0000 (UTC) (envelope-from dbaio@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 7A58B22E3F; Fri, 1 Mar 2019 22:11:16 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x21MBGt5091892; Fri, 1 Mar 2019 22:11:16 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x21MBF65091888; Fri, 1 Mar 2019 22:11:15 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201903012211.x21MBF65091888@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Fri, 1 Mar 2019 22:11:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494320 - in head/sysutils: . py-azure-cli-security X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/sysutils: . py-azure-cli-security X-SVN-Commit-Revision: 494320 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 87F6C93FF7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.94)[-0.939,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: Fri, 01 Mar 2019 22:11:17 -0000 Author: dbaio Date: Fri Mar 1 22:11:15 2019 New Revision: 494320 URL: https://svnweb.freebsd.org/changeset/ports/494320 Log: Add sysutils/py-azure-cli-security Microsoft Azure CLI 'Security' Command Module The Azure CLI is a command-line tool providing a great experience for managing Azure resources. The CLI is designed to make scripting easy, query data, support long-running operations, and more. Try it today and find out what the CLI has to offer! WWW: https://pypi.org/project/azure-cli-security/ Added: head/sysutils/py-azure-cli-security/ head/sysutils/py-azure-cli-security/Makefile (contents, props changed) head/sysutils/py-azure-cli-security/distinfo (contents, props changed) head/sysutils/py-azure-cli-security/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Mar 1 22:11:13 2019 (r494319) +++ head/sysutils/Makefile Fri Mar 1 22:11:15 2019 (r494320) @@ -1005,6 +1005,7 @@ SUBDIR += py-azure-cli-resource SUBDIR += py-azure-cli-role SUBDIR += py-azure-cli-search + SUBDIR += py-azure-cli-security SUBDIR += py-azure-cli-servicebus SUBDIR += py-azure-cli-servicefabric SUBDIR += py-azure-cli-signalr Added: head/sysutils/py-azure-cli-security/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-azure-cli-security/Makefile Fri Mar 1 22:11:15 2019 (r494320) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= azure-cli-security +PORTVERSION= 0.1.0 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@FreeBSD.org +COMMENT= Microsoft Azure Command-Line Tools Azure Security Center + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-mgmt-security>=0.1.0:devel/py-azure-mgmt-security@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-core>=0:sysutils/py-azure-cli-core@${PY_FLAVOR} + +USES= azurepy python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/sysutils/py-azure-cli-security/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-azure-cli-security/distinfo Fri Mar 1 22:11:15 2019 (r494320) @@ -0,0 +1,3 @@ +TIMESTAMP = 1551394751 +SHA256 (azure-cli-security-0.1.0.tar.gz) = e93b493e8e87cdc3796f8bf5560af9ad23d0d2470a559a65d213c588ff9ef354 +SIZE (azure-cli-security-0.1.0.tar.gz) = 7254 Added: head/sysutils/py-azure-cli-security/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-azure-cli-security/pkg-descr Fri Mar 1 22:11:15 2019 (r494320) @@ -0,0 +1,8 @@ +Microsoft Azure CLI 'Security' Command Module + +The Azure CLI is a command-line tool providing a great experience for managing +Azure resources. The CLI is designed to make scripting easy, query data, +support long-running operations, and more. Try it today and find out what the +CLI has to offer! + +WWW: https://pypi.org/project/azure-cli-security/