golang-1.14.git
5 years agoMerge version 1.14.4-1+rpi1 and 1.14.4-2 to produce 1.14.4-2+rpi1 archive/raspbian/1.14.4-2+rpi1 raspbian/1.14.4-2+rpi1
Raspbian automatic forward porter [Thu, 9 Jul 2020 14:31:33 +0000 (15:31 +0100)]
Merge version 1.14.4-1+rpi1 and 1.14.4-2 to produce 1.14.4-2+rpi1

5 years agoMerge golang-1.14 (1.14.4-2) import into refs/heads/workingbranch
Shengjing Zhu [Fri, 3 Jul 2020 13:42:15 +0000 (14:42 +0100)]
Merge golang-1.14 (1.14.4-2) import into refs/heads/workingbranch

5 years ago[PATCH] cmd/go, cmd/cgo: pass -mfp32 and -mhard/soft-float to MIPS GCC
YunQiang Su [Tue, 9 Jun 2020 04:09:58 +0000 (04:09 +0000)]
[PATCH] cmd/go, cmd/cgo: pass -mfp32 and -mhard/soft-float to MIPS GCC

For mips32 currently, we are using FP32, while the gcc may be FPXX,
which may generate .MIPS.abiflags and .gnu.attributes section with
value as FPXX. So the kernel will treat the exe as FPXX, and may
choose to use FR=1 FPU mode for it.
Currently, in Go, we use 2 lwc1 to load both half of a double value
to a pair of even-odd FPR. This behavior can only work with FR=0 mode.

In FR=1 mode, all of 32 FPR are 64bit. If we lwc1 the high-half of a double
value to an odd FPR, and try to use the previous even FPR to compute, the
real high-half of even FPR will be unpredicatable.
We set -mfp32 to force the gcc generate FP32 code and section value.

More details about FP32/FPXX/FP64 are explained in:
https://web.archive.org/web/20180828210612/https://dmz-portal.mips.com/wiki/MIPS_O32_ABI_-_FR0_and_FR1_Interlinking

When GOMIPS/GOMIPS64 is set as softfloat, we should also pass
 -msoft-float to gcc.

Here we also add -mno-odd-spreg option, since Loongson's CPU cannot use
odd-number FR in FR=0 mode.

Fixes #39435

Change-Id: I54026ad416a815fe43a9261ebf6d02e5519c3930

Gbp-Pq: Name 0004-Mips32-cgo-use-mfp32-option.patch

5 years agoFix FTBFS on $HOME managed with git.
Bryan C. Mills [Fri, 13 Mar 2020 16:51:09 +0000 (12:51 -0400)]
Fix FTBFS on $HOME managed with git.

This is a cherry-pick of
https://github.com/golang/go/commit/e2a9ea035d73df84c813132417366e8e01777c8d

cmd/go/internal/modload: suppress the 'go mod init' hint for GOROOT more aggressively

Previously, we suppressed a `to create a module there, run: … go mod
init' warning only if the config file itself (such as .git/config) was
found in GOROOT. However, our release tarballs don't include the
.git/config, so that case was not encountered, and the warning could
occur based on a config file found in some parent directory (outside
of GOROOT entirely).

Instead, skip the directory walk completely if the working directory
is anywhere in GOROOT.

Fixes #34191

Change-Id: I9f774901bfbb53b700407c4882f37d6339d023fe
Reviewed-on: https://go-review.googlesource.com/c/go/+/223340
Run-TryBot: Bryan C. Mills <bcmills@google.com>
Reviewed-by: Jay Conrod <jayconrod@google.com>
Gbp-Pq: Name 0003-Fix-FTBFS-on-HOME-managed-with-git.patch

5 years agoFix Lintian warnings about wrong interpreter path
Dr. Tobias Quathamer [Thu, 1 Aug 2019 11:50:48 +0000 (13:50 +0200)]
Fix Lintian warnings about wrong interpreter path

The command used for this change is as follows:

grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"

Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch

5 years agoDisable test for UserHomeDir.
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:25:06 +0000 (14:25 +0100)]
Disable test for UserHomeDir.

On Debian buildds, the user home dir does not exist, so this test fails.

Gbp-Pq: Name 0001-Disable-test-for-UserHomeDir.patch

5 years agogolang-1.14 (1.14.4-2) unstable; urgency=medium
Shengjing Zhu [Fri, 3 Jul 2020 13:42:15 +0000 (14:42 +0100)]
golang-1.14 (1.14.4-2) unstable; urgency=medium

  * Team upload.
  * Source-only upload to rebuild on mipsel.

[dgit import unpatched golang-1.14 1.14.4-2]

5 years agoImport golang-1.14_1.14.4-2.debian.tar.xz
Shengjing Zhu [Fri, 3 Jul 2020 13:42:15 +0000 (14:42 +0100)]
Import golang-1.14_1.14.4-2.debian.tar.xz

[dgit import tarball golang-1.14 1.14.4-2 golang-1.14_1.14.4-2.debian.tar.xz]

5 years agoMerge version 1.14.3-2+rpi1 and 1.14.4-1 to produce 1.14.4-1+rpi1 archive/raspbian/1.14.4-1+rpi1 raspbian/1.14.4-1+rpi1
Raspbian automatic forward porter [Thu, 25 Jun 2020 06:54:32 +0000 (07:54 +0100)]
Merge version 1.14.3-2+rpi1 and 1.14.4-1 to produce 1.14.4-1+rpi1

5 years agoMerge golang-1.14 (1.14.4-1) import into refs/heads/workingbranch
Dr. Tobias Quathamer [Mon, 15 Jun 2020 19:19:41 +0000 (20:19 +0100)]
Merge golang-1.14 (1.14.4-1) import into refs/heads/workingbranch

5 years agoImport golang-1.14_1.14.4.orig.tar.gz
Dr. Tobias Quathamer [Mon, 15 Jun 2020 19:19:41 +0000 (20:19 +0100)]
Import golang-1.14_1.14.4.orig.tar.gz

[dgit import orig golang-1.14_1.14.4.orig.tar.gz]

5 years agoFix FTBFS on $HOME managed with git.
Bryan C. Mills [Fri, 13 Mar 2020 16:51:09 +0000 (12:51 -0400)]
Fix FTBFS on $HOME managed with git.

This is a cherry-pick of
https://github.com/golang/go/commit/e2a9ea035d73df84c813132417366e8e01777c8d

cmd/go/internal/modload: suppress the 'go mod init' hint for GOROOT more aggressively

Previously, we suppressed a `to create a module there, run: … go mod
init' warning only if the config file itself (such as .git/config) was
found in GOROOT. However, our release tarballs don't include the
.git/config, so that case was not encountered, and the warning could
occur based on a config file found in some parent directory (outside
of GOROOT entirely).

