From ecdac123787b96ce6649f0f91da12ea6458cc2b1 Mon Sep 17 00:00:00 2001 From: Palica Date: Tue, 23 Jun 2020 22:35:08 +0200 Subject: Updating liguros repo --- dev-python/sphinxcontrib-programoutput/Manifest | 3 ++ .../sphinxcontrib-programoutput/metadata.xml | 39 +++++++++++++++++++ .../sphinxcontrib-programoutput-0.11.ebuild | 45 ++++++++++++++++++++++ .../sphinxcontrib-programoutput-0.15.ebuild | 40 +++++++++++++++++++ .../sphinxcontrib-programoutput-0.16.ebuild | 37 ++++++++++++++++++ 5 files changed, 164 insertions(+) create mode 100644 dev-python/sphinxcontrib-programoutput/Manifest create mode 100644 dev-python/sphinxcontrib-programoutput/metadata.xml create mode 100644 dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.11.ebuild create mode 100644 dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.15.ebuild create mode 100644 dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.16.ebuild (limited to 'dev-python/sphinxcontrib-programoutput') diff --git a/dev-python/sphinxcontrib-programoutput/Manifest b/dev-python/sphinxcontrib-programoutput/Manifest new file mode 100644 index 000000000000..db912d737976 --- /dev/null +++ b/dev-python/sphinxcontrib-programoutput/Manifest @@ -0,0 +1,3 @@ +DIST sphinxcontrib-programoutput-0.11.tar.gz 18267 BLAKE2B 790483b09a00199e4f6a4bb723827001e3dc252b294244ddb5ed3edc78cd8dde41fd0c5cab6d4fb715c85f8c447bf25d690b4f921341769de6d7d1c9dc7f4a71 SHA512 4aa655f8632093035de986fa31291f95e95c4c0f4d1458bb8c8cc077cca73d579b16a8bf103d7b34faafb2171c617c40200008d89186f8ed37a812459f0376cf +DIST sphinxcontrib-programoutput-0.15.tar.gz 21772 BLAKE2B e3bf609315e0298e73bf37db0d7e4d5175121fd0b0c612083427d60ab10cbfc1bf65c572b9ce561b05c9adffe288df7f0b28d6f2daa44af197d22b99ec8d00f4 SHA512 08444118daf09e05c1318ee87a22fcccb7822b99d58d18cf46748aa32338f35519017839c233cd5176a5426cb5f55047039ee28a26f6f4ebd99a35b199c0ff19 +DIST sphinxcontrib-programoutput-0.16.tar.gz 23714 BLAKE2B 1e5136faa89a2f303008fb0e24f99f544464d30f5c0c072db4e2e25cb30bfc3cd4af6157f6c8dc7ddfaffd8f6587435c5947b6981c34daf2d6029736fdc22870 SHA512 6003b8ce43ed468b01f6bda02c6f58c0518b38c43a75f1ed0869dd8df2ee215310246b7feeba90f213547644c1bdb0164cf1f44f44879ac054dcbd6d6f48a69e diff --git a/dev-python/sphinxcontrib-programoutput/metadata.xml b/dev-python/sphinxcontrib-programoutput/metadata.xml new file mode 100644 index 000000000000..6611fbf01c30 --- /dev/null +++ b/dev-python/sphinxcontrib-programoutput/metadata.xml @@ -0,0 +1,39 @@ + + + + + python@gentoo.org + Python + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + proxy-maint@gentoo.org + Proxy Maintainers + + + A Sphinx extension to literally insert the output of arbitrary + commands into documents, helping you to keep your command examples + up to date. + + + sphinxcontrib-programoutput + NextThought/sphinxcontrib-programoutput + + https://github.com/NextThought/sphinxcontrib-programoutput/issues + + + https://raw.githubusercontent.com/NextThought/sphinxcontrib-programoutput/master/CHANGES.rst + + + https://sphinxcontrib-programoutput.readthedocs.org + + + Jason Madden + jason@nextthought.com + + + gentoo-staging + diff --git a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.11.ebuild b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.11.ebuild new file mode 100644 index 000000000000..ef0b07abddcf --- /dev/null +++ b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.11.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_6 ) + +inherit distutils-r1 + +DESCRIPTION="Extension to sphinx to include program output" +HOMEPAGE="https://sphinxcontrib-programoutput.readthedocs.io/en/latest/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" + +IUSE="doc test" +RESTRICT="!test? ( test )" + +RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_compile_all() { + if use doc; then + python_setup + esetup.py build_sphinx + HTML_DOCS=( "${BUILD_DIR}/sphinx/html/." ) + fi +} + +python_test() { + esetup.py pytest || die +} + +python_install_all() { + distutils-r1_python_install_all + find "${ED}" -name '*.pth' -delete || die +} diff --git a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.15.ebuild b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.15.ebuild new file mode 100644 index 000000000000..950fa2dea781 --- /dev/null +++ b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.15.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 + +DESCRIPTION="Extension to sphinx to include program output" +HOMEPAGE=" + https://sphinxcontrib-programoutput.readthedocs.io/en/latest/ + https://pypi.org/project/sphinxcontrib-programoutput/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" + +IUSE="doc test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}] +" +DEPEND=" + ${RDEPEND} + test? ( + dev-python/mock[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest +distutils_enable_sphinx doc + +python_install_all() { + distutils-r1_python_install_all + find "${ED}" -name '*.pth' -delete || die +} diff --git a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.16.ebuild b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.16.ebuild new file mode 100644 index 000000000000..61213711be9a --- /dev/null +++ b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.16.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="Extension to sphinx to include program output" +HOMEPAGE=" + https://github.com/NextThought/sphinxcontrib-programoutput + https://pypi.org/project/sphinxcontrib-programoutput +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] +" +DEPEND=" + ${RDEPEND} + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" +distutils_enable_tests pytest +distutils_enable_sphinx doc + +python_install_all() { + distutils-r1_python_install_all + find "${ED}" -name '*.pth' -delete || die +} -- cgit v1.3.1