Hello community, here is the log from the commit of package go for openSUSE:Factory checked in at 2014-08-14 14:58:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/go (Old) and /work/SRC/openSUSE:Factory/.go.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "go" Changes: -------- --- /work/SRC/openSUSE:Factory/go/go.changes 2013-12-03 09:06:08.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.go.new/go.changes 2014-08-14 14:58:10.000000000 +0200 @@ -1,0 +2,20 @@ +Tue Aug 12 07:42:55 UTC 2014 - [email protected] + +- Fix download url. + +------------------------------------------------------------------- +Thu Jul 31 15:09:29 UTC 2014 - [email protected] + +- Rename rpmlintrc to %{name}-rpmlintrc. + Follow the packaging guidelines. + +------------------------------------------------------------------- +Thu Jun 19 22:44:18 UTC 2014 - [email protected] + +- Update to version 1.3: + see http://golang.org/doc/go1.3 +- refreshed patches to apply cleanly again: + - go-build-dont-reinstall-stdlibs.patch + - verbose-build.patch + +------------------------------------------------------------------- Old: ---- go1.2.src.tar.gz rpmlintrc New: ---- go-rpmlintrc go1.3.src.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ go.spec ++++++ --- /var/tmp/diff_new_pack.dwmxQf/_old 2014-08-14 14:58:13.000000000 +0200 +++ /var/tmp/diff_new_pack.dwmxQf/_new 2014-08-14 14:58:13.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package go # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011, Sascha Peilicke <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -18,14 +18,14 @@ Name: go -Version: 1.2 +Version: 1.3 Release: 0 Summary: A compiled, garbage-collected, concurrent programming language License: BSD-3-Clause Group: Development/Languages/Other Url: http://golang.org -Source0: http://go.googlecode.com/files/go%{version}.src.tar.gz -Source1: rpmlintrc +Source0: http://golang.org/dl/go%{version}.src.tar.gz +Source1: go-rpmlintrc Source2: go.sh Source3: macros.go Source6: go-wiki-gadget.xml ++++++ go-build-dont-reinstall-stdlibs.patch ++++++ --- /var/tmp/diff_new_pack.dwmxQf/_old 2014-08-14 14:58:13.000000000 +0200 +++ /var/tmp/diff_new_pack.dwmxQf/_new 2014-08-14 14:58:13.000000000 +0200 @@ -1,8 +1,8 @@ -diff --git a/src/cmd/go/build.go b/src/cmd/go/build.go -index 4bb83f1..16ce829 100644 ---- a/src/cmd/go/build.go -+++ b/src/cmd/go/build.go -@@ -91,6 +91,7 @@ func init() { +Index: go/src/cmd/go/build.go +=================================================================== +--- go.orig/src/cmd/go/build.go ++++ go/src/cmd/go/build.go +@@ -117,6 +117,7 @@ func init() { } // Flags set by multiple commands. @@ -10,8 +10,8 @@ var buildA bool // -a flag var buildN bool // -n flag var buildP = runtime.NumCPU() // -p flag -@@ -139,6 +140,10 @@ func init() { - // addBuildFlags adds the flags common to the build and install commands. +@@ -169,6 +170,10 @@ func init() { + // install, list, run, and test commands. func addBuildFlags(cmd *Command) { // NOTE: If you add flags here, also add them to testflag.go. + @@ -21,7 +21,7 @@ cmd.Flag.BoolVar(&buildA, "a", false, "") cmd.Flag.BoolVar(&buildN, "n", false, "") cmd.Flag.IntVar(&buildP, "p", buildP, "") -@@ -762,6 +767,11 @@ func (b *builder) build(a *action) (err error) { +@@ -1020,6 +1025,11 @@ func (b *builder) build(a *action) (err // install is the action for installing a single package or executable. func (b *builder) install(a *action) (err error) { ++++++ go-rpmlintrc ++++++ addFilter("binaryinfo-readelf-failed") # go binaries are suposedly ELF-compliant addFilter("statically-linked-binary") # go doesn't yet support dynamic linking ++++++ go1.2.src.tar.gz -> go1.3.src.tar.gz ++++++ /work/SRC/openSUSE:Factory/go/go1.2.src.tar.gz /work/SRC/openSUSE:Factory/.go.new/go1.3.src.tar.gz differ: char 12, line 1 ++++++ verbose-build.patch ++++++ --- /var/tmp/diff_new_pack.dwmxQf/_old 2014-08-14 14:58:13.000000000 +0200 +++ /var/tmp/diff_new_pack.dwmxQf/_new 2014-08-14 14:58:13.000000000 +0200 @@ -1,19 +1,19 @@ -diff --git a/src/make.bash b/src/make.bash -index 8d0f6eb..905ec04 100755 ---- a/src/make.bash -+++ b/src/make.bash -@@ -140,12 +140,12 @@ echo - if [ "$GOHOSTARCH" != "$GOARCH" -o "$GOHOSTOS" != "$GOOS" ]; then - echo "# Building packages and commands for host, $GOHOSTOS/$GOHOSTARCH." - GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH \ +Index: go/src/make.bash +=================================================================== +--- go.orig/src/make.bash ++++ go/src/make.bash +@@ -166,12 +166,12 @@ if [ "$GOHOSTARCH" != "$GOARCH" -o "$GOH + # CC_FOR_TARGET is recorded as the default compiler for the go tool. When building for the host, however, + # use the host compiler, CC, from `cmd/dist/dist env` instead. + CC=$CC GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH \ - "$GOTOOLDIR"/go_bootstrap install -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std + "$GOTOOLDIR"/go_bootstrap install -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v -x std echo fi echo "# Building packages and commands for $GOOS/$GOARCH." --"$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std -+"$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v -x std +-CC=$CC_FOR_TARGET "$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std ++CC=$CC_FOR_TARGET "$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v -x std echo rm -f "$GOTOOLDIR"/go_bootstrap -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
