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-devel/binutils-apple: binutils-apple-6.1.ebuild ChangeLog
Date: Wed, 04 Feb 2015 17:33:25
Message-Id: 20150204173320.47B55110D1@oystercatcher.gentoo.org
1 grobian 15/02/04 17:33:20
2
3 Modified: binutils-apple-6.1.ebuild ChangeLog
4 Log:
5 Add patch to silence when LTO is in use by Michael Weiser, bug #538604
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-devel/binutils-apple/binutils-apple-6.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-6.1.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-6.1.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-6.1.ebuild?r1=1.2&r2=1.3
15
16 Index: binutils-apple-6.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-6.1.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- binutils-apple-6.1.ebuild 31 Jan 2015 02:33:23 -0000 1.2
23 +++ binutils-apple-6.1.ebuild 4 Feb 2015 17:33:20 -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-devel/binutils-apple/binutils-apple-6.1.ebuild,v 1.2 2015/01/31 02:33:23 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-6.1.ebuild,v 1.3 2015/02/04 17:33:20 grobian Exp $
29
30 EAPI="3"
31
32 @@ -73,6 +73,7 @@
33 epatch "${FILESDIR}"/ld64-241.9-register-names.patch
34 epatch "${FILESDIR}"/ld64-241.9-get-comm-align.patch
35 epatch "${FILESDIR}"/ld64-241.9-cc_md5.patch
36 + epatch "${FILESDIR}"/ld64-241.9-lto-noremarks.patch
37
38 # We used to use our own copy of lto.h, which doesn't require llvm
39 # build-env. Current versions of llvm provide
40 @@ -99,7 +100,7 @@
41
42 # mimic OS X Leopard-style Availability.h macros for libunwind.h on
43 # older systems
44 - [[ ${CHOST#*-darwin} -le 8 ]] && \
45 + [[ ${CHOST} == *darwin* && ${CHOST#*-darwin} -le 8 ]] && \
46 echo "#define __OSX_AVAILABLE_STARTING(x,y) " > include/Availability.h
47
48 local VER_STR="\"@(#)PROGRAM:ld PROJECT:${LD64} (Gentoo ${PN}-${PVR})\\n\""
49 @@ -198,11 +199,11 @@
50 append-cppflags -DNDEBUG
51
52 # Block API and thus snapshots supported on >= 10.6
53 - [ ${CHOST#*-darwin} -ge 10 ] && \
54 + [[ ${CHOST} == *darwin* && ${CHOST#*-darwin} -ge 10 ]] && \
55 append-cppflags -DSUPPORT_SNAPSHOTS
56
57 CCTOOLS_OFLAG=
58 - if [ ${CHOST#*-darwin} -le 8 ] ; then
59 + if [[ ${CHOST} == *darwin* && ${CHOST#*-darwin} -le 8 ]] ; then
60 # cctools expect to use UNIX03 struct member names.
61 # This is default on > 10.4. Activate it on <= 10.4 by defining
62 # __DARWIN_UNIX03 explicitly.
63
64
65
66 1.41 sys-devel/binutils-apple/ChangeLog
67
68 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/ChangeLog?rev=1.41&view=markup
69 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/ChangeLog?rev=1.41&content-type=text/plain
70 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/ChangeLog?r1=1.40&r2=1.41
71
72 Index: ChangeLog
73 ===================================================================
74 RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v
75 retrieving revision 1.40
76 retrieving revision 1.41
77 diff -u -r1.40 -r1.41
78 --- ChangeLog 4 Feb 2015 02:55:23 -0000 1.40
79 +++ ChangeLog 4 Feb 2015 17:33:20 -0000 1.41
80 @@ -1,6 +1,10 @@
81 # ChangeLog for sys-devel/binutils-apple
82 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
83 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v 1.40 2015/02/04 02:55:23 patrick Exp $
84 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v 1.41 2015/02/04 17:33:20 grobian Exp $
85 +
86 + 04 Feb 2015; Fabian Groffen <grobian@g.o>
87 + +files/ld64-241.9-lto-noremarks.patch, binutils-apple-6.1.ebuild:
88 + Add patch to silence when LTO is in use by Michael Weiser, bug #538604
89
90 04 Feb 2015; Patrick Lauer <patrick@g.o> binutils-apple-4.2-r1.ebuild,
91 binutils-apple-4.3-r1.ebuild: