From nobody Sun Oct 17 15:51:33 2021 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 0C6CF17F57AD; Sun, 17 Oct 2021 15:51:34 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HXPd16pY9z3GQd; Sun, 17 Oct 2021 15:51:33 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CB26F7CAE; Sun, 17 Oct 2021 15:51:33 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19HFpXLm076940; Sun, 17 Oct 2021 15:51:33 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19HFpXtZ076939; Sun, 17 Oct 2021 15:51:33 GMT (envelope-from git) Date: Sun, 17 Oct 2021 15:51:33 GMT Message-Id: <202110171551.19HFpXtZ076939@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: "Danilo G. Baio" Subject: git: ef4c0cde6086 - main - devel/py-azure-keyvault-keys: New port List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: dbaio X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: ef4c0cde6086e63130fe01d426662ecf6eb43044 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by dbaio: URL: https://cgit.FreeBSD.org/ports/commit/?id=ef4c0cde6086e63130fe01d426662ecf6eb43044 commit ef4c0cde6086e63130fe01d426662ecf6eb43044 Author: Danilo G. Baio AuthorDate: 2021-10-17 13:43:20 +0000 Commit: Danilo G. Baio CommitDate: 2021-10-17 15:51:15 +0000 devel/py-azure-keyvault-keys: New port Azure Key Vault Keys client library for Python Azure Key Vault helps solve the following problems: - Cryptographic key management (this library) - 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 - Vault administration (azure-keyvault-administration) - role-based access control (RBAC), and vault-level backup and restore options WWW: https://pypi.org/project/azure-keyvault-keys/ --- devel/Makefile | 1 + devel/py-azure-keyvault-keys/Makefile | 23 +++++++++++++++++++++++ devel/py-azure-keyvault-keys/distinfo | 3 +++ devel/py-azure-keyvault-keys/pkg-descr | 13 +++++++++++++ 4 files changed, 40 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index 9d2d1770db51..8166ee661309 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4167,6 +4167,7 @@ SUBDIR += py-azure-identity SUBDIR += py-azure-keyvault SUBDIR += py-azure-keyvault-administration + SUBDIR += py-azure-keyvault-keys SUBDIR += py-azure-loganalytics SUBDIR += py-azure-mgmt-advisor SUBDIR += py-azure-mgmt-apimanagement diff --git a/devel/py-azure-keyvault-keys/Makefile b/devel/py-azure-keyvault-keys/Makefile new file mode 100644 index 000000000000..98bd3635910d --- /dev/null +++ b/devel/py-azure-keyvault-keys/Makefile @@ -0,0 +1,23 @@ +PORTNAME= azure-keyvault-keys +DISTVERSION= 4.4.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@FreeBSD.org +COMMENT= Microsoft Azure Key Vault Keys Client Library for Python + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msrest>=0.6.21:net-mgmt/py-msrest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-common>=1.1:www/py-azure-common@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cryptography>=2.1.4:security/py-cryptography@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.12:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-core>=1.7.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 diff --git a/devel/py-azure-keyvault-keys/distinfo b/devel/py-azure-keyvault-keys/distinfo new file mode 100644 index 000000000000..125c05a4fcb1 --- /dev/null +++ b/devel/py-azure-keyvault-keys/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1634477682 +SHA256 (azure-keyvault-keys-4.4.0.zip) = 7792ad0d5e63ad9eafa68bdce5de91b3ffcc7ca7a6afdc576785e6a2793caed0 +SIZE (azure-keyvault-keys-4.4.0.zip) = 403611 diff --git a/devel/py-azure-keyvault-keys/pkg-descr b/devel/py-azure-keyvault-keys/pkg-descr new file mode 100644 index 000000000000..e06019115ac0 --- /dev/null +++ b/devel/py-azure-keyvault-keys/pkg-descr @@ -0,0 +1,13 @@ +Azure Key Vault Keys client library for Python + +Azure Key Vault helps solve the following problems: + - Cryptographic key management (this library) - 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 + - Vault administration (azure-keyvault-administration) - role-based access + control (RBAC), and vault-level backup and restore options + +WWW: https://pypi.org/project/azure-keyvault-keys/