mgorny 14/12/23 09:41:44 Modified: pyqwt-5.2.0-r1.ebuild ChangeLog Log: Fix missing ||die. Simplify doc-install. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.4 dev-python/pyqwt/pyqwt-5.2.0-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqwt/pyqwt-5.2.0-r1.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqwt/pyqwt-5.2.0-r1.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqwt/pyqwt-5.2.0-r1.ebuild?r1=1.3&r2=1.4 Index: pyqwt-5.2.0-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pyqwt/pyqwt-5.2.0-r1.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- pyqwt-5.2.0-r1.ebuild 5 Sep 2013 18:45:58 -0000 1.3 +++ pyqwt-5.2.0-r1.ebuild 23 Dec 2014 09:41:44 -0000 1.4 @@ -1,10 +1,10 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 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-r1.ebuild,v 1.3 2013/09/05 18:45:58 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqwt/pyqwt-5.2.0-r1.ebuild,v 1.4 2014/12/23 09:41:44 mgorny Exp $ EAPI=5 -PYTHON_COMPAT=( python{2_6,2_7} ) +PYTHON_COMPAT=( python2_7 ) inherit flag-o-matic python-r1 @@ -49,7 +49,7 @@ -I/usr/include/qwt5 \ -lqwt \ ${myconf[@]} \ - || return 1 + || die "configure.py failed" # Avoid stripping of the libraries. sed -i -e "/strip/d" {iqt5qt4,qwt5qt4}/Makefile || die "sed failed" @@ -81,13 +81,9 @@ dodoc ANNOUNCEMENT-${PV} README - if use doc; then - insinto /usr/share/doc/${PF} - doins -r sphinx/build/* - fi - + use doc && dodoc -r sphinx/build/. if use examples; then - insinto /usr/share/doc/${PF}/examples - doins qt4examples/* + docinto examples + dodoc -r qt4examples/. fi } 1.24 dev-python/pyqwt/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqwt/ChangeLog?rev=1.24&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqwt/ChangeLog?rev=1.24&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqwt/ChangeLog?r1=1.23&r2=1.24 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pyqwt/ChangeLog,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- ChangeLog 16 Jun 2014 11:34:13 -0000 1.23 +++ ChangeLog 23 Dec 2014 09:41:44 -0000 1.24 @@ -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.23 2014/06/16 11:34:13 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqwt/ChangeLog,v 1.24 2014/12/23 09:41:44 mgorny Exp $ + + 23 Dec 2014; Michał Górny <[email protected]> pyqwt-5.2.0-r1.ebuild: + Fix missing ||die. Simplify doc-install. 16 Jun 2014; Michael Palimaka <[email protected]> metadata.xml: Remove Qt herd.
