Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package go1.10 for openSUSE:Factory checked in at 2021-05-10 15:34:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/go1.10 (Old) and /work/SRC/openSUSE:Factory/.go1.10.new.2988 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "go1.10" Mon May 10 15:34:11 2021 rev:12 rq:891381 version:1.10.8 Changes: -------- --- /work/SRC/openSUSE:Factory/go1.10/go1.10.changes 2020-06-11 14:44:31.597351848 +0200 +++ /work/SRC/openSUSE:Factory/.go1.10.new.2988/go1.10.changes 2021-05-10 15:34:13.122784384 +0200 @@ -1,0 +2,7 @@ +Fri May 7 06:47:42 UTC 2021 - Richard Biener <rguent...@suse.com> + +- Use gcc-go for Factory +- Add gccgo1.16.patch to allow bootstrap with gccgo from GCC 11. + [boo#1182618] + +------------------------------------------------------------------- New: ---- gccgo1.16.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ go1.10.spec ++++++ --- /var/tmp/diff_new_pack.6fLtrk/_old 2021-05-10 15:34:13.790781827 +0200 +++ /var/tmp/diff_new_pack.6fLtrk/_new 2021-05-10 15:34:13.790781827 +0200 @@ -1,7 +1,7 @@ # # spec file for package go1.10 # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -101,7 +101,7 @@ Summary: A compiled, garbage-collected, concurrent programming language License: BSD-3-Clause Group: Development/Languages/Other -Url: http://golang.org +URL: http://golang.org Source: http://golang.org/dl/go%{version}.src.tar.gz Source1: go-rpmlintrc Source4: README.SUSE @@ -116,6 +116,7 @@ # PATCH-FIX-UPSTREAM marguer...@opensuse.org - find /usr/bin/go-5 when bootstrapping with gcc5-go Patch8: gcc6-go.patch Patch9: gcc7-go.patch +Patch10: gccgo1.16.patch # PATCH-FIX-UPSTREAM (compiler-rt): Fix sanitizer build against latest glibc Patch100: fix-sanitizer-build-against-latest-glibc.patch Patch101: gcc9-rsp-clobber.patch @@ -129,7 +130,12 @@ # SLE12 or Leap 42.x BuildRequires: gcc6-go %else +%if 0%{?suse_version} == 1500 +# SLE15 or Leap 15.x BuildRequires: gcc7-go +%else +BuildRequires: gcc-go +%endif %endif %else # no gcc-go @@ -186,7 +192,7 @@ %package race Summary: Go runtime race detector Group: Development/Languages/Other -Url: https://compiler-rt.llvm.org/ +URL: https://compiler-rt.llvm.org/ Requires: %{name} = %{version} Supplements: %{name} = %{version} ExclusiveArch: %{tsan_arch} @@ -212,7 +218,12 @@ # SLE12 or Leap 42.x %patch8 -p1 %else +%if 0%{?suse_version} == 1500 +# SLE15 or Leap 15.x %patch9 -p1 +%else +%patch10 -p1 +%endif %endif %endif cp %{SOURCE4} . ++++++ gccgo1.16.patch ++++++ --- go/src/make.bash.orig 2021-05-07 06:29:38.144723482 +0000 +++ go/src/make.bash 2021-05-07 06:29:41.740763279 +0000 @@ -162,6 +162,7 @@ exit 1 fi rm -f cmd/dist/dist +export GO111MODULE=off GOROOT="$GOROOT_BOOTSTRAP" GOOS="" GOARCH="" "$GOROOT_BOOTSTRAP/bin/go" build -o cmd/dist/dist ./cmd/dist # -e doesn't propagate out of eval, so check success by hand.