Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/fpc: ChangeLog fpc-2.6.2.ebuild
Date: Tue, 30 Jul 2013 21:16:09
Message-Id: 20130730211606.316F72171C@flycatcher.gentoo.org
1 radhermit 13/07/30 21:16:06
2
3 Modified: ChangeLog fpc-2.6.2.ebuild
4 Log:
5 Respect AS (bug #478792).
6
7 (Portage version: 2.2.0_alpha190/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
8
9 Revision Changes Path
10 1.62 dev-lang/fpc/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.62&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.62&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?r1=1.61&r2=1.62
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v
19 retrieving revision 1.61
20 retrieving revision 1.62
21 diff -u -r1.61 -r1.62
22 --- ChangeLog 29 Jul 2013 20:11:12 -0000 1.61
23 +++ ChangeLog 30 Jul 2013 21:16:05 -0000 1.62
24 @@ -1,6 +1,9 @@
25 # ChangeLog for dev-lang/fpc
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.61 2013/07/29 20:11:12 hasufell Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.62 2013/07/30 21:16:05 radhermit Exp $
29 +
30 + 30 Jul 2013; Tim Harder <radhermit@g.o> fpc-2.6.2.ebuild:
31 + Respect AS (bug #478792).
32
33 29 Jul 2013; Julian Ospald <hasufell@g.o> fpc-2.6.2.ebuild:
34 die hard on gnu gold linker wrt #475210
35
36
37
38 1.3 dev-lang/fpc/fpc-2.6.2.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?r1=1.2&r2=1.3
43
44 Index: fpc-2.6.2.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- fpc-2.6.2.ebuild 29 Jul 2013 20:11:12 -0000 1.2
51 +++ fpc-2.6.2.ebuild 30 Jul 2013 21:16:06 -0000 1.3
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2013 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v 1.2 2013/07/29 20:11:12 hasufell Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v 1.3 2013/07/30 21:16:06 radhermit Exp $
57
58 EAPI=5
59
60 @@ -88,13 +88,13 @@
61 # Using the bootstrap compiler.
62 set_pp bootstrap
63
64 - emake -j1 PP="${pp}" compiler_cycle
65 + emake -j1 PP="${pp}" compiler_cycle AS="$(tc-getAS)"
66
67 # Save new compiler from cleaning...
68 cp "${S}"/compiler/ppc${FPC_ARCH} "${S}"/ppc${FPC_ARCH}.new || die
69
70 # ...rebuild with current version...
71 - emake -j1 PP="${S}"/ppc${FPC_ARCH}.new compiler_cycle
72 + emake -j1 PP="${S}"/ppc${FPC_ARCH}.new AS="$(tc-getAS)" compiler_cycle
73
74 # ..and clean up afterwards
75 rm "${S}"/ppc${FPC_ARCH}.new || die
76 @@ -102,13 +102,13 @@
77 # Using the new compiler.
78 set_pp new
79
80 - emake -j1 PP="${pp}" rtl_clean
81 + emake -j1 PP="${pp}" AS="$(tc-getAS)" rtl_clean
82
83 - emake -j1 PP="${pp}" rtl packages_all utils
84 + emake -j1 PP="${pp}" AS="$(tc-getAS)" rtl packages_all utils
85
86 if use ide ; then
87 cd "${S}"/ide || die
88 - emake -j1 PP="${pp}"
89 + emake -j1 PP="${pp}" AS="$(tc-getAS)"
90 fi
91 }