Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/openipmi: ChangeLog openipmi-2.0.16.ebuild
Date: Mon, 28 Dec 2009 01:37:11
Message-Id: E1NP4Xj-0005ad-8r@stork.gentoo.org
1 robbat2 09/12/28 01:37:07
2
3 Modified: ChangeLog openipmi-2.0.16.ebuild
4 Log:
5 Fix bug #298250 directly.
6 (Portage version: 2.2_rc58/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.18 sys-libs/openipmi/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openipmi/ChangeLog?rev=1.18&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openipmi/ChangeLog?rev=1.18&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openipmi/ChangeLog?r1=1.17&r2=1.18
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-libs/openipmi/ChangeLog,v
18 retrieving revision 1.17
19 retrieving revision 1.18
20 diff -p -w -b -B -u -u -r1.17 -r1.18
21 --- ChangeLog 28 Dec 2009 00:14:44 -0000 1.17
22 +++ ChangeLog 28 Dec 2009 01:37:06 -0000 1.18
23 @@ -1,6 +1,9 @@
24 # ChangeLog for sys-libs/openipmi
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/openipmi/ChangeLog,v 1.17 2009/12/28 00:14:44 robbat2 Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/openipmi/ChangeLog,v 1.18 2009/12/28 01:37:06 robbat2 Exp $
28 +
29 + 28 Dec 2009; Robin H. Johnson <robbat2@g.o> openipmi-2.0.16.ebuild:
30 + Fix bug #298250 directly.
31
32 *openipmi-2.0.16 (28 Dec 2009)
33
34
35
36
37 1.2 sys-libs/openipmi/openipmi-2.0.16.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openipmi/openipmi-2.0.16.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openipmi/openipmi-2.0.16.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openipmi/openipmi-2.0.16.ebuild?r1=1.1&r2=1.2
42
43 Index: openipmi-2.0.16.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/sys-libs/openipmi/openipmi-2.0.16.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -p -w -b -B -u -u -r1.1 -r1.2
49 --- openipmi-2.0.16.ebuild 28 Dec 2009 00:14:44 -0000 1.1
50 +++ openipmi-2.0.16.ebuild 28 Dec 2009 01:37:06 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/openipmi/openipmi-2.0.16.ebuild,v 1.1 2009/12/28 00:14:44 robbat2 Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/openipmi/openipmi-2.0.16.ebuild,v 1.2 2009/12/28 01:37:06 robbat2 Exp $
56
57 inherit autotools python
58
59 @@ -48,8 +48,13 @@ src_unpack() {
60 sed -r -i \
61 -e '/INSTALL.*\.py[oc] /d' \
62 -e '/install-exec-local/s,OpenIPMI.pyc OpenIPMI.pyo,,g' \
63 - "${S}"/swig/python/Makefile.am \
64 - "${S}"/swig/python/Makefile.in
65 + "${S}"/swig/python/Makefile.{am,in}
66 +
67 + # Bug #298250: parallel install fix.
68 + sed -r -i \
69 + -e '/^install-data-local:/s,$, install-exec-am,g' \
70 + "${S}"/cmdlang/Makefile.{am,in}
71 +
72 # We touch the .in and .am above because if we use the below, the Perl stuff
73 # is very fragile, and often fails to link.
74 #cd "${S}"
75 @@ -82,8 +87,7 @@ src_compile() {
76 }
77
78 src_install() {
79 - # bug #298250
80 - emake -j1 DESTDIR="${D}" install || die
81 + emake DESTDIR="${D}" install || die
82 dodoc README* FAQ ChangeLog TODO doc/IPMI.pdf lanserv/README.emulator
83 newdoc cmdlang/README README.cmdlang
84 }