diff options
Diffstat (limited to 'dev-python/sphinxcontrib-programoutput')
3 files changed, 53 insertions, 0 deletions
diff --git a/dev-python/sphinxcontrib-programoutput/Manifest b/dev-python/sphinxcontrib-programoutput/Manifest new file mode 100644 index 00000000000..85bd1a09df4 --- /dev/null +++ b/dev-python/sphinxcontrib-programoutput/Manifest @@ -0,0 +1 @@ +DIST sphinxcontrib-programoutput-0.8.tar.gz 14419 SHA256 1776a03124bab87e35576f7f3992fc21d5bb457321b35e6023eb011dbed10a25 SHA512 9ab769f794cf8c47f2d755b343c1326b8335c1f8161294727abada81af189545d549350536d28ac2c5f27cc309330f875b7affef6f997651e3a9f9dfbe6bd174 WHIRLPOOL a6cf5edfd1ba9926af1327e95cc923147cae3c4d297ddb0ae7577f676c6bcb928b396459113cac3226f74446ea38ee9604722da5b4ddeebeb2f6bc6bc0d5fb52 diff --git a/dev-python/sphinxcontrib-programoutput/metadata.xml b/dev-python/sphinxcontrib-programoutput/metadata.xml new file mode 100644 index 00000000000..16650eae0eb --- /dev/null +++ b/dev-python/sphinxcontrib-programoutput/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>python</herd> +<longdescription> + A Sphinx extension to literally insert the output of arbitrary + commands into documents, helping you to keep your command examples + up to date. +</longdescription> +<upstream> + <remote-id type="pypi">sphinxcontrib-programoutput</remote-id> +</upstream> +</pkgmetadata> diff --git a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild new file mode 100644 index 00000000000..96543ce78c1 --- /dev/null +++ b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Extension to sphinx to include program output" +HOMEPAGE="http://sphinxcontrib-programoutput.readthedocs.org/" +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" + +RDEPEND=">=dev-python/sphinx-1.1[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_compile_all() { + use doc && emake -C doc html +} + +python_test() { + py.test || die +} + +python_install_all() { + use doc && local HTML_DOCS=( doc/_build/html ) + distutils-r1_python_install_all +} |