From owner-svn-ports-all@freebsd.org Sat Jun 2 19:24:47 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8CFC9FDB9CB; Sat, 2 Jun 2018 19:24:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3BEBF73788; Sat, 2 Jun 2018 19:24:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1CDAE1409E; Sat, 2 Jun 2018 19:24:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w52JOkxt039638; Sat, 2 Jun 2018 19:24:46 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w52JOk2B039633; Sat, 2 Jun 2018 19:24:46 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201806021924.w52JOk2B039633@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sat, 2 Jun 2018 19:24:46 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: in head/devel: . py-os-service-types X-SVN-Commit-Revision: 471398 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Jun 2018 19:24:47 -0000 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 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/