From owner-svn-ports-head@freebsd.org Sun Sep 27 20:52:40 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7C5E8370688; Sun, 27 Sep 2020 20:52:40 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4BzyX82lJLz4Lqf; Sun, 27 Sep 2020 20:52:40 +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 416D112BA7; Sun, 27 Sep 2020 20:52:40 +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 08RKqecR094749; Sun, 27 Sep 2020 20:52:40 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08RKqdpG094747; Sun, 27 Sep 2020 20:52:39 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <202009272052.08RKqdpG094747@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sun, 27 Sep 2020 20:52:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550351 - head/devel/py-azure-appconfiguration X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-azure-appconfiguration X-SVN-Commit-Revision: 550351 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 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: Sun, 27 Sep 2020 20:52:40 -0000 Author: dbaio Date: Sun Sep 27 20:52:39 2020 New Revision: 550351 URL: https://svnweb.freebsd.org/changeset/ports/550351 Log: Add devel/py-azure-appconfiguration: Microsoft App Configuration Data Library for Python Azure App Configuration is a managed service that helps developers centralize their application configurations simply and securely. Modern programs, especially programs running in a cloud, generally have many components that are distributed in nature. Spreading configuration settings across these components can lead to hard-to-troubleshoot errors during an application deployment. Use App Configuration to securely store all the settings for your application in one place. WWW: https://pypi.org/project/azure-appconfiguration/ Added: head/devel/py-azure-appconfiguration/ head/devel/py-azure-appconfiguration/Makefile (contents, props changed) head/devel/py-azure-appconfiguration/distinfo (contents, props changed) head/devel/py-azure-appconfiguration/pkg-descr (contents, props changed) Added: head/devel/py-azure-appconfiguration/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-azure-appconfiguration/Makefile Sun Sep 27 20:52:39 2020 (r550351) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= azure-appconfiguration +DISTVERSION= 1.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@FreeBSD.org +COMMENT= Microsoft App Configuration Data Library for Python + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msrest>=0.6.10:net-mgmt/py-msrest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-core>=0:devel/py-azure-core@${PY_FLAVOR} + +USES= azurepy python zip +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-azure-appconfiguration/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-azure-appconfiguration/distinfo Sun Sep 27 20:52:39 2020 (r550351) @@ -0,0 +1,3 @@ +TIMESTAMP = 1601163139 +SHA256 (azure-appconfiguration-1.1.0.zip) = 27b9ea9b1f3d6fe83231e2203c27a81831ea576dd2be00cebedf2244f7286057 +SIZE (azure-appconfiguration-1.1.0.zip) = 77210 Added: head/devel/py-azure-appconfiguration/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-azure-appconfiguration/pkg-descr Sun Sep 27 20:52:39 2020 (r550351) @@ -0,0 +1,10 @@ +Azure App Configuration is a managed service that helps developers centralize +their application configurations simply and securely. + +Modern programs, especially programs running in a cloud, generally have many +components that are distributed in nature. Spreading configuration settings +across these components can lead to hard-to-troubleshoot errors during an +application deployment. Use App Configuration to securely store all the +settings for your application in one place. + +WWW: https://pypi.org/project/azure-appconfiguration/