From 69b1b25366936f32194afe6bbc1c246d2b3efcb2 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 16 Apr 2024 21:39:16 +0200 Subject: Adding debian version 2:1.21~3. Signed-off-by: Daniel Baumann --- debian/changelog | 9 +++++++++ debian/control | 2 +- debian/helpers/getdefault.pl | 5 +++++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index f3ee1fd..4510287 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +golang-defaults (2:1.21~3) unstable; urgency=medium + + * Extend golang-go to ppc64, but golang-any still points to gccgo-go + on ppc64. + This helps packages that want to use golang-go to on ppc64 even if it + violates the baseline requirements. + + -- Shengjing Zhu Wed, 21 Feb 2024 18:51:50 +0800 + golang-defaults (2:1.21~2) unstable; urgency=medium * Team upload diff --git a/debian/control b/debian/control index f904b34..351f641 100644 --- a/debian/control +++ b/debian/control @@ -18,7 +18,7 @@ Vcs-Git: https://salsa.debian.org/go-team/compiler/golang-defaults.git Homepage: https://golang.org Package: golang-go -Architecture: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el riscv64 s390x +Architecture: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64 ppc64el riscv64 s390x Multi-Arch: same Depends: golang-${golang:Version}-go, golang-src (>= ${source:Version}), diff --git a/debian/helpers/getdefault.pl b/debian/helpers/getdefault.pl index 0c12743..49ca758 100755 --- a/debian/helpers/getdefault.pl +++ b/debian/helpers/getdefault.pl @@ -7,6 +7,11 @@ use strict; use Debian::Debhelper::Dh_Lib; +if (hostarch() eq "ppc64") { + printf("gccgo-go\n"); + exit 0; +} + my %known_packages = map { $_ => 1 } getpackages('arch'); if (exists($known_packages{'golang-go'})) { printf("golang-go\n"); -- cgit v1.2.3