monsieurp 14/12/17 23:25:56 Modified: ChangeLog fusil-1.5.ebuild Log: Replaced && and || combo by an if else then statement. Fix #513268. (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.12 dev-python/fusil/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fusil/ChangeLog?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fusil/ChangeLog?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fusil/ChangeLog?r1=1.11&r2=1.12 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/fusil/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ChangeLog 10 Aug 2014 21:11:34 -0000 1.11 +++ ChangeLog 17 Dec 2014 23:25:56 -0000 1.12 @@ -1,6 +1,9 @@ # ChangeLog for dev-python/fusil # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/fusil/ChangeLog,v 1.11 2014/08/10 21:11:34 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/fusil/ChangeLog,v 1.12 2014/12/17 23:25:56 monsieurp Exp $ + + 17 Dec 2014; Patrice Clement <[email protected]> fusil-1.5.ebuild: + Replaced && and || combo by an if else then statement. Fix #513268. 10 Aug 2014; Sergei Trofimovich <[email protected]> fusil-1.5.ebuild: QA: drop trailing '.' from DESCRIPTION 1.4 dev-python/fusil/fusil-1.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fusil/fusil-1.5.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fusil/fusil-1.5.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fusil/fusil-1.5.ebuild?r1=1.3&r2=1.4 Index: fusil-1.5.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/fusil/fusil-1.5.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- fusil-1.5.ebuild 10 Aug 2014 21:11:34 -0000 1.3 +++ fusil-1.5.ebuild 17 Dec 2014 23:25:56 -0000 1.4 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/fusil/fusil-1.5.ebuild,v 1.3 2014/08/10 21:11:34 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/fusil/fusil-1.5.ebuild,v 1.4 2014/12/17 23:25:56 monsieurp Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) @@ -20,10 +20,12 @@ RDEPEND=">=dev-python/python-ptrace-0.7[${PYTHON_USEDEP}]" python_compile_all() { - use doc && emake -C doc RST2HTML="rst2html.py" || die "Generation of documentation failed" + if use doc; then + emake -C doc RST2HTML="rst2html.py" || die "Generation of documentation failed" + fi } -python_install_all(){ +python_install_all() { use doc && local HTML_DOCS=( doc/. ) use examples && local EXAMPLES=( examples/. ) distutils-r1_python_install_all
