Your message dated Mon, 09 May 2022 02:35:40 +0000
with message-id <[email protected]>
and subject line Bug#1008050: fixed in golang-github-valyala-fasthttp 1:1.31.0-4
has caused the Debian Bug report #1008050,
regarding golang-github-valyala-fasthttp: autopkgtest regression: 32-bit tests
running on s390x
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1008050: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1008050
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: golang-github-valyala-fasthttp
Version: 1:1.31.0-3
Severity: normal
Tags: patch
User: [email protected]
Usertags: origin-ubuntu jammy ubuntu-patch
Dear Maintainer,
In Ubuntu, the attached patch was applied to fix autopkgtest on s390x:
* debian/patches/0001-bytesconv-add-appropriate-build-tags-for-s390x.patch:
Add appropriate build tags for s390x. This fixes an autopkgtest regression
on this architecture (LP: #1965134).
Thanks,
Nick
diff -Nru
golang-github-valyala-fasthttp-1.31.0/debian/patches/0001-bytesconv-add-appropriate-build-tags-for-s390x.patch
golang-github-valyala-fasthttp-1.31.0/debian/patches/0001-bytesconv-add-appropriate-build-tags-for-s390x.patch
---
golang-github-valyala-fasthttp-1.31.0/debian/patches/0001-bytesconv-add-appropriate-build-tags-for-s390x.patch
1969-12-31 19:00:00.000000000 -0500
+++
golang-github-valyala-fasthttp-1.31.0/debian/patches/0001-bytesconv-add-appropriate-build-tags-for-s390x.patch
2022-03-16 09:52:43.000000000 -0400
@@ -0,0 +1,73 @@
+Description: Add appropriate build tags for s390x
+ The bytesconv 32-bit tests fail on s390x, because it is a 64-bit
+ architecture. Add the appropriate build flags so that 32-bit tests do
+ not run on this architecture.
+Author: Nick Rosbrook <[email protected]>
+Forwarded: https://github.com/valyala/fasthttp/pull/1250
+Last-Update: 2022-03-16
+---
+From d6c6e4a7cc9c17158dc2c93090e5b7d26ca42e15 Mon Sep 17 00:00:00 2001
+From: Nick Rosbrook <[email protected]>
+Date: Wed, 16 Mar 2022 09:41:03 -0400
+Subject: [PATCH] bytesconv: add appropriate build tags for s390x
+
+The bytesconv 32-bit tests fail on s390x, because it is a 64-bit
+architecture. Add the appropriate build flags so that 32-bit tests do
+not run on this architecture.
+---
+ bytesconv_32.go | 4 ++--
+ bytesconv_32_test.go | 4 ++--
+ bytesconv_64.go | 4 ++--
+ bytesconv_64_test.go | 4 ++--
+ 4 files changed, 8 insertions(+), 8 deletions(-)
+diff --git a/bytesconv_32.go b/bytesconv_32.go
+index 6a6fec2..b574883 100644
+--- a/bytesconv_32.go
++++ b/bytesconv_32.go
+@@ -1,5 +1,5 @@
+-//go:build !amd64 && !arm64 && !ppc64 && !ppc64le
+-// +build !amd64,!arm64,!ppc64,!ppc64le
++//go:build !amd64 && !arm64 && !ppc64 && !ppc64le && !s390x
++// +build !amd64,!arm64,!ppc64,!ppc64le,!s390x
+
+ package fasthttp
+
+diff --git a/bytesconv_32_test.go b/bytesconv_32_test.go
+index cec5aa9..3f5d5de 100644
+--- a/bytesconv_32_test.go
++++ b/bytesconv_32_test.go
+@@ -1,5 +1,5 @@
+-//go:build !amd64 && !arm64 && !ppc64 && !ppc64le
+-// +build !amd64,!arm64,!ppc64,!ppc64le
++//go:build !amd64 && !arm64 && !ppc64 && !ppc64le && !s390x
++// +build !amd64,!arm64,!ppc64,!ppc64le,!s390x
+
+ package fasthttp
+
+diff --git a/bytesconv_64.go b/bytesconv_64.go
+index 1300d5a..94d0ec6 100644
+--- a/bytesconv_64.go
++++ b/bytesconv_64.go
+@@ -1,5 +1,5 @@
+-//go:build amd64 || arm64 || ppc64 || ppc64le
+-// +build amd64 arm64 ppc64 ppc64le
++//go:build amd64 || arm64 || ppc64 || ppc64le || s390x
++// +build amd64 arm64 ppc64 ppc64le s390x
+
+ package fasthttp
+
+diff --git a/bytesconv_64_test.go b/bytesconv_64_test.go
+index 5351591..0689809 100644
+--- a/bytesconv_64_test.go
++++ b/bytesconv_64_test.go
+@@ -1,5 +1,5 @@
+-//go:build amd64 || arm64 || ppc64 || ppc64le
+-// +build amd64 arm64 ppc64 ppc64le
++//go:build amd64 || arm64 || ppc64 || ppc64le || s390x
++// +build amd64 arm64 ppc64 ppc64le s390x
+
+ package fasthttp
+
+--
+2.32.0
+
diff -Nru golang-github-valyala-fasthttp-1.31.0/debian/patches/series
golang-github-valyala-fasthttp-1.31.0/debian/patches/series
--- golang-github-valyala-fasthttp-1.31.0/debian/patches/series 1969-12-31
19:00:00.000000000 -0500
+++ golang-github-valyala-fasthttp-1.31.0/debian/patches/series 2022-03-16
09:44:45.000000000 -0400
@@ -0,0 +1 @@
+0001-bytesconv-add-appropriate-build-tags-for-s390x.patch
--- End Message ---
--- Begin Message ---
Source: golang-github-valyala-fasthttp
Source-Version: 1:1.31.0-4
Done: Nobuhiro Iwamatsu <[email protected]>
We believe that the bug you reported is fixed in the latest version of
golang-github-valyala-fasthttp, which is due to be installed in the Debian FTP
archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Nobuhiro Iwamatsu <[email protected]> (supplier of updated
golang-github-valyala-fasthttp package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Sat, 07 May 2022 16:35:07 +0900
Source: golang-github-valyala-fasthttp
Architecture: source
Version: 1:1.31.0-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team <[email protected]>
Changed-By: Nobuhiro Iwamatsu <[email protected]>
Closes: 1008050
Changes:
golang-github-valyala-fasthttp (1:1.31.0-4) unstable; urgency=medium
.
[ Guillem Jover ]
* Update debian/watch file.
.
[ Nobuhiro Iwamatsu ]
* Add d/patches/0001-bytesconv-add-appropriate-build-tags-for-s390x.patch
Add appropriate build tags for s390x. This fixes an autopkgtest regression
on this architecture (Closes: #1008050, LP: #1965134).
Thanks to Nick Rosbrook <[email protected]>.
Checksums-Sha1:
dbacafdfb987f9d197b7cb3173994d0599aab106 2519
golang-github-valyala-fasthttp_1.31.0-4.dsc
44020e8996a10d1f8b7fc78000a9f7c50e93b499 3892
golang-github-valyala-fasthttp_1.31.0-4.debian.tar.xz
4f4b277feaf9664c1d6821108d9831ea1d463265 6643
golang-github-valyala-fasthttp_1.31.0-4_amd64.buildinfo
Checksums-Sha256:
0ff6b671f3ea22ab0dbd679f0f082e16fa0b90768570894cc9c74a9dffe47c29 2519
golang-github-valyala-fasthttp_1.31.0-4.dsc
cf54ffc473dc2136f147f3315d4c52eb25ef6aab572a2208a44bd455e9e17bcf 3892
golang-github-valyala-fasthttp_1.31.0-4.debian.tar.xz
d2a2a17c7fb1fdfba87c7b705a6baf3cee1e2d68efe49a48383d3ef1dd9a5b81 6643
golang-github-valyala-fasthttp_1.31.0-4_amd64.buildinfo
Files:
d88a7fe1fc61f6cc670602c6e799b10a 2519 golang optional
golang-github-valyala-fasthttp_1.31.0-4.dsc
182436b71587f465009af9d7d3fee515 3892 golang optional
golang-github-valyala-fasthttp_1.31.0-4.debian.tar.xz
70be2f43f9990086f6eb54a20f99b517 6643 golang optional
golang-github-valyala-fasthttp_1.31.0-4_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEXmKe5SMhlzV7hM9DMiR/u0CtH6YFAmJ4dUsACgkQMiR/u0Ct
H6YRxg//U/PbQcsh86SzavkIBwmKGit/JSc4OfZtLcjRqLYjKwnloSaG0iFfPEt4
vVIxuTNQrkFPiUzQccMN0wGAxq3puxCBq+GwqVdKMDHZMKiwyC3FKGSYdPJbyb+3
IgQeQZmaT5qK1jVXm+ip472AmDOHrqTROL4XMggfHKwW3626eWRHcSqlE9cpJvD2
DAQVPfOPNylQqNg4ti/6diYjkr0fgTCxBjgsTS3QEALvoGT4zN+G0JlC8lGNQdBJ
pJLMjDbKAoFV4iuu4K/gL8xGJrNIQsAETTmp1gtVdHbAiuoDFVCNuZodixy7VLC1
wn7dk53HlAvie+cdfIMZTUxkNcOpyzMZdddKT9/FQ9y0nVSID0ORvWoXv/q4LBhX
HCi3I5h+5XYzcP6ooE6cIi/5L1XknHhW6vPyLPrme52ksmL2TecKFToBzfKB4PF7
xB0YRirZEl8tEoG6oaWbNFUIbu3cAK7Ka5xHEcDPDcDo3vLJCuwlxz4BGv+ncp2m
CjGVVTVO2dK0Qq2iBxB+/Gzp7TdC5sM6A0RnhSnLjncqdm4Bpoth9TPYOZqTOsJP
Eok7PsRqScz7YvSFxbWqmGDuZXAwIMx2yIDyr5ezOzZuTbMd58OsWtlZ5OidXlAY
oGW5cYJbQdXfKviwGvf2nJ3ysfHDTDjOCMNPxq5WWlN1gv/bH9U=
=tbz3
-----END PGP SIGNATURE-----
--- End Message ---