summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Bogorodskiy <novel@FreeBSD.org>2016-01-14 00:06:55 +0000
committerRoman Bogorodskiy <novel@FreeBSD.org>2016-01-14 00:06:55 +0000
commit802f6d8ff0ce19d3375494f736b5162cdc26b12b (patch)
treece1e3e34ca07d3590114c1e7d8edcfb6470b0d6c
parentDocument Kibana 4.x XSS vulnerabilty (diff)
New port: devel/py-keystoneauth1
This package contains tools for authenticating to an OpenStack-based cloud. These tools include: - Authentication plugins (password, token, and federation based) - Discovery mechanisms to determine API version support - A session that is used to maintain client settings across requests (based on the requests Python library) WWW: http://docs.openstack.org/developer/keystoneauth/api/keystoneauth1.html Differential Revision: D4906 Submitted by: Davide D'Amico <dave@gufi.org> Reviewed by: koobs
Notes
Notes: svn path=/head/; revision=406083
-rw-r--r--devel/Makefile1
-rw-r--r--devel/py-keystoneauth1/Makefile27
-rw-r--r--devel/py-keystoneauth1/distinfo2
-rw-r--r--devel/py-keystoneauth1/pkg-descr9
4 files changed, 39 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 4ad0d9fae35e..42bc1f07472c 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4114,6 +4114,7 @@
SUBDIR += py-kaptan
SUBDIR += py-kayako
SUBDIR += py-kazoo
+ SUBDIR += py-keystoneauth1
SUBDIR += py-kid
SUBDIR += py-kjbuckets
SUBDIR += py-kqueue
diff --git a/devel/py-keystoneauth1/Makefile b/devel/py-keystoneauth1/Makefile
new file mode 100644
index 000000000000..348948ae9c46
--- /dev/null
+++ b/devel/py-keystoneauth1/Makefile
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME= keystoneauth1
+PORTVERSION= 2.1.0
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= dave@gufi.org
+COMMENT= Authentication Library for OpenStack Identity
+
+LICENSE= APACHE20
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.6:${PORTSDIR}/devel/py-pbr
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argparse>0:${PORTSDIR}/devel/py-argparse \
+ ${PYTHON_PKGNAMEPREFIX}iso8601>0:${PORTSDIR}/devel/py-iso8601 \
+ ${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests \
+ ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \
+ ${PYTHON_PKGNAMEPREFIX}stevedore>0:${PORTSDIR}/devel/py-stevedore
+
+NO_ARCH= yes
+
+USES= python
+USE_PYTHON= autoplist distutils
+
+.include <bsd.port.mk>
diff --git a/devel/py-keystoneauth1/distinfo b/devel/py-keystoneauth1/distinfo
new file mode 100644
index 000000000000..7596d1537182
--- /dev/null
+++ b/devel/py-keystoneauth1/distinfo
@@ -0,0 +1,2 @@
+SHA256 (keystoneauth1-2.1.0.tar.gz) = 3990130416f85a252896fd36f895ab4d0b692b782801d7e4e522b862dbf84e69
+SIZE (keystoneauth1-2.1.0.tar.gz) = 144424
diff --git a/devel/py-keystoneauth1/pkg-descr b/devel/py-keystoneauth1/pkg-descr
new file mode 100644
index 000000000000..aef8c2257138
--- /dev/null
+++ b/devel/py-keystoneauth1/pkg-descr
@@ -0,0 +1,9 @@
+This package contains tools for authenticating to an OpenStack-based cloud.
+These tools include:
+
+- Authentication plugins (password, token, and federation based)
+- Discovery mechanisms to determine API version support
+- A session that is used to maintain client settings across requests
+ (based on the requests Python library)
+
+WWW: http://docs.openstack.org/developer/keystoneauth/api/keystoneauth1.html