Instead, skip the directory walk completely if the working directory
is anywhere in GOROOT.

Fixes #34191

Change-Id: I9f774901bfbb53b700407c4882f37d6339d023fe
Reviewed-on: https://go-review.googlesource.com/c/go/+/223340
Run-TryBot: Bryan C. Mills <bcmills@google.com>
Reviewed-by: Jay Conrod <jayconrod@google.com>
Gbp-Pq: Name 0003-Fix-FTBFS-on-HOME-managed-with-git.patch

5 years agoFix Lintian warnings about wrong interpreter path
Dr. Tobias Quathamer [Thu, 1 Aug 2019 11:50:48 +0000 (13:50 +0200)]
Fix Lintian warnings about wrong interpreter path

The command used for this change is as follows:

grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"

Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch

5 years agoDisable test for UserHomeDir.
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:25:06 +0000 (14:25 +0100)]
Disable test for UserHomeDir.

On Debian buildds, the user home dir does not exist, so this test fails.

Gbp-Pq: Name 0001-Disable-test-for-UserHomeDir.patch

5 years agogolang-1.14 (1.14.4-1) unstable; urgency=medium
Dr. Tobias Quathamer [Mon, 15 Jun 2020 19:19:41 +0000 (20:19 +0100)]
golang-1.14 (1.14.4-1) unstable; urgency=medium

  * New upstream version 1.14.4
    - Refresh patches

[dgit import unpatched golang-1.14 1.14.4-1]

5 years agoImport golang-1.14_1.14.4-1.debian.tar.xz
Dr. Tobias Quathamer [Mon, 15 Jun 2020 19:19:41 +0000 (20:19 +0100)]
Import golang-1.14_1.14.4-1.debian.tar.xz

[dgit import tarball golang-1.14 1.14.4-1 golang-1.14_1.14.4-1.debian.tar.xz]

5 years agoMerge version 1.14.2-1+rpi1 and 1.14.3-2 to produce 1.14.3-2+rpi1 archive/raspbian/1.14.3-2+rpi1 raspbian/1.14.3-2+rpi1
Raspbian automatic forward porter [Sat, 23 May 2020 21:54:55 +0000 (22:54 +0100)]
Merge version 1.14.2-1+rpi1 and 1.14.3-2 to produce 1.14.3-2+rpi1

5 years agoMerge golang-1.14 (1.14.3-2) import into refs/heads/workingbranch
Dr. Tobias Quathamer [Sat, 16 May 2020 12:32:28 +0000 (13:32 +0100)]
Merge golang-1.14 (1.14.3-2) import into refs/heads/workingbranch

5 years agoFix FTBFS on $HOME managed with git.
Bryan C. Mills [Fri, 13 Mar 2020 16:51:09 +0000 (12:51 -0400)]
Fix FTBFS on $HOME managed with git.

This is a cherry-pick of
https://github.com/golang/go/commit/e2a9ea035d73df84c813132417366e8e01777c8d

cmd/go/internal/modload: suppress the 'go mod init' hint for GOROOT more aggressively

