From owner-svn-ports-all@freebsd.org Fri Mar 1 22:09:11 2019 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 EB81C150353B; Fri, 1 Mar 2019 22:09:10 +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 907F593E7D; Fri, 1 Mar 2019 22:09:10 +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 821B922DFE; Fri, 1 Mar 2019 22:09:10 +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 x21M9A6f091462; Fri, 1 Mar 2019 22:09:10 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x21M994h091456; Fri, 1 Mar 2019 22:09:09 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201903012209.x21M994h091456@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:09:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494318 - in head/devel: . py-azure-mgmt-security X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/devel: . py-azure-mgmt-security X-SVN-Commit-Revision: 494318 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 907F593E7D 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_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.94)[-0.939,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Fri, 01 Mar 2019 22:09:11 -0000 Author: dbaio Date: Fri Mar 1 22:09:09 2019 New Revision: 494318 URL: https://svnweb.freebsd.org/changeset/ports/494318 Log: Add devel/py-azure-mgmt-security This is the Microsoft Azure Secutiry Center Management Client Library. Azure Resource Manager (ARM) is the next generation of management APIs that replace the old Azure Service Management (ASM). WWW: https://pypi.org/project/azure-mgmt-security/ Added: head/devel/py-azure-mgmt-security/ head/devel/py-azure-mgmt-security/Makefile (contents, props changed) head/devel/py-azure-mgmt-security/distinfo (contents, props changed) head/devel/py-azure-mgmt-security/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Mar 1 22:05:31 2019 (r494317) +++ head/devel/Makefile Fri Mar 1 22:09:09 2019 (r494318) @@ -4392,6 +4392,7 @@ SUBDIR += py-azure-mgmt-reservations SUBDIR += py-azure-mgmt-resource SUBDIR += py-azure-mgmt-search + SUBDIR += py-azure-mgmt-security SUBDIR += py-azure-mgmt-servicebus SUBDIR += py-azure-mgmt-servicefabric SUBDIR += py-azure-mgmt-signalr Added: head/devel/py-azure-mgmt-security/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-azure-mgmt-security/Makefile Fri Mar 1 22:09:09 2019 (r494318) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= azure-mgmt-security +PORTVERSION= 0.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@FreeBSD.org +COMMENT= Microsoft Azure Secutiry Center Management Client Library for Python + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msrest>=0.5.0:net-mgmt/py-msrest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}msrestazure>=0.4.32:net-mgmt/py-msrestazure@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-common>=1.1:www/py-azure-common@${PY_FLAVOR} + +USES= azurepy python zip +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-azure-mgmt-security/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-azure-mgmt-security/distinfo Fri Mar 1 22:09:09 2019 (r494318) @@ -0,0 +1,3 @@ +TIMESTAMP = 1551394950 +SHA256 (azure-mgmt-security-0.1.0.zip) = 1d42ced0690d10ebe5f83bf20be835e1a424d81463e59857cc402f218e3164b1 +SIZE (azure-mgmt-security-0.1.0.zip) = 150836 Added: head/devel/py-azure-mgmt-security/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-azure-mgmt-security/pkg-descr Fri Mar 1 22:09:09 2019 (r494318) @@ -0,0 +1,6 @@ +This is the Microsoft Azure Secutiry Center Management Client Library. + +Azure Resource Manager (ARM) is the next generation of management APIs that +replace the old Azure Service Management (ASM). + +WWW: https://pypi.org/project/azure-mgmt-security/