diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2012-12-11 18:25:34 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2012-12-11 18:25:34 +0000 |
commit | 387039388952f7644e350eb0c3c44c95627180c4 (patch) | |
tree | 8b6eaf04aef11660e4d9858893cab5b10ee28ac3 /dev-python/oct2py | |
parent | get udevdir using udev.eclass , to support virtual/udev (diff) | |
download | gentoo-2-387039388952f7644e350eb0c3c44c95627180c4.tar.gz gentoo-2-387039388952f7644e350eb0c3c44c95627180c4.tar.bz2 gentoo-2-387039388952f7644e350eb0c3c44c95627180c4.zip |
Removed old
(Portage version: 2.2.01.21418-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Diffstat (limited to 'dev-python/oct2py')
-rw-r--r-- | dev-python/oct2py/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/oct2py/oct2py-0.3.2.ebuild | 41 | ||||
-rw-r--r-- | dev-python/oct2py/oct2py-0.3.4.ebuild | 45 |
3 files changed, 5 insertions, 87 deletions
diff --git a/dev-python/oct2py/ChangeLog b/dev-python/oct2py/ChangeLog index 7bec4df93a2e..d11c0d07740c 100644 --- a/dev-python/oct2py/ChangeLog +++ b/dev-python/oct2py/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/oct2py # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/oct2py/ChangeLog,v 1.5 2012/11/29 00:26:10 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/oct2py/ChangeLog,v 1.6 2012/12/11 18:25:34 bicatali Exp $ + + 11 Dec 2012; Sébastien Fabbro <bicatali@gentoo.org> -oct2py-0.3.2.ebuild, + -oct2py-0.3.4.ebuild: + Removed old *oct2py-0.3.6 (29 Nov 2012) diff --git a/dev-python/oct2py/oct2py-0.3.2.ebuild b/dev-python/oct2py/oct2py-0.3.2.ebuild deleted file mode 100644 index da23b269d3ba..000000000000 --- a/dev-python/oct2py/oct2py-0.3.2.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/oct2py/oct2py-0.3.2.ebuild,v 1.3 2012/08/09 08:16:43 patrick Exp $ - -EAPI=4 - -SUPPORT_PYTHON_ABIS=1 -DISTUTILS_SRC_TEST="nosetests" -RESTRICT_PYTHON_ABIS="2.5 *-jython *-pypy-*" - -inherit distutils - -DESCRIPTION="Python to GNU Octave bridge" -HOMEPAGE="http://pypi.python.org/pypi/oct2py" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc examples" - -RDEPEND="sci-libs/scipy - sci-mathematics/octave" -DEPEND="${RDEPEND} - doc? ( dev-python/sphinx )" - -src_compile() { - distutils_src_compile - if use doc; then - PYTHONPATH=build-"$(PYTHON -f --ABI)"/lib sphinx-build doc html || die - fi -} - -src_install() { - distutils_src_install - use doc && dohtml -r html/* - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r example/* - fi -} diff --git a/dev-python/oct2py/oct2py-0.3.4.ebuild b/dev-python/oct2py/oct2py-0.3.4.ebuild deleted file mode 100644 index def0965338c0..000000000000 --- a/dev-python/oct2py/oct2py-0.3.4.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/oct2py/oct2py-0.3.4.ebuild,v 1.1 2012/08/20 18:17:21 bicatali Exp $ - -EAPI=4 - -SUPPORT_PYTHON_ABIS=1 -DISTUTILS_SRC_TEST="nosetests" -RESTRICT_PYTHON_ABIS="2.5 *-jython *-pypy-*" - -inherit distutils - -DESCRIPTION="Python to GNU Octave bridge" -HOMEPAGE="http://pypi.python.org/pypi/oct2py" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc examples" - -RDEPEND="sci-libs/scipy - sci-mathematics/octave" -DEPEND="${RDEPEND} - doc? ( dev-python/sphinx )" - -src_compile() { - distutils_src_compile - if use doc; then - PYTHONPATH="build-$(PYTHON -f --ABI)/lib" sphinx-build doc html || die - fi -} - -src_install() { - distutils_src_install - delete_tests() { - rm -r "${ED}$(python_get_sitedir)/oct2py/tests" - } - python_execute_function -q delete_tests - use doc && dohtml -r html/* - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r example/* - fi -} |