add numpydoc-0.9.1

This commit is contained in:
layman 2019-04-30 07:15:15 -07:00
parent 7417772912
commit 0fc92e6efa
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,2 @@
DIST numpydoc-0.9.1.tar.gz 27583 BLAKE2B 91764f74b35a740790efa9faade69622d48777fe97a62824b91d78ebf62f806f8c5ec34b1e6c4a4afee6e87358edfa40ca0d316ea41f7ed8501733a51797611b SHA512 85a47ed86823baa3125dde4bb2760ce56f6fed9bb29dc64187dee4101f6344b5065146209f603d50a84a5d9cf0b7f4e5134fc0b495219e68100e05e028b61f2a
EBUILD numpydoc-0.9.1.ebuild 785 BLAKE2B 244c10bbd2f30286b6106e590c2b65aae3f200d0984930f239c00054ca9c834a392e7f0ec2ef9a3d7be2d4d2ebfc82cef9540ae1342f395d7eb8730164b4b44b SHA512 7f882155669c0df212b5840814479e3acc22dce8bf002fa2b4f29f38cca4959488a373a1cff5991dab21ed9445b565cb287a6c9cc121d9639be722e28d3d5de1

View File

@ -0,0 +1,32 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=(python3_{5,6,7})
inherit distutils-r1
DESCRIPTION="Sphinx extension to support docstrings in Numpy format"
HOMEPAGE="https://github.com/numpy/numpydoc"
SRC_URI="https://github.com/numpy/numpydoc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris"
IUSE=""
RDEPEND="
>=dev-python/sphinx-1.7.5[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
"
# tests connect to various remote sites
RESTRICT="test"
python_test() {
py.test || die
}