dlan 14/10/23 01:41:30 Modified: ChangeLog stgit-0.17.1-r1.ebuild Log: fix build docs twice, bug 526468 (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
Revision Changes Path 1.30 dev-vcs/stgit/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/ChangeLog?rev=1.30&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/ChangeLog?rev=1.30&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/ChangeLog?r1=1.29&r2=1.30 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-vcs/stgit/ChangeLog,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- ChangeLog 22 Oct 2014 14:28:10 -0000 1.29 +++ ChangeLog 23 Oct 2014 01:41:30 -0000 1.30 @@ -1,6 +1,9 @@ # ChangeLog for dev-vcs/stgit # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/stgit/ChangeLog,v 1.29 2014/10/22 14:28:10 dlan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/stgit/ChangeLog,v 1.30 2014/10/23 01:41:30 dlan Exp $ + + 23 Oct 2014; Yixun Lan <[email protected]> stgit-0.17.1-r1.ebuild: + fix build docs twice, bug 526468 22 Oct 2014; Yixun Lan <[email protected]> stgit-0.16-r2.ebuild, stgit-0.17.1-r1.ebuild: 1.3 dev-vcs/stgit/stgit-0.17.1-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/stgit-0.17.1-r1.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/stgit-0.17.1-r1.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/stgit-0.17.1-r1.ebuild?r1=1.2&r2=1.3 Index: stgit-0.17.1-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-vcs/stgit/stgit-0.17.1-r1.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- stgit-0.17.1-r1.ebuild 22 Oct 2014 14:28:10 -0000 1.2 +++ stgit-0.17.1-r1.ebuild 23 Oct 2014 01:41:30 -0000 1.3 @@ -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-vcs/stgit/stgit-0.17.1-r1.ebuild,v 1.2 2014/10/22 14:28:10 dlan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/stgit/stgit-0.17.1-r1.ebuild,v 1.3 2014/10/23 01:41:30 dlan Exp $ EAPI="5" @@ -61,7 +61,10 @@ distutils-r1_python_prepare_all } -python_compile_all() { +src_compile() { + distutils-r1_src_compile + + # bug 526468 if use doc; then emake DESTDIR="${D}" \ htmldir="${EPREFIX}/usr/share/doc/${PF}/html/" \ @@ -70,7 +73,7 @@ fi } -python_install_all() { +src_install() { if use doc; then emake DESTDIR="${D}" \ htmldir="${EPREFIX}/usr/share/doc/${PF}/html/" \ @@ -78,7 +81,7 @@ install-doc install-html fi - distutils-r1_python_install_all + distutils-r1_src_install newbashcomp stgit-completion.bash 'stg' }
