summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2013-11-24 13:52:32 +0000
committerJustin Lecher <jlec@gentoo.org>2013-11-24 13:52:32 +0000
commit830a059eaab103691bde242ae5790a90a281f1ae (patch)
treea7e698ebdfcd0dcfae1ea6ebb5eb4aad5ff516fa /dev-python/oct2py
parentStable for ppc64, wrt bug #490382 (diff)
downloadgentoo-2-830a059eaab103691bde242ae5790a90a281f1ae.tar.gz
gentoo-2-830a059eaab103691bde242ae5790a90a281f1ae.tar.bz2
gentoo-2-830a059eaab103691bde242ae5790a90a281f1ae.zip
dev-python/oct2py: Drop old
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'dev-python/oct2py')
-rw-r--r--dev-python/oct2py/ChangeLog5
-rw-r--r--dev-python/oct2py/oct2py-0.3.6.ebuild45
2 files changed, 4 insertions, 46 deletions
diff --git a/dev-python/oct2py/ChangeLog b/dev-python/oct2py/ChangeLog
index d9eadc6ef545..9cb0bd694864 100644
--- a/dev-python/oct2py/ChangeLog
+++ b/dev-python/oct2py/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/oct2py
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/oct2py/ChangeLog,v 1.12 2013/11/24 13:48:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/oct2py/ChangeLog,v 1.13 2013/11/24 13:52:32 jlec Exp $
+
+ 24 Nov 2013; Justin Lecher <jlec@gentoo.org> -oct2py-0.3.6.ebuild:
+ Drop old
24 Nov 2013; Agostino Sarubbo <ago@gentoo.org> oct2py-0.4.0-r1.ebuild:
Stable for x86, wrt bug #488748
diff --git a/dev-python/oct2py/oct2py-0.3.6.ebuild b/dev-python/oct2py/oct2py-0.3.6.ebuild
deleted file mode 100644
index e83de146eae8..000000000000
--- a/dev-python/oct2py/oct2py-0.3.6.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.6.ebuild,v 1.1 2012/11/29 00:26:10 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
-}