Gentoo Archives: gentoo-commits

From: "William Hubbs (williamh)" <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/go: go-1.0.2.ebuild go-9999.ebuild ChangeLog
Date: Sat, 01 Sep 2012 17:34:23
Message-Id: 20120901173411.5DF0320EE7@flycatcher.gentoo.org
1 williamh 12/09/01 17:34:11
2
3 Modified: go-1.0.2.ebuild go-9999.ebuild ChangeLog
4 Log:
5 Fix arm5 detection thanks to Markus Meier.
6
7 (Portage version: 2.2.0_alpha123/cvs/Linux i686)
8
9 Revision Changes Path
10 1.3 dev-lang/go/go-1.0.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-1.0.2.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-1.0.2.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-1.0.2.ebuild?r1=1.2&r2=1.3
15
16 Index: go-1.0.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/go/go-1.0.2.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- go-1.0.2.ebuild 7 Aug 2012 19:04:32 -0000 1.2
23 +++ go-1.0.2.ebuild 1 Sep 2012 17:34:11 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/go-1.0.2.ebuild,v 1.2 2012/08/07 19:04:32 williamh Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/go-1.0.2.ebuild,v 1.3 2012/09/01 17:34:11 williamh Exp $
29
30 EAPI=4
31
32 @@ -54,7 +54,7 @@
33 export GOROOT_FINAL=/usr/lib/go
34 export GOROOT="$(pwd)"
35 export GOBIN="${GOROOT}/bin"
36 - if [[ $CTARGET = arm5* ]]
37 + if [[ $CTARGET = armv5* ]]
38 then
39 export GOARM=5
40 fi
41
42
43
44 1.7 dev-lang/go/go-9999.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-9999.ebuild?rev=1.7&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-9999.ebuild?rev=1.7&content-type=text/plain
48 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-9999.ebuild?r1=1.6&r2=1.7
49
50 Index: go-9999.ebuild
51 ===================================================================
52 RCS file: /var/cvsroot/gentoo-x86/dev-lang/go/go-9999.ebuild,v
53 retrieving revision 1.6
54 retrieving revision 1.7
55 diff -u -r1.6 -r1.7
56 --- go-9999.ebuild 7 Aug 2012 19:04:32 -0000 1.6
57 +++ go-9999.ebuild 1 Sep 2012 17:34:11 -0000 1.7
58 @@ -1,6 +1,6 @@
59 # Copyright 1999-2012 Gentoo Foundation
60 # Distributed under the terms of the GNU General Public License v2
61 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/go-9999.ebuild,v 1.6 2012/08/07 19:04:32 williamh Exp $
62 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/go-9999.ebuild,v 1.7 2012/09/01 17:34:11 williamh Exp $
63
64 EAPI=4
65
66 @@ -51,7 +51,7 @@
67 export GOROOT_FINAL=/usr/lib/go
68 export GOROOT="$(pwd)"
69 export GOBIN="${GOROOT}/bin"
70 - if [[ $CTARGET = arm5* ]]
71 + if [[ $CTARGET = armv5* ]]
72 then
73 export GOARM=5
74 fi
75
76
77
78 1.5 dev-lang/go/ChangeLog
79
80 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/ChangeLog?rev=1.5&view=markup
81 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/ChangeLog?rev=1.5&content-type=text/plain
82 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/ChangeLog?r1=1.4&r2=1.5
83
84 Index: ChangeLog
85 ===================================================================
86 RCS file: /var/cvsroot/gentoo-x86/dev-lang/go/ChangeLog,v
87 retrieving revision 1.4
88 retrieving revision 1.5
89 diff -u -r1.4 -r1.5
90 --- ChangeLog 30 Jul 2012 18:49:38 -0000 1.4
91 +++ ChangeLog 1 Sep 2012 17:34:11 -0000 1.5
92 @@ -1,6 +1,10 @@
93 # ChangeLog for dev-lang/go
94 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
95 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/ChangeLog,v 1.4 2012/07/30 18:49:38 williamh Exp $
96 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/ChangeLog,v 1.5 2012/09/01 17:34:11 williamh Exp $
97 +
98 + 01 Sep 2012; William Hubbs <williamh@g.o> go-1.0.2.ebuild,
99 + go-9999.ebuild:
100 + Fix arm5 detection thanks to Markus Meier.
101
102 *go-1.0.2 (30 Jul 2012)
103
104 @@ -28,4 +32,3 @@
105 ebuild. Also, I would like to thank powerman-asdf@××××××.ru for the
106 original hardened patch and everyone else who worked with me on the bug
107 so we could get this into the tree.
108 -