Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/path64: path64-1.0.0_pre20110729.ebuild ChangeLog
Date: Sun, 31 Jul 2011 07:46:35
Message-Id: 20110731074621.DCC012004B@flycatcher.gentoo.org
1 xarthisius 11/07/31 07:46:21
2
3 Modified: path64-1.0.0_pre20110729.ebuild ChangeLog
4 Log:
5 Make search for linker more resilient. Fixes bug 377111. Thanks to Diego Elio Pettenò <flameeyes@g.o>
6
7 (Portage version: 2.2.0_alpha49/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-lang/path64/path64-1.0.0_pre20110729.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/path64/path64-1.0.0_pre20110729.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/path64/path64-1.0.0_pre20110729.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/path64/path64-1.0.0_pre20110729.ebuild?r1=1.1&r2=1.2
15
16 Index: path64-1.0.0_pre20110729.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/path64/path64-1.0.0_pre20110729.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- path64-1.0.0_pre20110729.ebuild 29 Jul 2011 17:40:49 -0000 1.1
23 +++ path64-1.0.0_pre20110729.ebuild 31 Jul 2011 07:46:21 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/path64/path64-1.0.0_pre20110729.ebuild,v 1.1 2011/07/29 17:40:49 xarthisius Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/path64/path64-1.0.0_pre20110729.ebuild,v 1.2 2011/07/31 07:46:21 xarthisius Exp $
29
30 EAPI=4
31 CMAKE_VERBOSE=1
32 @@ -48,7 +48,8 @@
33 }
34
35 src_configure() {
36 - local linker=$($(tc-getCC) --help -v 2>&1 >/dev/null | grep '\-dynamic\-linker' | cut -f7 -d' ')
37 + local linker=$($(tc-getCC) --help -v 2>&1 >/dev/null | \
38 + sed -n -e '/dynamic-linker/s:.* -dynamic-linker \([^ ]\+\) .*:\1:p')
39 local libgcc=$($(tc-getCC) -print-libgcc-file-name)
40 local crt=$($(tc-getCC) -print-file-name=crt1.o)
41 use custom-cflags && flags=(
42
43
44
45 1.2 dev-lang/path64/ChangeLog
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/path64/ChangeLog?rev=1.2&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/path64/ChangeLog?rev=1.2&content-type=text/plain
49 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/path64/ChangeLog?r1=1.1&r2=1.2
50
51 Index: ChangeLog
52 ===================================================================
53 RCS file: /var/cvsroot/gentoo-x86/dev-lang/path64/ChangeLog,v
54 retrieving revision 1.1
55 retrieving revision 1.2
56 diff -u -r1.1 -r1.2
57 --- ChangeLog 29 Jul 2011 17:40:49 -0000 1.1
58 +++ ChangeLog 31 Jul 2011 07:46:21 -0000 1.2
59 @@ -1,6 +1,11 @@
60 # ChangeLog for dev-lang/path64
61 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
62 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/path64/ChangeLog,v 1.1 2011/07/29 17:40:49 xarthisius Exp $
63 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/path64/ChangeLog,v 1.2 2011/07/31 07:46:21 xarthisius Exp $
64 +
65 + 31 Jul 2011; Kacper Kowalik <xarthisius@g.o>
66 + path64-1.0.0_pre20110729.ebuild:
67 + Make search for linker more resilient. Fixes bug 377111. Thanks to Diego Elio
68 + Pettenò <flameeyes@g.o>
69
70 *path64-1.0.0_pre20110729 (29 Jul 2011)