Date: Sat, 2 Jun 2018 19:24:46 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471398 - in head/devel: . py-os-service-types Message-ID: <201806021924.w52JOk2B039633@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Sat Jun 2 19:24:45 2018 New Revision: 471398 URL: https://svnweb.freebsd.org/changeset/ports/471398 Log: 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. Added: head/devel/py-os-service-types/ head/devel/py-os-service-types/Makefile (contents, props changed) head/devel/py-os-service-types/distinfo (contents, props changed) head/devel/py-os-service-types/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jun 2 19:11:05 2018 (r471397) +++ head/devel/Makefile Sat Jun 2 19:24:45 2018 (r471398) @@ -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 Added: head/devel/py-os-service-types/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-os-service-types/Makefile Sat Jun 2 19:24:45 2018 (r471398) @@ -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> Added: head/devel/py-os-service-types/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-os-service-types/distinfo Sat Jun 2 19:24:45 2018 (r471398) @@ -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 Added: head/devel/py-os-service-types/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-os-service-types/pkg-descr Sat Jun 2 19:24:45 2018 (r471398) @@ -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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806021924.w52JOk2B039633>