git: ef4c0cde6086 - main - devel/py-azure-keyvault-keys: New port

From: Danilo G. Baio <dbaio_at_FreeBSD.org>
Date: Sun, 17 Oct 2021 15:51:33 UTC
The branch main has been updated by dbaio:

URL: https://cgit.FreeBSD.org/ports/commit/?id=ef4c0cde6086e63130fe01d426662ecf6eb43044

commit ef4c0cde6086e63130fe01d426662ecf6eb43044
Author:     Danilo G. Baio <dbaio@FreeBSD.org>
AuthorDate: 2021-10-17 13:43:20 +0000
Commit:     Danilo G. Baio <dbaio@FreeBSD.org>
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 <bsd.port.mk>
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/