summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-03-05 13:57:13 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-03-05 13:57:13 +0000
commit3eb4b41a41a9e6735487124f50f52194b99e45d6 (patch)
tree6658e7fb0b26a743dbd435239b4c3bd201e44e91 /dev-python/gnuplot-py
parentconvert to RESTRICT=bindist, bug #541588 (diff)
downloadgentoo-2-3eb4b41a41a9e6735487124f50f52194b99e45d6.tar.gz
gentoo-2-3eb4b41a41a9e6735487124f50f52194b99e45d6.tar.bz2
gentoo-2-3eb4b41a41a9e6735487124f50f52194b99e45d6.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-python/gnuplot-py')
-rw-r--r--dev-python/gnuplot-py/ChangeLog5
-rw-r--r--dev-python/gnuplot-py/gnuplot-py-1.8.ebuild49
2 files changed, 4 insertions, 50 deletions
diff --git a/dev-python/gnuplot-py/ChangeLog b/dev-python/gnuplot-py/ChangeLog
index 50ceb0041bf8..4f73d3b56f70 100644
--- a/dev-python/gnuplot-py/ChangeLog
+++ b/dev-python/gnuplot-py/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/gnuplot-py
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/gnuplot-py/ChangeLog,v 1.50 2015/02/27 11:08:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/gnuplot-py/ChangeLog,v 1.51 2015/03/05 13:57:13 mrueg Exp $
+
+ 05 Mar 2015; Manuel Rüger <mrueg@gentoo.org> -gnuplot-py-1.8.ebuild:
+ Remove old.
27 Feb 2015; Agostino Sarubbo <ago@gentoo.org> gnuplot-py-1.8-r1.ebuild:
Stable for sparc, wrt bug #535328
diff --git a/dev-python/gnuplot-py/gnuplot-py-1.8.ebuild b/dev-python/gnuplot-py/gnuplot-py-1.8.ebuild
deleted file mode 100644
index e10a8a5ff99c..000000000000
--- a/dev-python/gnuplot-py/gnuplot-py-1.8.ebuild
+++ /dev/null
@@ -1,49 +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/gnuplot-py/gnuplot-py-1.8.ebuild,v 1.12 2012/02/23 09:15:51 patrick Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*"
-
-inherit distutils eutils
-
-DESCRIPTION="A python wrapper for Gnuplot"
-HOMEPAGE="http://gnuplot-py.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 ppc ppc64 s390 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="doc"
-
-DEPEND="dev-python/numpy"
-RDEPEND="${DEPEND}
- sci-visualization/gnuplot"
-
-DOCS="ANNOUNCE.txt CREDITS.txt FAQ.txt NEWS.txt TODO.txt"
-PYTHON_MODNAME="Gnuplot"
-
-src_prepare() {
- distutils_src_prepare
- epatch "${FILESDIR}/${PN}-1.7-mousesupport.patch"
- python_convert_shebangs 2 demo.py test.py
-}
-
-src_install() {
- distutils_src_install
-
- delete_examples() {
- rm -f "${ED}$(python_get_sitedir)/Gnuplot/"{demo,test}.py
- }
- python_execute_function -q delete_examples
-
- insinto /usr/share/doc/${PF}/examples
- doins demo.py test.py
-
- if use doc; then
- insinto /usr/share/doc/${PF}/html
- doins -r doc/Gnuplot/* || die "doc install failed"
- fi
-}