Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/buildutils: buildutils-0.3.ebuild ChangeLog
Date: Sun, 04 Apr 2010 16:41:09
Message-Id: E1NySsj-0004EO-GJ@stork.gentoo.org
1 arfrever 10/04/04 16:41:05
2
3 Modified: buildutils-0.3.ebuild ChangeLog
4 Log:
5 Fix building of documentation (bug #300788).
6 (Portage version: HEAD/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.5 dev-python/buildutils/buildutils-0.3.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild?r1=1.4&r2=1.5
14
15 Index: buildutils-0.3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -u -r1.4 -r1.5
21 --- buildutils-0.3.ebuild 6 Feb 2010 14:39:48 -0000 1.4
22 +++ buildutils-0.3.ebuild 4 Apr 2010 16:41:05 -0000 1.5
23 @@ -1,8 +1,8 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild,v 1.4 2010/02/06 14:39:48 arfrever Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild,v 1.5 2010/04/04 16:41:05 arfrever Exp $
28
29 -EAPI="2"
30 +EAPI="3"
31 PYTHON_DEPEND="2"
32 SUPPORT_PYTHON_ABIS="1"
33
34 @@ -25,12 +25,15 @@
35 src_prepare() {
36 distutils_src_prepare
37
38 - # pudge command is disabled by default, enable it.
39 + # Enable pudge command.
40 epatch "${FILESDIR}/${P}-pudge_addcommand.patch"
41 +
42 + sed -e "s/buildutils.command.publish/buildutils.publish_command.publish/" -i buildutils/test/test_publish.py || die "sed failed"
43 }
44
45 src_compile() {
46 distutils_src_compile
47 +
48 if use doc; then
49 einfo "Generation of documentation"
50 "$(PYTHON -f)" setup.py pudge || die "Generation of documentation failed"
51 @@ -39,5 +42,8 @@
52
53 src_install() {
54 distutils_src_install
55 - use doc && dohtml -r doc/html/*
56 +
57 + if use doc; then
58 + dohtml -r doc/html/* || die "dohtml failed"
59 + fi
60 }
61
62
63
64 1.8 dev-python/buildutils/ChangeLog
65
66 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/buildutils/ChangeLog?rev=1.8&view=markup
67 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/buildutils/ChangeLog?rev=1.8&content-type=text/plain
68 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/buildutils/ChangeLog?r1=1.7&r2=1.8
69
70 Index: ChangeLog
71 ===================================================================
72 RCS file: /var/cvsroot/gentoo-x86/dev-python/buildutils/ChangeLog,v
73 retrieving revision 1.7
74 retrieving revision 1.8
75 diff -u -r1.7 -r1.8
76 --- ChangeLog 10 Oct 2009 11:58:20 -0000 1.7
77 +++ ChangeLog 4 Apr 2010 16:41:05 -0000 1.8
78 @@ -1,6 +1,10 @@
79 # ChangeLog for dev-python/buildutils
80 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
81 -# $Header: /var/cvsroot/gentoo-x86/dev-python/buildutils/ChangeLog,v 1.7 2009/10/10 11:58:20 grobian Exp $
82 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
83 +# $Header: /var/cvsroot/gentoo-x86/dev-python/buildutils/ChangeLog,v 1.8 2010/04/04 16:41:05 arfrever Exp $
84 +
85 + 04 Apr 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
86 + buildutils-0.3.ebuild:
87 + Fix building of documentation (bug #300788).
88
89 10 Oct 2009; Fabian Groffen <grobian@g.o> buildutils-0.3.ebuild:
90 Merge from Prefix