From owner-svn-ports-head@freebsd.org Sun Sep 27 20:53:32 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 5CBA4370697; Sun, 27 Sep 2020 20:53:32 +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 4BzyY81pnsz4Lwq; Sun, 27 Sep 2020 20:53:32 +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 21AB312946; Sun, 27 Sep 2020 20:53:32 +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 08RKrVuD095055; Sun, 27 Sep 2020 20:53:31 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08RKrVwH095053; Sun, 27 Sep 2020 20:53:31 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <202009272053.08RKrVwH095053@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:53:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550353 - head/devel/py-azure-keyvault-administration X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-azure-keyvault-administration X-SVN-Commit-Revision: 550353 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:53:32 -0000 Author: dbaio Date: Sun Sep 27 20:53:31 2020 New Revision: 550353 URL: https://svnweb.freebsd.org/changeset/ports/550353 Log: Add devel/py-azure-keyvault-administration This is the Microsoft Azure KeyVault Administration client library for Python Azure Key Vault helps solve the following problems: - Vault administration (this library) - role-based access control (RBAC), and vault-level backup and restore options - Cryptographic key management (azure-keyvault-keys) - create, store, and control access to the keys used to encrypt your data - Secrets management (azure-keyvault-secrets) - securely store and control access to tokens, passwords, certificates, API keys, and other secrets - Certificate management (azure-keyvault-certificates) - create, manage, and deploy public and private SSL/TLS certificates WWW: https://pypi.org/project/azure-keyvault-administration/ Added: head/devel/py-azure-keyvault-administration/ head/devel/py-azure-keyvault-administration/Makefile (contents, props changed) head/devel/py-azure-keyvault-administration/distinfo (contents, props changed) head/devel/py-azure-keyvault-administration/pkg-descr (contents, props changed) Added: head/devel/py-azure-keyvault-administration/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-azure-keyvault-administration/Makefile Sun Sep 27 20:53:31 2020 (r550353) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= azure-keyvault-administration +DISTVERSION= 4.0.0b1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@FreeBSD.org +COMMENT= Microsoft Azure Key Vault Administration Client Library for Python + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msrest>=0.6.00:net-mgmt/py-msrest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-core>=1.7.0<2.0.0:devel/py-azure-core@${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-keyvault-administration/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-azure-keyvault-administration/distinfo Sun Sep 27 20:53:31 2020 (r550353) @@ -0,0 +1,3 @@ +TIMESTAMP = 1601163556 +SHA256 (azure-keyvault-administration-4.0.0b1.zip) = 0546bd96f491cb1f293249d04077ef2f9d3a27fb52ed460f4bd5d5264717aece +SIZE (azure-keyvault-administration-4.0.0b1.zip) = 95896 Added: head/devel/py-azure-keyvault-administration/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-azure-keyvault-administration/pkg-descr Sun Sep 27 20:53:31 2020 (r550353) @@ -0,0 +1,13 @@ +This is the Microsoft Azure KeyVault Administration client library for Python + +Azure Key Vault helps solve the following problems: +- Vault administration (this library) - role-based access control (RBAC), and + vault-level backup and restore options +- Cryptographic key management (azure-keyvault-keys) - create, store, and + control access to the keys used to encrypt your data +- Secrets management (azure-keyvault-secrets) - securely store and control + access to tokens, passwords, certificates, API keys, and other secrets +- Certificate management (azure-keyvault-certificates) - create, manage, and + deploy public and private SSL/TLS certificates + +WWW: https://pypi.org/project/azure-keyvault-administration/