Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-boot/gnu-efi: ChangeLog gnu-efi-3.0s.ebuild
Date: Sat, 28 Jun 2014 15:46:45
Message-Id: 20140628154640.137562004E@flycatcher.gentoo.org
1 armin76 14/06/28 15:46:40
2
3 Modified: ChangeLog gnu-efi-3.0s.ebuild
4 Log:
5 Add the fix from 3.0u to 3.0s since its stable, bug #503210
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF6AD3240)
8
9 Revision Changes Path
10 1.25 sys-boot/gnu-efi/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/gnu-efi/ChangeLog?rev=1.25&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/gnu-efi/ChangeLog?rev=1.25&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/gnu-efi/ChangeLog?r1=1.24&r2=1.25
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/ChangeLog,v
19 retrieving revision 1.24
20 retrieving revision 1.25
21 diff -u -r1.24 -r1.25
22 --- ChangeLog 15 Mar 2014 19:56:24 -0000 1.24
23 +++ ChangeLog 28 Jun 2014 15:46:39 -0000 1.25
24 @@ -1,6 +1,9 @@
25 # ChangeLog for sys-boot/gnu-efi
26 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/ChangeLog,v 1.24 2014/03/15 19:56:24 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/ChangeLog,v 1.25 2014/06/28 15:46:39 armin76 Exp $
29 +
30 + 28 Jun 2014; Raúl Porcel <armin76@g.o> gnu-efi-3.0s.ebuild:
31 + Add the fix from 3.0u to 3.0s since its stable, bug #503210
32
33 15 Mar 2014; Mike Frysinger <vapier@g.o> gnu-efi-3.0u.ebuild:
34 Avoid -maccumulate-outgoing-args on ia64 systems #503210 by Dennis Schridde.
35
36
37
38 1.5 sys-boot/gnu-efi/gnu-efi-3.0s.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0s.ebuild?rev=1.5&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0s.ebuild?rev=1.5&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0s.ebuild?r1=1.4&r2=1.5
43
44 Index: gnu-efi-3.0s.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0s.ebuild,v
47 retrieving revision 1.4
48 retrieving revision 1.5
49 diff -u -r1.4 -r1.5
50 --- gnu-efi-3.0s.ebuild 7 Jul 2013 15:19:32 -0000 1.4
51 +++ gnu-efi-3.0s.ebuild 28 Jun 2014 15:46:39 -0000 1.5
52 @@ -1,6 +1,6 @@
53 -# Copyright 1999-2013 Gentoo Foundation
54 +# Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0s.ebuild,v 1.4 2013/07/07 15:19:32 ago Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0s.ebuild,v 1.5 2014/06/28 15:46:39 armin76 Exp $
58
59 EAPI="4"
60
61 @@ -30,6 +30,12 @@
62 src_prepare() {
63 EPATCH_OPTS="-p1" epatch "${WORKDIR}"/*.diff
64 sed -i -e '/^CFLAGS/s:$: -fno-stack-protector:' Make.defaults || die #444246
65 + if ! use amd64 && ! use x86 ; then
66 + sed -i \
67 + -e '/CPPFLAGS/s:-maccumulate-outgoing-args::' \
68 + Make.defaults || die #503210
69 + fi
70 +
71 }
72
73 _emake() {