Python library for consuming OpenStack sevice-types-authority data

The OpenStack Service Types Authority contains information about official
OpenStack services and their historical service-type aliases.

The data is in JSON and the latest data should always be used. This simple
library exists to allow for easy consumption of the data, along with a built-in
version of the data to use in case network access is for some reason not
possible and local caching of the fetched data.

WWW: https://pypi.org/project/os-service-types/

PR:		228682
Submitted by:	freebsd_ports@k-worx.org
Sponsored by:	iXsystems Inc.
This commit is contained in:
Martin Wilke 2018-06-02 19:24:45 +00:00
parent f81188ff6e
commit 2d8424ec3a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=471398
4 changed files with 38 additions and 0 deletions

View File

@ -4730,6 +4730,7 @@
SUBDIR += py-ordereddict
SUBDIR += py-os-brick
SUBDIR += py-os-client-config
SUBDIR += py-os-service-types
SUBDIR += py-os-vif
SUBDIR += py-os-win
SUBDIR += py-osc-lib

View File

@ -0,0 +1,23 @@
# $FreeBSD$
PORTNAME= os-service-types
DISTVERSION= 1.2.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= freebsd_ports@k-worx.org
COMMENT= Python library for consuming OpenStack service-types-authority data
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR}
USES= python
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1527333093
SHA256 (os-service-types-1.2.0.tar.gz) = b08fb4ec1249d313afea2728fa4db916b1907806364126fe46de482671203111
SIZE (os-service-types-1.2.0.tar.gz) = 21485

View File

@ -0,0 +1,11 @@
Python library for consuming OpenStack sevice-types-authority data
The OpenStack Service Types Authority contains information about official
OpenStack services and their historical service-type aliases.
The data is in JSON and the latest data should always be used. This simple
library exists to allow for easy consumption of the data, along with a built-in
version of the data to use in case network access is for some reason not
possible and local caching of the fetched data.
WWW: https://pypi.org/project/os-service-types/