Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-boot/grub: grub-9999.ebuild ChangeLog
Date: Sat, 09 Jun 2012 04:47:46
Message-Id: 20120609044731.112C12004B@flycatcher.gentoo.org
1 floppym 12/06/09 04:47:31
2
3 Modified: grub-9999.ebuild ChangeLog
4 Log:
5 Stub out autopoint before calling eautoreconf.
6
7 (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.67 sys-boot/grub/grub-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-9999.ebuild?rev=1.67&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-9999.ebuild?rev=1.67&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-9999.ebuild?r1=1.66&r2=1.67
15
16 Index: grub-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-9999.ebuild,v
19 retrieving revision 1.66
20 retrieving revision 1.67
21 diff -u -r1.66 -r1.67
22 --- grub-9999.ebuild 5 Jun 2012 19:02:50 -0000 1.66
23 +++ grub-9999.ebuild 9 Jun 2012 04:47:30 -0000 1.67
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-9999.ebuild,v 1.66 2012/06/05 19:02:50 floppym Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-9999.ebuild,v 1.67 2012/06/09 04:47:30 floppym Exp $
29
30 EAPI=4
31
32 @@ -208,10 +208,11 @@
33
34 # autogen.sh does more than just run autotools
35 if [[ -n ${DO_AUTORECONF} ]] ; then
36 - # sed -i -e '/^autoreconf/s:^:set +e; e:' autogen.sh || die
37 - # (. ./autogen.sh) || die
38 - autotools_env_setup
39 - ./autogen.sh || die
40 + sed -i -e '/^autoreconf/s:^:set +e; e:' autogen.sh || die
41 + (
42 + autopoint() { :; }
43 + . ./autogen.sh
44 + ) || die
45 fi
46
47 # install into the right dir for eselect #372735
48 @@ -225,7 +226,7 @@
49 use grub_platforms_${i} && GRUB_ENABLED_PLATFORMS+=" ${i}"
50 done
51 [[ -z ${GRUB_ENABLED_PLATFORMS} ]] && GRUB_ENABLED_PLATFORMS="guessed"
52 - elog "Going to build following platforms: ${GRUB_ENABLED_PLATFORMS}"
53 + einfo "Going to build following platforms: ${GRUB_ENABLED_PLATFORMS}"
54 }
55
56 src_configure() {
57
58
59
60 1.211 sys-boot/grub/ChangeLog
61
62 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.211&view=markup
63 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.211&content-type=text/plain
64 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?r1=1.210&r2=1.211
65
66 Index: ChangeLog
67 ===================================================================
68 RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v
69 retrieving revision 1.210
70 retrieving revision 1.211
71 diff -u -r1.210 -r1.211
72 --- ChangeLog 5 Jun 2012 19:02:50 -0000 1.210
73 +++ ChangeLog 9 Jun 2012 04:47:30 -0000 1.211
74 @@ -1,6 +1,9 @@
75 # ChangeLog for sys-boot/grub
76 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
77 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.210 2012/06/05 19:02:50 floppym Exp $
78 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.211 2012/06/09 04:47:30 floppym Exp $
79 +
80 + 09 Jun 2012; Mike Gilbert <floppym@g.o> grub-9999.ebuild:
81 + Stub out autopoint before calling eautoreconf.
82
83 05 Jun 2012; Mike Gilbert <floppym@g.o> grub-9999.ebuild:
84 Call autoreconf directly (via autogen.sh) since eautoreconf insists on callign