Previously, we suppressed a `to create a module there, run: … go mod
init' warning only if the config file itself (such as .git/config) was
found in GOROOT. However, our release tarballs don't include the
.git/config, so that case was not encountered, and the warning could
occur based on a config file found in some parent directory (outside
of GOROOT entirely).

Instead, skip the directory walk completely if the working directory
is anywhere in GOROOT.

Fixes #34191

Change-Id: I9f774901bfbb53b700407c4882f37d6339d023fe
Reviewed-on: https://go-review.googlesource.com/c/go/+/223340
Run-TryBot: Bryan C. Mills <bcmills@google.com>
Reviewed-by: Jay Conrod <jayconrod@google.com>
Gbp-Pq: Name 0003-Fix-FTBFS-on-HOME-managed-with-git.patch

5 years agoFix Lintian warnings about wrong interpreter path
Dr. Tobias Quathamer [Thu, 1 Aug 2019 11:50:48 +0000 (13:50 +0200)]
Fix Lintian warnings about wrong interpreter path

The command used for this change is as follows:

grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"

Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch

5 years agoDisable test for UserHomeDir.
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:25:06 +0000 (14:25 +0100)]
Disable test for UserHomeDir.

On Debian buildds, the user home dir does not exist, so this test fails.

Gbp-Pq: Name 0001-Disable-test-for-UserHomeDir.patch

5 years agogolang-1.14 (1.14.3-2) unstable; urgency=medium
Dr. Tobias Quathamer [Sat, 16 May 2020 12:32:28 +0000 (13:32 +0100)]
golang-1.14 (1.14.3-2) unstable; urgency=medium

  * Increase the test timeout that made some builds succeed
    there on slow hardware (such as emulated riscv64).
    Thanks to Gianfranco Costamagna (Closes: #960759)

[dgit import unpatched golang-1.14 1.14.3-2]

5 years agoImport golang-1.14_1.14.3-2.debian.tar.xz
Dr. Tobias Quathamer [Sat, 16 May 2020 12:32:28 +0000 (13:32 +0100)]
Import golang-1.14_1.14.3-2.debian.tar.xz

[dgit import tarball golang-1.14 1.14.3-2 golang-1.14_1.14.3-2.debian.tar.xz]

5 years agoImport golang-1.14_1.14.3.orig.tar.gz
Dr. Tobias Quathamer [Fri, 15 May 2020 13:24:43 +0000 (14:24 +0100)]
Import golang-1.14_1.14.3.orig.tar.gz

[dgit import orig golang-1.14_1.14.3.orig.tar.gz]

5 years agoMerge version 1.14.1-1+rpi1 and 1.14.2-1 to produce 1.14.2-1+rpi1 archive/raspbian/1.14.2-1+rpi1 raspbian/1.14.2-1+rpi1
Raspbian automatic forward porter [Sun, 19 Apr 2020 12:59:54 +0000 (13:59 +0100)]
Merge version 1.14.1-1+rpi1 and 1.14.2-1 to produce 1.14.2-1+rpi1

5 years agoMerge golang-1.14 (1.14.2-1) import into refs/heads/workingbranch
Dr. Tobias Quathamer [Fri, 10 Apr 2020 12:34:21 +0000 (13:34 +0100)]
Merge golang-1.14 (1.14.2-1) import into refs/heads/workingbranch

5 years agoFix FTBFS on $HOME managed with git.
Bryan C. Mills [Fri, 13 Mar 2020 16:51:09 +0000 (12:51 -0400)]
Fix FTBFS on $HOME managed with git.

This is a cherry-pick of
https://github.com/golang/go/commit/e2a9ea035d73df84c813132417366e8e01777c8d

cmd/go/internal/modload: suppress the 'go mod init' hint for GOROOT more aggressively

Previously, we suppressed a `to create a module there, run: … go mod
init' warning only if the config file itself (such as .git/config) was
found in GOROOT. However, our release tarballs don't include the
.git/config, so that case was not encountered, and the warning could
occur based on a config file found in some parent directory (outside
of GOROOT entirely).

Instead, skip the directory walk completely if the working directory
is anywhere in GOROOT.

Fixes #34191

Change-Id: I9f774901bfbb53b700407c4882f37d6339d023fe
Reviewed-on: https://go-review.googlesource.com/c/go/+/223340
Run-TryBot: Bryan C. Mills <bcmills@google.com>
Reviewed-by: Jay Conrod <jayconrod@google.com>
Gbp-Pq: Name 0003-Fix-FTBFS-on-HOME-managed-with-git.patch

5 years agoFix Lintian warnings about wrong interpreter path
Dr. Tobias Quathamer [Thu, 1 Aug 2019 11:50:48 +0000 (13:50 +0200)]
Fix Lintian warnings about wrong interpreter path

The command used for this change is as follows:

grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"

Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch

5 years agoDisable test for UserHomeDir.
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:25:06 +0000 (14:25 +0100)]
Disable test for UserHomeDir.

On Debian buildds, the user home dir does not exist, so this test fails.

Gbp-Pq: Name 0001-Disable-test-for-UserHomeDir.patch

5 years agogolang-1.14 (1.14.2-1) unstable; urgency=medium
Dr. Tobias Quathamer [Fri, 10 Apr 2020 12:34:21 +0000 (13:34 +0100)]
golang-1.14 (1.14.2-1) unstable; urgency=medium

  * New upstream version 1.14.2

[dgit import unpatched golang-1.14 1.14.2-1]

5 years agoImport golang-1.14_1.14.2.orig.tar.gz
Dr. Tobias Quathamer [Fri, 10 Apr 2020 12:34:21 +0000 (13:34 +0100)]
Import golang-1.14_1.14.2.orig.tar.gz

[dgit import orig golang-1.14_1.14.2.orig.tar.gz]

5 years agoImport golang-1.14_1.14.2-1.debian.tar.xz
Dr. Tobias Quathamer [Fri, 10 Apr 2020 12:34:21 +0000 (13:34 +0100)]
Import golang-1.14_1.14.2-1.debian.tar.xz

[dgit import tarball golang-1.14 1.14.2-1 golang-1.14_1.14.2-1.debian.tar.xz]

