diff options
author | Ian Delaney <idella4@gentoo.org> | 2014-12-22 10:57:03 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2014-12-22 10:57:03 +0000 |
commit | 7870c44a0f5d8970925fd0341cf5a27b56812ab7 (patch) | |
tree | fe373bb0d2aabd50a050f87659c006cd149bdfd2 /dev-python | |
parent | Bump authenticate to 1.3.2.11 (diff) | |
download | gentoo-2-7870c44a0f5d8970925fd0341cf5a27b56812ab7.tar.gz gentoo-2-7870c44a0f5d8970925fd0341cf5a27b56812ab7.tar.bz2 gentoo-2-7870c44a0f5d8970925fd0341cf5a27b56812ab7.zip |
bump; drop pypy due to failure of support by new rdep, test phase updated accordingly, fixes Bug #529720
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/numpydoc/ChangeLog | 4 | ||||
-rw-r--r-- | dev-python/numpydoc/numpydoc-0.5.ebuild | 32 |
2 files changed, 34 insertions, 2 deletions
diff --git a/dev-python/numpydoc/ChangeLog b/dev-python/numpydoc/ChangeLog index 5d0db25e910e..f902189037d8 100644 --- a/dev-python/numpydoc/ChangeLog +++ b/dev-python/numpydoc/ChangeLog @@ -1,12 +1,12 @@ # ChangeLog for dev-python/numpydoc # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/numpydoc/ChangeLog,v 1.7 2014/12/08 11:13:39 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/numpydoc/ChangeLog,v 1.8 2014/12/22 10:57:03 idella4 Exp $ 08 Dec 2014; Agostino Sarubbo <ago@gentoo.org> numpydoc-0.4-r1.ebuild: Stable for ppc64, wrt bug #530592 22 Jul 2014; Ian Delaney <idella4@gentoo.org> numpydoc-0.4-r1.ebuild: - bump; drop py2.6 add py3 pypy + drop py2.6 add py3 pypy 16 Feb 2014; Mike Frysinger <vapier@gentoo.org> numpydoc-0.4-r1.ebuild: Mark arm stable. diff --git a/dev-python/numpydoc/numpydoc-0.5.ebuild b/dev-python/numpydoc/numpydoc-0.5.ebuild new file mode 100644 index 000000000000..775c1756237c --- /dev/null +++ b/dev-python/numpydoc/numpydoc-0.5.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/numpydoc/numpydoc-0.5.ebuild,v 1.1 2014/12/22 10:57:03 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 vcs-snapshot + +DESCRIPTION="Sphinx extension to support docstrings in Numpy format" +HOMEPAGE="https://pypi.python.org/pypi/numpydoc" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="test" + +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}]" +DEPEND="test? ( ${RDEPEND} + dev-python/nose[${PYTHON_USEDEP}] + >=dev-python/matplotlib-1.4.0[${PYTHON_USEDEP}] )" + +python_prepare_all() { + chmod -R a+r *.egg-info || die + distutils-r1_python_prepare_all +} + +python_test() { + nosetests || die "Testing failed with ${EPYTHON}" +} |