summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYixun Lan <dlan@gentoo.org>2014-10-23 01:41:30 +0000
committerYixun Lan <dlan@gentoo.org>2014-10-23 01:41:30 +0000
commit585ab706ee05e99961d8809eef41e409a3c036f5 (patch)
tree3c7e0e698a5d9952aa2b75e8b29601be285077e1 /dev-vcs/stgit
parentclean old pypy impl (diff)
downloadgentoo-2-585ab706ee05e99961d8809eef41e409a3c036f5.tar.gz
gentoo-2-585ab706ee05e99961d8809eef41e409a3c036f5.tar.bz2
gentoo-2-585ab706ee05e99961d8809eef41e409a3c036f5.zip
fix build docs twice, bug 526468
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
Diffstat (limited to 'dev-vcs/stgit')
-rw-r--r--dev-vcs/stgit/ChangeLog5
-rw-r--r--dev-vcs/stgit/stgit-0.17.1-r1.ebuild11
2 files changed, 11 insertions, 5 deletions
diff --git a/dev-vcs/stgit/ChangeLog b/dev-vcs/stgit/ChangeLog
index 3b1ed336b7e5..61a271f961d4 100644
--- a/dev-vcs/stgit/ChangeLog
+++ b/dev-vcs/stgit/ChangeLog
@@ -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 <dlan@gentoo.org> stgit-0.17.1-r1.ebuild:
+ fix build docs twice, bug 526468
22 Oct 2014; Yixun Lan <dlan@gentoo.org> stgit-0.16-r2.ebuild,
stgit-0.17.1-r1.ebuild:
diff --git a/dev-vcs/stgit/stgit-0.17.1-r1.ebuild b/dev-vcs/stgit/stgit-0.17.1-r1.ebuild
index ab124f2cc1e4..6dd0d78e2a06 100644
--- a/dev-vcs/stgit/stgit-0.17.1-r1.ebuild
+++ b/dev-vcs/stgit/stgit-0.17.1-r1.ebuild
@@ -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 @@ python_prepare_all() {
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 @@ python_compile_all() {
fi
}
-python_install_all() {
+src_install() {
if use doc; then
emake DESTDIR="${D}" \
htmldir="${EPREFIX}/usr/share/doc/${PF}/html/" \
@@ -78,7 +81,7 @@ python_install_all() {
install-doc install-html
fi
- distutils-r1_python_install_all
+ distutils-r1_src_install
newbashcomp stgit-completion.bash 'stg'
}