grobian 14/11/03 20:22:57 Modified: go-1.3.3.ebuild go-9999.ebuild ChangeLog Log: Darwin: make sure we build with GCC by default instead of Clang, bug #528076 (Portage version: 2.2.14_rc1-prefix/cvs/Darwin i386, signed Manifest commit with key 0x5F75F607C5C74E89)
Revision Changes Path 1.6 dev-lang/go/go-1.3.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-1.3.3.ebuild?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-1.3.3.ebuild?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-1.3.3.ebuild?r1=1.5&r2=1.6 Index: go-1.3.3.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-lang/go/go-1.3.3.ebuild,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- go-1.3.3.ebuild 24 Oct 2014 17:40:55 -0000 1.5 +++ go-1.3.3.ebuild 3 Nov 2014 20:22:56 -0000 1.6 @@ -1,12 +1,12 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/go-1.3.3.ebuild,v 1.5 2014/10/24 17:40:55 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/go-1.3.3.ebuild,v 1.6 2014/11/03 20:22:56 grobian Exp $ EAPI=5 export CTARGET=${CTARGET:-${CHOST}} -inherit bash-completion-r1 elisp-common eutils +inherit bash-completion-r1 elisp-common toolchain-funcs eutils if [[ ${PV} = 9999 ]]; then EHG_REPO_URI="https://go.googlecode.com/hg" @@ -34,7 +34,7 @@ # The go language uses *.a files which are _NOT_ libraries and should not be # stripped. -STRIP_MASK="/usr/lib/go/pkg/linux*/*.a /usr/lib/go/pkg/freebsd*/*.a" +STRIP_MASK="/usr/lib/go/pkg/linux*/*.a /usr/lib/go/pkg/freebsd*/*.a /usr/lib/go/pkg/darwin*/*.a" if [[ ${PV} != 9999 ]]; then S="${WORKDIR}"/go @@ -57,6 +57,7 @@ then export GOARM=5 fi + tc-export CC cd src ./make.bash || die "build failed" 1.20 dev-lang/go/go-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-9999.ebuild?rev=1.20&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-9999.ebuild?rev=1.20&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-9999.ebuild?r1=1.19&r2=1.20 Index: go-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-lang/go/go-9999.ebuild,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- go-9999.ebuild 15 Aug 2014 00:33:15 -0000 1.19 +++ go-9999.ebuild 3 Nov 2014 20:22:56 -0000 1.20 @@ -1,12 +1,12 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/go-9999.ebuild,v 1.19 2014/08/15 00:33:15 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/go-9999.ebuild,v 1.20 2014/11/03 20:22:56 grobian Exp $ EAPI=5 export CTARGET=${CTARGET:-${CHOST}} -inherit eutils +inherit eutils toolchain-funcs if [[ ${PV} = 9999 ]]; then EHG_REPO_URI="https://go.googlecode.com/hg" @@ -32,7 +32,7 @@ # The go language uses *.a files which are _NOT_ libraries and should not be # stripped. -STRIP_MASK="/usr/lib/go/pkg/linux*/*.a /usr/lib/go/pkg/freebsd*/*.a" +STRIP_MASK="/usr/lib/go/pkg/linux*/*.a /usr/lib/go/pkg/freebsd*/*.a /usr/lib/go/pkg/darwin*/*.a" if [[ ${PV} != 9999 ]]; then S="${WORKDIR}"/go @@ -55,6 +55,7 @@ then export GOARM=5 fi + tc-export CC cd src ./make.bash || die "build failed" 1.53 dev-lang/go/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/ChangeLog?rev=1.53&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/ChangeLog?rev=1.53&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/ChangeLog?r1=1.52&r2=1.53 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-lang/go/ChangeLog,v retrieving revision 1.52 retrieving revision 1.53 diff -u -r1.52 -r1.53 --- ChangeLog 24 Oct 2014 17:40:55 -0000 1.52 +++ ChangeLog 3 Nov 2014 20:22:56 -0000 1.53 @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/go # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/ChangeLog,v 1.52 2014/10/24 17:40:55 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/ChangeLog,v 1.53 2014/11/03 20:22:56 grobian Exp $ + + 03 Nov 2014; Fabian Groffen <[email protected]> go-1.3.3.ebuild, + go-9999.ebuild: + Darwin: make sure we build with GCC by default instead of Clang, bug #528076 24 Oct 2014; Michał Górny <[email protected]> go-1.3.3.ebuild: Alias additional commands for bash-completion, bug #526240.
