diff options
author | tcberner <tcberner@FreeBSD.org> | 2017-09-30 18:50:14 +0800 |
---|---|---|
committer | tcberner <tcberner@FreeBSD.org> | 2017-09-30 18:50:14 +0800 |
commit | 6f5a1bc44c85c5b1cb06a5d2884ebfe04cb69a1a (patch) | |
tree | d116479565e58bb1f3d3e8c4244eb20847c58f96 /net-mgmt | |
parent | e664641f68eb648b536a43ac25a373de6e14eb51 (diff) | |
download | freebsd-ports-gnome-6f5a1bc44c85c5b1cb06a5d2884ebfe04cb69a1a.tar.gz freebsd-ports-gnome-6f5a1bc44c85c5b1cb06a5d2884ebfe04cb69a1a.tar.zst freebsd-ports-gnome-6f5a1bc44c85c5b1cb06a5d2884ebfe04cb69a1a.zip |
New port: net-mgmt/py-adal: Authentication of Azure Active Directory for python apps
PR: 222209
Submitted by: xmj
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/Makefile | 1 | ||||
-rw-r--r-- | net-mgmt/py-adal/Makefile | 23 | ||||
-rw-r--r-- | net-mgmt/py-adal/distinfo | 3 | ||||
-rw-r--r-- | net-mgmt/py-adal/pkg-descr | 5 |
4 files changed, 32 insertions, 0 deletions
diff --git a/net-mgmt/Makefile b/net-mgmt/Makefile index 34dfa1dc820d..a833a832e0ce 100644 --- a/net-mgmt/Makefile +++ b/net-mgmt/Makefile @@ -294,6 +294,7 @@ SUBDIR += portmon SUBDIR += prometheus SUBDIR += pushgateway + SUBDIR += py-adal SUBDIR += py-ipcalc SUBDIR += py-ipy SUBDIR += py-pdagent diff --git a/net-mgmt/py-adal/Makefile b/net-mgmt/py-adal/Makefile new file mode 100644 index 000000000000..94bd6ebc6c2b --- /dev/null +++ b/net-mgmt/py-adal/Makefile @@ -0,0 +1,23 @@ +# Created by: Johannes Jost Meixner <johannes@perceivon.net> +# $FreeBSD$ + +PORTNAME= adal +PORTVERSION= 0.4.7 +CATEGORIES= net-mgmt python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= johannes@perceivon.net +COMMENT= Authentication ot Azure Active Directory for python apps + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=1.5:devel/py-dateutil \ + ${PYTHON_PKGNAMEPREFIX}pyjwt>=1.0.0:www/py-pyjwt \ + ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests + +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> diff --git a/net-mgmt/py-adal/distinfo b/net-mgmt/py-adal/distinfo new file mode 100644 index 000000000000..b920748af86d --- /dev/null +++ b/net-mgmt/py-adal/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505103027 +SHA256 (adal-0.4.7.tar.gz) = 114046ac85d0054791c21b00922f26286822bc6f2ba3716db42e7e57f762ef20 +SIZE (adal-0.4.7.tar.gz) = 28161 diff --git a/net-mgmt/py-adal/pkg-descr b/net-mgmt/py-adal/pkg-descr new file mode 100644 index 000000000000..c0506f323e46 --- /dev/null +++ b/net-mgmt/py-adal/pkg-descr @@ -0,0 +1,5 @@ +The ADAL for Python library makes it easy for python application to +authenticate to Azure Active Directory (AAD) in order to access AAD protected +web resources. + +WWW: https://pypi.python.org/pypi/adal |