5 years agoMerge version 1.14-2+rpi1 and 1.14.1-1 to produce 1.14.1-1+rpi1 archive/raspbian/1.14.1-1+rpi1 raspbian/1.14.1-1+rpi1
Raspbian automatic forward porter [Fri, 27 Mar 2020 04:23:06 +0000 (04:23 +0000)]
Merge version 1.14-2+rpi1 and 1.14.1-1 to produce 1.14.1-1+rpi1

5 years agoMerge golang-1.14 (1.14.1-1) import into refs/heads/workingbranch
Dr. Tobias Quathamer [Sat, 21 Mar 2020 13:01:31 +0000 (13:01 +0000)]
Merge golang-1.14 (1.14.1-1) import into refs/heads/workingbranch

5 years agoFix FTBFS on $HOME managed with git.
Bryan C. Mills [Fri, 13 Mar 2020 16:51:09 +0000 (12:51 -0400)]
Fix FTBFS on $HOME managed with git.

This is a cherry-pick of
https://github.com/golang/go/commit/e2a9ea035d73df84c813132417366e8e01777c8d

cmd/go/internal/modload: suppress the 'go mod init' hint for GOROOT more aggressively

Previously, we suppressed a `to create a module there, run: … go mod
init' warning only if the config file itself (such as .git/config) was
found in GOROOT. However, our release tarballs don't include the
.git/config, so that case was not encountered, and the warning could
occur based on a config file found in some parent directory (outside
of GOROOT entirely).

Instead, skip the directory walk completely if the working directory
is anywhere in GOROOT.

Fixes #34191

Change-Id: I9f774901bfbb53b700407c4882f37d6339d023fe
Reviewed-on: https://go-review.googlesource.com/c/go/+/223340
Run-TryBot: Bryan C. Mills <bcmills@google.com>
Reviewed-by: Jay Conrod <jayconrod@google.com>
Gbp-Pq: Name 0003-Fix-FTBFS-on-HOME-managed-with-git.patch

5 years agoFix Lintian warnings about wrong interpreter path
Dr. Tobias Quathamer [Thu, 1 Aug 2019 11:50:48 +0000 (13:50 +0200)]
Fix Lintian warnings about wrong interpreter path

The command used for this change is as follows:

grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"

Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch

5 years agoDisable test for UserHomeDir.
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:25:06 +0000 (14:25 +0100)]
Disable test for UserHomeDir.

On Debian buildds, the user home dir does not exist, so this test fails.

Gbp-Pq: Name 0001-Disable-test-for-UserHomeDir.patch

5 years agogolang-1.14 (1.14.1-1) unstable; urgency=medium
Dr. Tobias Quathamer [Sat, 21 Mar 2020 13:01:31 +0000 (13:01 +0000)]
golang-1.14 (1.14.1-1) unstable; urgency=medium

  * New upstream version 1.14.1
    - Add new patch to fix FTBFS on $HOME managed with git.
      Thanks to Guillem Jover <gjover@sipwise.com> (Closes: #953276)

[dgit import unpatched golang-1.14 1.14.1-1]

5 years agoImport golang-1.14_1.14.1.orig.tar.gz
Dr. Tobias Quathamer [Sat, 21 Mar 2020 13:01:31 +0000 (13:01 +0000)]
Import golang-1.14_1.14.1.orig.tar.gz

[dgit import orig golang-1.14_1.14.1.orig.tar.gz]

5 years agoImport golang-1.14_1.14.1-1.debian.tar.xz
Dr. Tobias Quathamer [Sat, 21 Mar 2020 13:01:31 +0000 (13:01 +0000)]
Import golang-1.14_1.14.1-1.debian.tar.xz

[dgit import tarball golang-1.14 1.14.1-1 golang-1.14_1.14.1-1.debian.tar.xz]

5 years agoMerge tag '1.13.5-1+rpi1' of 172.17.3.10:/build/git/g/golang-1.13 into bullseye-staging archive/raspbian/1.14-2+rpi1 raspbian/1.14-2+rpi1
Peter Michael Green [Sun, 15 Mar 2020 07:48:00 +0000 (07:48 +0000)]
Merge tag '1.13.5-1+rpi1' of 172.17.3.10:/build/git/g/golang-1.13 into bullseye-staging

Conflicts:
debian/changelog

5 years agoMerge golang-1.14 (1.14-2) import into refs/heads/workingbranch
Dr. Tobias Quathamer [Mon, 9 Mar 2020 13:00:39 +0000 (13:00 +0000)]
Merge golang-1.14 (1.14-2) import into refs/heads/workingbranch

5 years agoFix Lintian warnings about wrong interpreter path
Dr. Tobias Quathamer [Thu, 1 Aug 2019 11:50:48 +0000 (13:50 +0200)]
Fix Lintian warnings about wrong interpreter path

The command used for this change is as follows:

grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"

Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch

5 years agoDisable test for UserHomeDir.
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:25:06 +0000 (14:25 +0100)]
Disable test for UserHomeDir.

On Debian buildds, the user home dir does not exist, so this test fails.

Gbp-Pq: Name 0001-Disable-test-for-UserHomeDir.patch

5 years agogolang-1.14 (1.14-2) unstable; urgency=medium
Dr. Tobias Quathamer [Mon, 9 Mar 2020 13:00:39 +0000 (13:00 +0000)]
golang-1.14 (1.14-2) unstable; urgency=medium

  * Fix FTBFS if built twice in a row.
    Some paths of autogenerated files have been changed upstream,
    so that the removal of those files after the build did no
    longer succeed.
    Thanks to Guillem Jover (Closes: #953277)
  * Update Standards-Version to 4.5.0, no changes needed

[dgit import unpatched golang-1.14 1.14-2]

5 years agoImport golang-1.14_1.14-2.debian.tar.xz
Dr. Tobias Quathamer [Mon, 9 Mar 2020 13:00:39 +0000 (13:00 +0000)]
Import golang-1.14_1.14-2.debian.tar.xz

[dgit import tarball golang-1.14 1.14-2 golang-1.14_1.14-2.debian.tar.xz]

5 years agoImport golang-1.14_1.14.orig.tar.gz
Dr. Tobias Quathamer [Tue, 25 Feb 2020 20:33:50 +0000 (20:33 +0000)]
Import golang-1.14_1.14.orig.tar.gz

[dgit import orig golang-1.14_1.14.orig.tar.gz]

6 years agoMerge version 1.13.4-1+rpi1 and 1.13.5-1 to produce 1.13.5-1+rpi1
Raspbian automatic forward porter [Wed, 11 Dec 2019 14:44:43 +0000 (14:44 +0000)]
Merge version 1.13.4-1+rpi1 and 1.13.5-1 to produce 1.13.5-1+rpi1

6 years agoMerge golang-1.13 (1.13.5-1) import into refs/heads/workingbranch
Dr. Tobias Quathamer [Thu, 5 Dec 2019 11:27:21 +0000 (11:27 +0000)]
Merge golang-1.13 (1.13.5-1) import into refs/heads/workingbranch

6 years agoFix Lintian warnings about wrong interpreter path
Dr. Tobias Quathamer [Thu, 1 Aug 2019 11:50:48 +0000 (13:50 +0200)]
Fix Lintian warnings about wrong interpreter path

The command used for this change is as follows:

grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"

Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch

6 years agoDisable test for UserHomeDir.
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:25:06 +0000 (14:25 +0100)]
Disable test for UserHomeDir.

On Debian buildds, the user home dir does not exist, so this test fails.

Gbp-Pq: Name 0001-Disable-test-for-UserHomeDir.patch

6 years agogolang-1.13 (1.13.5-1) unstable; urgency=medium
Dr. Tobias Quathamer [Thu, 5 Dec 2019 11:27:21 +0000 (11:27 +0000)]
golang-1.13 (1.13.5-1) unstable; urgency=medium

  * New upstream version 1.13.5

[dgit import unpatched golang-1.13 1.13.5-1]

6 years agoImport golang-1.13_1.13.5.orig.tar.gz
Dr. Tobias Quathamer [Thu, 5 Dec 2019 11:27:21 +0000 (11:27 +0000)]
Import golang-1.13_1.13.5.orig.tar.gz

[dgit import orig golang-1.13_1.13.5.orig.tar.gz]

6 years agoImport golang-1.13_1.13.5-1.debian.tar.xz
Dr. Tobias Quathamer [Thu, 5 Dec 2019 11:27:21 +0000 (11:27 +0000)]
Import golang-1.13_1.13.5-1.debian.tar.xz

[dgit import tarball golang-1.13 1.13.5-1 golang-1.13_1.13.5-1.debian.tar.xz]

6 years agoMerge version 1.13.1-1+rpi1 and 1.13.4-1 to produce 1.13.4-1+rpi1
Raspbian automatic forward porter [Thu, 7 Nov 2019 17:49:59 +0000 (17:49 +0000)]
Merge version 1.13.1-1+rpi1 and 1.13.4-1 to produce 1.13.4-1+rpi1

6 years agoMerge golang-1.13 (1.13.4-1) import into refs/heads/workingbranch
Dr. Tobias Quathamer [Fri, 1 Nov 2019 20:07:16 +0000 (20:07 +0000)]
Merge golang-1.13 (1.13.4-1) import into refs/heads/workingbranch

6 years agoFix Lintian warnings about wrong interpreter path
Dr. Tobias Quathamer [Thu, 1 Aug 2019 11:50:48 +0000 (13:50 +0200)]
Fix Lintian warnings about wrong interpreter path

The command used for this change is as follows:

grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"

Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch

6 years agoDisable test for UserHomeDir.
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:25:06 +0000 (14:25 +0100)]
Disable test for UserHomeDir.

On Debian buildds, the user home dir does not exist, so this test fails.

Gbp-Pq: Name 0001-Disable-test-for-UserHomeDir.patch

6 years agogolang-1.13 (1.13.4-1) unstable; urgency=medium
Dr. Tobias Quathamer [Fri, 1 Nov 2019 20:07:16 +0000 (20:07 +0000)]
golang-1.13 (1.13.4-1) unstable; urgency=medium

  * New upstream version 1.13.4
    - Refresh patches

[dgit import unpatched golang-1.13 1.13.4-1]

6 years agoImport golang-1.13_1.13.4.orig.tar.gz
Dr. Tobias Quathamer [Fri, 1 Nov 2019 20:07:16 +0000 (20:07 +0000)]
Import golang-1.13_1.13.4.orig.tar.gz

[dgit import orig golang-1.13_1.13.4.orig.tar.gz]

6 years agoImport golang-1.13_1.13.4-1.debian.tar.xz
Dr. Tobias Quathamer [Fri, 1 Nov 2019 20:07:16 +0000 (20:07 +0000)]
Import golang-1.13_1.13.4-1.debian.tar.xz

[dgit import tarball golang-1.13 1.13.4-1 golang-1.13_1.13.4-1.debian.tar.xz]

6 years agoMerge changes from golang-1.17 '1.12.7-3+rpi1' into golang-1.18 packaging.
Peter Michael Green [Tue, 22 Oct 2019 20:25:18 +0000 (20:25 +0000)]
Merge changes from golang-1.17 '1.12.7-3+rpi1' into golang-1.18 packaging.

6 years agopsuedomerge to tie together broken upstream history
Peter Michael Green [Tue, 22 Oct 2019 20:23:39 +0000 (20:23 +0000)]
psuedomerge to tie together broken upstream history

6 years agoMerge golang-1.13 (1.13.3-1) import into refs/heads/workingbranch
Dr. Tobias Quathamer [Sat, 19 Oct 2019 11:30:36 +0000 (12:30 +0100)]
Merge golang-1.13 (1.13.3-1) import into refs/heads/workingbranch

6 years agoFix Lintian warnings about wrong interpreter path
Dr. Tobias Quathamer [Thu, 1 Aug 2019 11:50:48 +0000 (13:50 +0200)]
Fix Lintian warnings about wrong interpreter path

The command used for this change is as follows:

grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"

Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch

6 years agoDisable test for UserHomeDir.
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:25:06 +0000 (14:25 +0100)]
Disable test for UserHomeDir.

On Debian buildds, the user home dir does not exist, so this test fails.

Gbp-Pq: Name 0001-Disable-test-for-UserHomeDir.patch

6 years agogolang-1.13 (1.13.3-1) unstable; urgency=medium
Dr. Tobias Quathamer [Sat, 19 Oct 2019 11:30:36 +0000 (12:30 +0100)]
golang-1.13 (1.13.3-1) unstable; urgency=medium

  * New upstream version 1.13.3
    - Refresh patch
    - crypto/dsa: invalid public key causes panic in dsa.Verify.
      Fixes CVE-2019-17596. Closes: #942628
  * Update Standards-Version to 4.4.1, no changes needed

[dgit import unpatched golang-1.13 1.13.3-1]

6 years agoImport golang-1.13_1.13.3.orig.tar.gz
Dr. Tobias Quathamer [Sat, 19 Oct 2019 11:30:36 +0000 (12:30 +0100)]
Import golang-1.13_1.13.3.orig.tar.gz

[dgit import orig golang-1.13_1.13.3.orig.tar.gz]

6 years agoImport golang-1.13_1.13.3-1.debian.tar.xz
Dr. Tobias Quathamer [Sat, 19 Oct 2019 11:30:36 +0000 (12:30 +0100)]
Import golang-1.13_1.13.3-1.debian.tar.xz

[dgit import tarball golang-1.13 1.13.3-1 golang-1.13_1.13.3-1.debian.tar.xz]

6 years agoMerge golang-1.13 (1.13.1-1) import into refs/heads/workingbranch
Dr. Tobias Quathamer [Thu, 26 Sep 2019 09:32:14 +0000 (10:32 +0100)]
Merge golang-1.13 (1.13.1-1) import into refs/heads/workingbranch

6 years agoFix Lintian warnings about wrong interpreter path
Dr. Tobias Quathamer [Thu, 1 Aug 2019 11:50:48 +0000 (13:50 +0200)]
Fix Lintian warnings about wrong interpreter path

The command used for this change is as follows:

grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"

Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch

6 years agoDisable test for UserHomeDir.
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:25:06 +0000 (14:25 +0100)]
Disable test for UserHomeDir.

On Debian buildds, the user home dir does not exist, so this test fails.

Gbp-Pq: Name 0001-Disable-test-for-UserHomeDir.patch

6 years agogolang-1.13 (1.13.1-1) unstable; urgency=medium
Dr. Tobias Quathamer [Thu, 26 Sep 2019 09:32:14 +0000 (10:32 +0100)]
golang-1.13 (1.13.1-1) unstable; urgency=medium

  * New upstream version 1.13.1
    - net/textproto: don't normalize headers with spaces before the colon.
      Fixes CVE-2019-16276. See https://github.com/golang/go/issues/34541
      and Debian bug #941173

[dgit import unpatched golang-1.13 1.13.1-1]

6 years agoImport golang-1.13_1.13.1.orig.tar.gz
Dr. Tobias Quathamer [Thu, 26 Sep 2019 09:32:14 +0000 (10:32 +0100)]
Import golang-1.13_1.13.1.orig.tar.gz

[dgit import orig golang-1.13_1.13.1.orig.tar.gz]

6 years agoImport golang-1.13_1.13.1-1.debian.tar.xz
Dr. Tobias Quathamer [Thu, 26 Sep 2019 09:32:14 +0000 (10:32 +0100)]
Import golang-1.13_1.13.1-1.debian.tar.xz

[dgit import tarball golang-1.13 1.13.1-1 golang-1.13_1.13.1-1.debian.tar.xz]

6 years agoMerge golang-1.12 (1.12.7-3+rpi1) import into refs/heads/workingbranch
Peter Michael Green [Fri, 16 Aug 2019 20:02:16 +0000 (21:02 +0100)]
Merge golang-1.12 (1.12.7-3+rpi1) import into refs/heads/workingbranch

6 years agoDisable test for UserHomeDir.
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:25:06 +0000 (14:25 +0100)]
Disable test for UserHomeDir.

On Debian buildds, the user home dir does not exist, so this test fails.

Gbp-Pq: Name 0004-Disable-test-for-UserHomeDir.patch

6 years agoarm64/arm64asm: recognise new ssbb/pssbb mnemonics from objdump
Michael Hudson-Doyle [Thu, 20 Sep 2018 07:20:31 +0000 (09:20 +0200)]
arm64/arm64asm: recognise new ssbb/pssbb mnemonics from objdump

Fixes golang/go#27754

Change-Id: I8fcc3bc3c718cf0d93afbd1d383df48316b522d4
Reviewed-on: https://go-review.googlesource.com/136455
Run-TryBot: Michael Hudson-Doyle <michael.hudson@canonical.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Cherry Zhang <cherryyz@google.com>
Gbp-Pq: Name 0003-arm64-arm64asm-recognise-new-ssbb-pssbb-mnemonics-fr.patch

6 years agoFix Lintian warnings about wrong interpreter path
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:12:10 +0000 (14:12 +0100)]
Fix Lintian warnings about wrong interpreter path

The command used for this change is as follows:

grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"

Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch

6 years agoReproducible BUILD_PATH_PREFIX_MAP
Michael Stapelberg [Thu, 8 Feb 2018 09:00:00 +0000 (10:00 +0100)]
Reproducible BUILD_PATH_PREFIX_MAP

Make builds reproducible by honoring BUILD_PATH_PREFIX_MAP
Upstream has rejected the patch in this form and promised to implement an
alternative they are happy with instead. That hasn't happened yet though.

Bug: https://github.com/golang/go/issues/22491, https://github.com/golang/go/issues/16860
Forwarded: https://golang.org/cl/73291 (rejected upstream though)

Gbp-Pq: Name 0001-Reproducible-BUILD_PATH_PREFIX_MAP.patch

6 years agogolang-1.12 (1.12.7-3+rpi1) bullseye-staging; urgency=medium
Peter Michael Green [Fri, 16 Aug 2019 20:02:16 +0000 (21:02 +0100)]
golang-1.12 (1.12.7-3+rpi1) bullseye-staging; urgency=medium

  [changes brought forward from golang-1.10 1.10~rc2-1+rpi1 by Peter Michael Green <plugwash@raspbian.org> at Sat, 24 Feb 2018 12:22:04 +0000]
  * Build with GOARM=6
  * Disable testsuite.
  * Fix clean target.

  [changes introduced in golang-1.12 1.12.7-3+rpi1 by Peter Michael Green]
  * Further clean target fixing.

[dgit import unpatched golang-1.12 1.12.7-3+rpi1]

6 years agoImport golang-1.12_1.12.7-3+rpi1.debian.tar.xz
Peter Michael Green [Fri, 16 Aug 2019 20:02:16 +0000 (21:02 +0100)]
Import golang-1.12_1.12.7-3+rpi1.debian.tar.xz

[dgit import tarball golang-1.12 1.12.7-3+rpi1 golang-1.12_1.12.7-3+rpi1.debian.tar.xz]

6 years agoMerge golang-1.12 (1.12.7-3) import into refs/heads/workingbranch
Dr. Tobias Quathamer [Mon, 5 Aug 2019 19:49:35 +0000 (20:49 +0100)]
Merge golang-1.12 (1.12.7-3) import into refs/heads/workingbranch

6 years agoDisable test for UserHomeDir.
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:25:06 +0000 (14:25 +0100)]
Disable test for UserHomeDir.

On Debian buildds, the user home dir does not exist, so this test fails.

Gbp-Pq: Name 0004-Disable-test-for-UserHomeDir.patch

6 years agoarm64/arm64asm: recognise new ssbb/pssbb mnemonics from objdump
Michael Hudson-Doyle [Thu, 20 Sep 2018 07:20:31 +0000 (09:20 +0200)]
arm64/arm64asm: recognise new ssbb/pssbb mnemonics from objdump

Fixes golang/go#27754

Change-Id: I8fcc3bc3c718cf0d93afbd1d383df48316b522d4
Reviewed-on: https://go-review.googlesource.com/136455
Run-TryBot: Michael Hudson-Doyle <michael.hudson@canonical.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Cherry Zhang <cherryyz@google.com>
Gbp-Pq: Name 0003-arm64-arm64asm-recognise-new-ssbb-pssbb-mnemonics-fr.patch

6 years agoFix Lintian warnings about wrong interpreter path
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:12:10 +0000 (14:12 +0100)]
Fix Lintian warnings about wrong interpreter path

The command used for this change is as follows:

grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"

Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch

6 years agoReproducible BUILD_PATH_PREFIX_MAP
Michael Stapelberg [Thu, 8 Feb 2018 09:00:00 +0000 (10:00 +0100)]
Reproducible BUILD_PATH_PREFIX_MAP

Make builds reproducible by honoring BUILD_PATH_PREFIX_MAP
Upstream has rejected the patch in this form and promised to implement an
alternative they are happy with instead. That hasn't happened yet though.

Bug: https://github.com/golang/go/issues/22491, https://github.com/golang/go/issues/16860
Forwarded: https://golang.org/cl/73291 (rejected upstream though)

Gbp-Pq: Name 0001-Reproducible-BUILD_PATH_PREFIX_MAP.patch

6 years agogolang-1.12 (1.12.7-3) unstable; urgency=medium
Dr. Tobias Quathamer [Mon, 5 Aug 2019 19:49:35 +0000 (20:49 +0100)]
golang-1.12 (1.12.7-3) unstable; urgency=medium

  * Set GOCACHE to fix a FTBFS. (Closes: #933958)

[dgit import unpatched golang-1.12 1.12.7-3]

6 years agoImport golang-1.12_1.12.7-3.debian.tar.xz
Dr. Tobias Quathamer [Mon, 5 Aug 2019 19:49:35 +0000 (20:49 +0100)]
Import golang-1.12_1.12.7-3.debian.tar.xz

[dgit import tarball golang-1.12 1.12.7-3 golang-1.12_1.12.7-3.debian.tar.xz]

6 years agoImport golang-1.12_1.12.7.orig.tar.gz
Dr. Tobias Quathamer [Tue, 9 Jul 2019 12:19:07 +0000 (13:19 +0100)]
Import golang-1.12_1.12.7.orig.tar.gz

[dgit import orig golang-1.12_1.12.7.orig.tar.gz]

6 years agoMerge golang-1.12 (1.12~beta2-1) import into refs/heads/workingbranch
Dr. Tobias Quathamer [Fri, 11 Jan 2019 16:14:43 +0000 (16:14 +0000)]
Merge golang-1.12 (1.12~beta2-1) import into refs/heads/workingbranch

6 years agoDisable test for UserHomeDir.
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:25:06 +0000 (14:25 +0100)]
Disable test for UserHomeDir.

On Debian buildds, the user home dir does not exist, so this test fails.

Gbp-Pq: Name 0004-Disable-test-for-UserHomeDir.patch

6 years agoarm64/arm64asm: recognise new ssbb/pssbb mnemonics from objdump
Michael Hudson-Doyle [Thu, 20 Sep 2018 07:20:31 +0000 (09:20 +0200)]
arm64/arm64asm: recognise new ssbb/pssbb mnemonics from objdump

Fixes golang/go#27754

Change-Id: I8fcc3bc3c718cf0d93afbd1d383df48316b522d4
Reviewed-on: https://go-review.googlesource.com/136455
Run-TryBot: Michael Hudson-Doyle <michael.hudson@canonical.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Cherry Zhang <cherryyz@google.com>
Gbp-Pq: Name 0003-arm64-arm64asm-recognise-new-ssbb-pssbb-mnemonics-fr.patch

6 years agoFix Lintian warnings about wrong interpreter path
Dr. Tobias Quathamer [Wed, 19 Dec 2018 13:12:10 +0000 (14:12 +0100)]
Fix Lintian warnings about wrong interpreter path

The command used for this change is as follows:

grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"

Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch

6 years agogolang-1.12 (1.12~beta2-1) unstable; urgency=medium
Dr. Tobias Quathamer [Fri, 11 Jan 2019 16:14:43 +0000 (16:14 +0000)]
golang-1.12 (1.12~beta2-1) unstable; urgency=medium

  * New upstream version 1.12~beta2
    - Remove two patches, applied upstream. Refresh remaining patch.

[dgit import unpatched golang-1.12 1.12~beta2-1]

6 years agoImport golang-1.12_1.12~beta2.orig.tar.gz
Dr. Tobias Quathamer [Fri, 11 Jan 2019 16:14:43 +0000 (16:14 +0000)]
Import golang-1.12_1.12~beta2.orig.tar.gz

[dgit import orig golang-1.12_1.12~beta2.orig.tar.gz]

6 years agoImport golang-1.12_1.12~beta2-1.debian.tar.xz
Dr. Tobias Quathamer [Fri, 11 Jan 2019 16:14:43 +0000 (16:14 +0000)]
Import golang-1.12_1.12~beta2-1.debian.tar.xz

[dgit import tarball golang-1.12 1.12~beta2-1 golang-1.12_1.12~beta2-1.debian.tar.xz]

7 years agoMerge golang-1.10 (1.10.3-1) import into refs/heads/workingbranch
Michael Hudson-Doyle [Thu, 14 Jun 2018 02:55:58 +0000 (03:55 +0100)]
Merge golang-1.10 (1.10.3-1) import into refs/heads/workingbranch

7 years agoreproducible-BUILD_PATH_PREFIX_MAP
Go Compiler Team [Thu, 14 Jun 2018 02:55:58 +0000 (03:55 +0100)]
reproducible-BUILD_PATH_PREFIX_MAP

Gbp-Pq: Name 0002-reproducible-BUILD_PATH_PREFIX_MAP.patch

7 years agogolang-1.10 (1.10.3-1) unstable; urgency=medium
Michael Hudson-Doyle [Thu, 14 Jun 2018 02:55:58 +0000 (03:55 +0100)]
golang-1.10 (1.10.3-1) unstable; urgency=medium

  * New upstream version 1.10.3
  * Restore changelog entry for 1.10.1-3, and fix that for 1.10.2-1, oops.

[dgit import unpatched golang-1.10 1.10.3-1]