Date: Tue, 21 Apr 2020 20:04:56 +0000 (UTC) From: "Danilo G. Baio" <dbaio@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r532405 - in head/devel: . py-azure-mgmt-core Message-ID: <202004212004.03LK4usE019950@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dbaio Date: Tue Apr 21 20:04:56 2020 New Revision: 532405 URL: https://svnweb.freebsd.org/changeset/ports/532405 Log: Add devel/py-azure-mgmt-core: Microsoft Azure Management Core Library for Python Azure management core library defines extensions to Azure Core that are specific to ARM (Azure Resource Management) needed when you use client libraries. As an end user, you don't need to manually install azure-mgmt-core because it will be installed automatically when you install other SDKs. WWW: https://pypi.org/project/azure-mgmt-core/ Added: head/devel/py-azure-mgmt-core/ head/devel/py-azure-mgmt-core/Makefile (contents, props changed) head/devel/py-azure-mgmt-core/distinfo (contents, props changed) head/devel/py-azure-mgmt-core/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Apr 21 19:48:33 2020 (r532404) +++ head/devel/Makefile Tue Apr 21 20:04:56 2020 (r532405) @@ -4102,6 +4102,7 @@ SUBDIR += py-azure-mgmt-containerinstance SUBDIR += py-azure-mgmt-containerregistry SUBDIR += py-azure-mgmt-containerservice + SUBDIR += py-azure-mgmt-core SUBDIR += py-azure-mgmt-cosmosdb SUBDIR += py-azure-mgmt-datalake-analytics SUBDIR += py-azure-mgmt-datalake-store Added: head/devel/py-azure-mgmt-core/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-azure-mgmt-core/Makefile Tue Apr 21 20:04:56 2020 (r532405) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= azure-mgmt-core +DISTVERSION= 1.0.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@FreeBSD.org +COMMENT= Microsoft Azure Management Core Library for Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-core>=1.4.0<2.0.0:devel/py-azure-core@${PY_FLAVOR} + +USES= azurepy python:3.6+ zip +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-azure-mgmt-core/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-azure-mgmt-core/distinfo Tue Apr 21 20:04:56 2020 (r532405) @@ -0,0 +1,3 @@ +TIMESTAMP = 1587492949 +SHA256 (azure-mgmt-core-1.0.0.zip) = 510faf49a10daec8346cc086143d8e667ef3b4f8c8022a8e710091027631a55e +SIZE (azure-mgmt-core-1.0.0.zip) = 43384 Added: head/devel/py-azure-mgmt-core/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-azure-mgmt-core/pkg-descr Tue Apr 21 20:04:56 2020 (r532405) @@ -0,0 +1,10 @@ +This is the Microsoft Azure Management Core Library for Python + +Azure management core library defines extensions to Azure Core that are +specific to ARM (Azure Resource Management) needed when you use client +libraries. + +As an end user, you don't need to manually install azure-mgmt-core because it +will be installed automatically when you install other SDKs. + +WWW: https://pypi.org/project/azure-mgmt-core/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004212004.03LK4usE019950>