From owner-svn-ports-all@freebsd.org Fri Jul 6 17:49:22 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 AFA83103FACA; Fri, 6 Jul 2018 17:49:22 +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 629CE8DFC4; Fri, 6 Jul 2018 17:49:22 +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 264C2407B; Fri, 6 Jul 2018 17:49:22 +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 w66HnLsK018483; Fri, 6 Jul 2018 17:49:21 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w66HnLDO018479; Fri, 6 Jul 2018 17:49:21 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201807061749.w66HnLDO018479@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Fri, 6 Jul 2018 17:49:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474025 - in head/textproc: . py-os-api-ref X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: in head/textproc: . py-os-api-ref X-SVN-Commit-Revision: 474025 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.27 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: Fri, 06 Jul 2018 17:49:22 -0000 Author: miwi Date: Fri Jul 6 17:49:21 2018 New Revision: 474025 URL: https://svnweb.freebsd.org/changeset/ports/474025 Log: Sphinx Extensions to support API reference sites in OpenStack. The package is a collection of sphinx stanzas that assist in building an API Reference site for an OpenStack project in RST. RST is great for unstructured English, but displaying semi structured (and repetitive) data in tables is not its strength. This provides tooling to insert semi-structured data describing request and response parameters and status or error messages, and turn those into nice tables. The package also includes a set of styling (and javascript) that is expected to layer on top of a Sphinx theme base. This addition provides a nice set of collapsing sections for REST methods and javascript controls to expand or collapse all sections. WWW: https://docs.openstack.org/os-api-ref/ PR: 228846 Submitted by: freebsd_ports@k-worx.org Sponsored by: iXsystems Inc. Added: head/textproc/py-os-api-ref/ head/textproc/py-os-api-ref/Makefile (contents, props changed) head/textproc/py-os-api-ref/distinfo (contents, props changed) head/textproc/py-os-api-ref/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Fri Jul 6 17:47:34 2018 (r474024) +++ head/textproc/Makefile Fri Jul 6 17:49:21 2018 (r474025) @@ -1331,6 +1331,7 @@ SUBDIR += py-openpyxl SUBDIR += py-openstackdocstheme SUBDIR += py-orange3-text + SUBDIR += py-os-api-ref SUBDIR += py-pager SUBDIR += py-pandocfilters SUBDIR += py-paragrep Added: head/textproc/py-os-api-ref/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-os-api-ref/Makefile Fri Jul 6 17:49:21 2018 (r474025) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= os-api-ref +DISTVERSION= 1.5.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= freebsd_ports@k-worx.org +COMMENT= Sphinx Extensions to support API reference sites in OpenStack + +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} \ + ${PYTHON_PKGNAMEPREFIX}yaml>=3.10:devel/py-yaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sphinx>=1.6.2:textproc/py-sphinx@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}openstackdocstheme>=1.6.2:textproc/py-openstackdocstheme@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/textproc/py-os-api-ref/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-os-api-ref/distinfo Fri Jul 6 17:49:21 2018 (r474025) @@ -0,0 +1,3 @@ +TIMESTAMP = 1527330146 +SHA256 (os-api-ref-1.5.0.tar.gz) = f37ab6cbc9d24421499ec61fe33aa8f79b0d640ce1ef93aaa875394ee300f7c0 +SIZE (os-api-ref-1.5.0.tar.gz) = 89821 Added: head/textproc/py-os-api-ref/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-os-api-ref/pkg-descr Fri Jul 6 17:49:21 2018 (r474025) @@ -0,0 +1,15 @@ +Sphinx Extensions to support API reference sites in OpenStack. + +The package is a collection of sphinx stanzas that assist in building an API +Reference site for an OpenStack project in RST. RST is great for unstructured +English, but displaying semi structured (and repetitive) data in tables is not +its strength. This provides tooling to insert semi-structured data describing +request and response parameters and status or error messages, and turn those +into nice tables. + +The package also includes a set of styling (and javascript) that is expected to +layer on top of a Sphinx theme base. This addition provides a nice set of +collapsing sections for REST methods and javascript controls to expand or +collapse all sections. + +WWW: https://docs.openstack.org/os-api-ref/