Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/csu: csu-85.ebuild ChangeLog
Date: Sun, 01 Mar 2015 09:15:27
Message-Id: 20150301091522.52B7C12CB8@oystercatcher.gentoo.org
1 grobian 15/03/01 09:15:22
2
3 Modified: csu-85.ebuild ChangeLog
4 Log:
5 Take simpler approach to fix Availability.h header problem by Michael Weiser, bug #538602
6
7 (Portage version: 2.2.14-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)
8
9 Revision Changes Path
10 1.3 sys-libs/csu/csu-85.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/csu-85.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/csu-85.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/csu-85.ebuild?r1=1.2&r2=1.3
15
16 Index: csu-85.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/csu/csu-85.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- csu-85.ebuild 28 Feb 2015 10:53:58 -0000 1.2
23 +++ csu-85.ebuild 1 Mar 2015 09:15:22 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2015 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/csu/csu-85.ebuild,v 1.2 2015/02/28 10:53:58 grobian Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/csu/csu-85.ebuild,v 1.3 2015/03/01 09:15:22 grobian Exp $
29
30 EAPI=5
31
32 @@ -25,9 +25,8 @@
33 -e '/^CC = /d' \
34 Makefile || die
35
36 - # deal with Availability.h missing
37 - echo "#include <Availability.h>" | $(tc-getCC) -o - -c -x c - >& /dev/null \
38 - || epatch "${FILESDIR}"/${P}-darwin8.patch
39 + # only require Availability.h for arm, bugs #538602, #539964
40 + epatch "${FILESDIR}"/${P}-arm-availability.patch
41
42 if [[ ${CHOST} == powerpc* ]] ; then
43 # *must not* be compiled with -Os on PPC because that
44
45
46
47 1.10 sys-libs/csu/ChangeLog
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/ChangeLog?rev=1.10&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/ChangeLog?rev=1.10&content-type=text/plain
51 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/ChangeLog?r1=1.9&r2=1.10
52
53 Index: ChangeLog
54 ===================================================================
55 RCS file: /var/cvsroot/gentoo-x86/sys-libs/csu/ChangeLog,v
56 retrieving revision 1.9
57 retrieving revision 1.10
58 diff -u -r1.9 -r1.10
59 --- ChangeLog 28 Feb 2015 10:53:58 -0000 1.9
60 +++ ChangeLog 1 Mar 2015 09:15:22 -0000 1.10
61 @@ -1,6 +1,12 @@
62 # ChangeLog for sys-libs/csu
63 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
64 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/csu/ChangeLog,v 1.9 2015/02/28 10:53:58 grobian Exp $
65 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/csu/ChangeLog,v 1.10 2015/03/01 09:15:22 grobian Exp $
66 +
67 + 01 Mar 2015; Fabian Groffen <grobian@g.o>
68 + +files/csu-85-arm-availability.patch, -files/csu-85-darwin8.patch,
69 + csu-85.ebuild:
70 + Take simpler approach to fix Availability.h header problem by Michael Weiser,
71 + bug #538602
72
73 28 Feb 2015; Fabian Groffen <grobian@g.o> csu-85.ebuild:
74 Let the compiler determine if Availability.h is available for a more reliable