Gentoo Archives: gentoo-commits

From: "vapier (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/autoconf: ChangeLog autoconf-2.13.ebuild
Date: Sat, 08 Sep 2007 06:32:44
Message-Id: E1ITtlU-0007Rv-IH@stork.gentoo.org
1 vapier 07/09/08 06:25:56
2
3 Modified: ChangeLog autoconf-2.13.ebuild
4 Log:
5 Fixup false test failures with newer gcc versions #146592.
6 (Portage version: 2.1.3.7)
7
8 Revision Changes Path
9 1.108 sys-devel/autoconf/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/ChangeLog?rev=1.108&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/ChangeLog?rev=1.108&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/ChangeLog?r1=1.107&r2=1.108
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v
18 retrieving revision 1.107
19 retrieving revision 1.108
20 diff -u -r1.107 -r1.108
21 --- ChangeLog 8 Sep 2007 06:11:43 -0000 1.107
22 +++ ChangeLog 8 Sep 2007 06:25:56 -0000 1.108
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sys-devel/autoconf
25 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v 1.107 2007/09/08 06:11:43 josejx Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v 1.108 2007/09/08 06:25:56 vapier Exp $
28 +
29 + 08 Sep 2007; Mike Frysinger <vapier@g.o>
30 + +files/autoconf-2.13-test-fixes.patch, autoconf-2.13.ebuild:
31 + Fixup false test failures with newer gcc versions #146592.
32
33 08 Sep 2007; Joseph Jezak <josejx@g.o> autoconf-2.61-r1.ebuild:
34 Marked ppc64 stable for bug #189029.
35
36
37
38 1.17 sys-devel/autoconf/autoconf-2.13.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild?rev=1.17&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild?rev=1.17&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild?r1=1.16&r2=1.17
43
44 Index: autoconf-2.13.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild,v
47 retrieving revision 1.16
48 retrieving revision 1.17
49 diff -u -r1.16 -r1.17
50 --- autoconf-2.13.ebuild 3 Nov 2006 18:40:55 -0000 1.16
51 +++ autoconf-2.13.ebuild 8 Sep 2007 06:25:56 -0000 1.17
52 @@ -1,6 +1,6 @@
53 -# Copyright 1999-2006 Gentoo Foundation
54 +# Copyright 1999-2007 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild,v 1.16 2006/11/03 18:40:55 grobian Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild,v 1.17 2007/09/08 06:25:56 vapier Exp $
58
59 inherit eutils
60
61 @@ -20,9 +20,10 @@
62
63 src_unpack() {
64 unpack ${A}
65 - cd ${S}
66 - epatch ${FILESDIR}/${P}-gentoo.patch
67 - epatch ${FILESDIR}/${P}-destdir.patch
68 + cd "${S}"
69 + epatch "${FILESDIR}"/${P}-gentoo.patch
70 + epatch "${FILESDIR}"/${P}-destdir.patch
71 + epatch "${FILESDIR}"/${P}-test-fixes.patch #146592
72 touch configure # make sure configure is newer than configure.in
73
74 rm -f standards.{texi,info} # binutils installs this infopage
75 @@ -46,15 +47,10 @@
76 }
77
78 src_install() {
79 - make install DESTDIR="${D}" || die
80 + emake install DESTDIR="${D}" || die
81
82 dodoc AUTHORS NEWS README TODO \
83 ChangeLog ChangeLog.0 ChangeLog.1
84
85 mv "${D}"/usr/share/info/autoconf{,-${PV}}.info
86 }
87 -
88 -pkg_postinst() {
89 - einfo "Please note that the 'WANT_AUTOCONF_2_1=1' syntax is now:"
90 - einfo " WANT_AUTOCONF=2.1"
91 -}
92
93
94
95 --
96 gentoo-commits@g.o mailing list