diff --git a/dev-python/numpydoc/Manifest b/dev-python/numpydoc/Manifest index 4bc5cb0..bf4a38c 100644 --- a/dev-python/numpydoc/Manifest +++ b/dev-python/numpydoc/Manifest @@ -1,2 +1,4 @@ DIST numpydoc-0.9.1.tar.gz 27583 BLAKE2B 91764f74b35a740790efa9faade69622d48777fe97a62824b91d78ebf62f806f8c5ec34b1e6c4a4afee6e87358edfa40ca0d316ea41f7ed8501733a51797611b SHA512 85a47ed86823baa3125dde4bb2760ce56f6fed9bb29dc64187dee4101f6344b5065146209f603d50a84a5d9cf0b7f4e5134fc0b495219e68100e05e028b61f2a +DIST numpydoc-0.9.2.tar.gz 27555 BLAKE2B 47b7788c502a26c40889c84563c0b94983655a653fa1f783f47d667021c65c7ffc0d2cdd14a16dfcb982da48642c0b07c949f57336d5b67c897a78815684bcac SHA512 db8f5c3b409ece0a40f1c2ccb06eaa182896d173a5c913c7e6c5780fd021d746c48557fee6f050db8c42cfa41a5021901342bbb93dfd8b8daf7d43fead9cf94a EBUILD numpydoc-0.9.1.ebuild 785 BLAKE2B 244c10bbd2f30286b6106e590c2b65aae3f200d0984930f239c00054ca9c834a392e7f0ec2ef9a3d7be2d4d2ebfc82cef9540ae1342f395d7eb8730164b4b44b SHA512 7f882155669c0df212b5840814479e3acc22dce8bf002fa2b4f29f38cca4959488a373a1cff5991dab21ed9445b565cb287a6c9cc121d9639be722e28d3d5de1 +EBUILD numpydoc-0.9.2.ebuild 785 BLAKE2B 048550a91ee787bb374e78ebe07296540360f4a9d08df5aa8411c93499feb69a033a0ca3e24f4b60aa0ea6f782c625f04d059fb30ff8ce3d409d4a7f84488e78 SHA512 e5366f7424b91f721c03c418ebe6d5dfb4773446d86cd0efd4884bf6b78f5701d51a77bd240aba42d76e37b1f86ba6257c112abe17b4da8b14f56cdf2b3da9f7 diff --git a/dev-python/numpydoc/numpydoc-0.9.2.ebuild b/dev-python/numpydoc/numpydoc-0.9.2.ebuild new file mode 100644 index 0000000..bae8595 --- /dev/null +++ b/dev-python/numpydoc/numpydoc-0.9.2.ebuild @@ -0,0 +1,32 @@ +# 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="Sphinx extension to support docstrings in Numpy format" +HOMEPAGE="https://pypi.org/project/numpydoc/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 ~arm arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + test? ( + dev-python/nose[${PYTHON_USEDEP}] + >=dev-python/matplotlib-1.4.0[${PYTHON_USEDEP}] + )" + +python_test() { + esetup.py test +}