diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-02-01 17:40:30 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-02-01 17:40:30 +0000 |
commit | 7d9f78a00da30216e876ff9e2973c225906e980f (patch) | |
tree | a8f3b2e476c083a96f0905571e788f15a2cd05db /dev-python/pyqwt | |
parent | Remove old. (diff) | |
download | gentoo-2-7d9f78a00da30216e876ff9e2973c225906e980f.tar.gz gentoo-2-7d9f78a00da30216e876ff9e2973c225906e980f.tar.bz2 gentoo-2-7d9f78a00da30216e876ff9e2973c225906e980f.zip |
Remove old.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-python/pyqwt')
-rw-r--r-- | dev-python/pyqwt/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/pyqwt/pyqwt-5.2.0.ebuild | 71 |
2 files changed, 5 insertions, 73 deletions
diff --git a/dev-python/pyqwt/ChangeLog b/dev-python/pyqwt/ChangeLog index 271da75dd792..d0c44fa95c88 100644 --- a/dev-python/pyqwt/ChangeLog +++ b/dev-python/pyqwt/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/pyqwt -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqwt/ChangeLog,v 1.24 2014/12/23 09:41:44 mgorny Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqwt/ChangeLog,v 1.25 2015/02/01 17:40:30 mrueg Exp $ + + 01 Feb 2015; Manuel Rüger <mrueg@gentoo.org> -pyqwt-5.2.0.ebuild: + Remove old. 23 Dec 2014; Michał Górny <mgorny@gentoo.org> pyqwt-5.2.0-r1.ebuild: Fix missing ||die. Simplify doc-install. diff --git a/dev-python/pyqwt/pyqwt-5.2.0.ebuild b/dev-python/pyqwt/pyqwt-5.2.0.ebuild deleted file mode 100644 index 930c81b73c4c..000000000000 --- a/dev-python/pyqwt/pyqwt-5.2.0.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqwt/pyqwt-5.2.0.ebuild,v 1.11 2013/06/05 02:52:30 zerochaos Exp $ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*" -PYTHON_EXPORT_PHASE_FUNCTIONS="1" - -inherit flag-o-matic python - -MY_P="PyQwt-${PV}" -DESCRIPTION="Python bindings for the Qwt library" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" -HOMEPAGE="http://pyqwt.sourceforge.net/" - -SLOT="5" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~arm ~ia64 ~x86" -IUSE="doc examples svg" - -RDEPEND=" - x11-libs/qwt:5[svg?] - >=dev-python/PyQt4-4.6.1 - dev-python/numpy" -DEPEND="${DEPEND} - dev-python/sip" - -S="${WORKDIR}/${MY_P}/configure" - -src_configure() { - append-flags -fPIC - - configuration() { - # '-j' option can be buggy. - "$(PYTHON)" configure.py \ - --disable-numarray \ - --disable-numeric \ - -I/usr/include/qwt5 \ - -lqwt || return 1 - - # Avoid stripping of the libraries. - sed -i -e "/strip/d" {iqt5qt4,qwt5qt4}/Makefile || die "sed failed" - } - python_execute_function -s configuration - -} - -src_install() { - python_src_install - - cd .. - dodoc ANNOUNCEMENT-${PV} README - if use doc; then - insinto /usr/share/doc/${PF} - doins -r sphinx/build/* || die - fi - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins qt4examples/* || die - fi -} - -pkg_postinst() { - python_mod_optimize PyQt4/Qwt5 PyQt4/uic/widget-plugins/qwt.py -} - -pkg_postrm() { - python_mod_cleanup PyQt4/Qwt5 PyQt4/uic/widget-plugins/qwt.py -} |