Your message dated Sat, 10 Sep 2022 13:36:19 +0100
with message-id 
<92fe43e7805e82e43100a6471ccbf91cd9a12944.ca...@adam-barratt.org.uk>
and subject line Closing requests for updates in 11.5
has caused the Debian Bug report #1018082,
regarding bullseye-pu: package golang-github-pkg-term/1.1.0-4~deb11u1
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.)


-- 
1018082: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1018082
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: bullseye
User: [email protected]
Usertags: pu
X-Debbugs-Cc: Debian Go Packaging Team <[email protected]>

  * Fix building on newer linux kernels (Closes: #1002231)

Test-only change to fix FTBFS caused by kernel change already
backported to 5.10.

Plus some trivial packaging changes that are harmless enough to
use the package from bookworm instead of backporting the patch.
diff -Nru golang-github-pkg-term-1.1.0/debian/changelog 
golang-github-pkg-term-1.1.0/debian/changelog
--- golang-github-pkg-term-1.1.0/debian/changelog       2020-12-19 
09:34:44.000000000 +0200
+++ golang-github-pkg-term-1.1.0/debian/changelog       2022-08-25 
16:16:50.000000000 +0300
@@ -1,3 +1,24 @@
+golang-github-pkg-term (1.1.0-4~deb11u1) bullseye; urgency=medium
+
+  * Non-maintainer upload.
+  * Rebuild for bullseye.
+
+ -- Adrian Bunk <[email protected]>  Thu, 25 Aug 2022 16:16:50 +0300
+
+golang-github-pkg-term (1.1.0-4) unstable; urgency=medium
+
+  * Team Upload
+
+  [ Aloïs Micard ]
+  * d/control:
+    - Update my uploader email.
+    - Bump Standards-Version.
+
+  [ Stephen Gelman ]
+  * Fix building on newer linux kernels (Closes: #1002231)
+
+ -- Stephen Gelman <[email protected]>  Thu, 13 Jan 2022 18:03:22 -0600
+
 golang-github-pkg-term (1.1.0-3) unstable; urgency=medium
 
   * Team upload.
diff -Nru golang-github-pkg-term-1.1.0/debian/control 
golang-github-pkg-term-1.1.0/debian/control
--- golang-github-pkg-term-1.1.0/debian/control 2020-12-19 09:33:26.000000000 
+0200
+++ golang-github-pkg-term-1.1.0/debian/control 2022-01-14 00:07:55.000000000 
+0200
@@ -2,12 +2,12 @@
 Section: devel
 Priority: optional
 Maintainer: Debian Go Packaging Team <[email protected]>
-Uploaders: Aloïs Micard <[email protected]>
+Uploaders: Aloïs Micard <[email protected]>
 Build-Depends: debhelper-compat (= 13),
                dh-golang,
                golang-any,
                golang-golang-x-sys-dev
-Standards-Version: 4.5.0
+Standards-Version: 4.6.0
 Homepage: https://github.com/pkg/term
 Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-pkg-term
 Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-pkg-term.git
diff -Nru golang-github-pkg-term-1.1.0/debian/gitlab-ci.yml 
golang-github-pkg-term-1.1.0/debian/gitlab-ci.yml
--- golang-github-pkg-term-1.1.0/debian/gitlab-ci.yml   1970-01-01 
02:00:00.000000000 +0200
+++ golang-github-pkg-term-1.1.0/debian/gitlab-ci.yml   2022-01-14 
00:07:55.000000000 +0200
@@ -0,0 +1,6 @@
+# auto-generated, DO NOT MODIFY.
+# The authoritative copy of this file lives at:
+# 
https://salsa.debian.org/go-team/infra/pkg-go-tools/blob/master/config/gitlabciyml.go
+---
+include:
+  - 
https://salsa.debian.org/go-team/infra/pkg-go-tools/-/raw/master/pipeline/test-archive.yml
diff -Nru 
golang-github-pkg-term-1.1.0/debian/patches/0002-enotty-newer-kernels.patch 
golang-github-pkg-term-1.1.0/debian/patches/0002-enotty-newer-kernels.patch
--- golang-github-pkg-term-1.1.0/debian/patches/0002-enotty-newer-kernels.patch 
1970-01-01 02:00:00.000000000 +0200
+++ golang-github-pkg-term-1.1.0/debian/patches/0002-enotty-newer-kernels.patch 
2022-01-14 02:03:22.000000000 +0200
@@ -0,0 +1,25 @@
+Description: As of torvalds/linux@1b8b20868a6d64cfe8174a21b25b74367bdf0560,
+ unsupported ioctls now return ENOTTY instead of EINVAL. This change was
+ also backported to the 5.10 stable branch, so it's a problem on the
+ current release of many Linux distros now.
+Forwarded: https://github.com/pkg/term/pull/71
+Author: Stephen Gelman <[email protected]>
+Last-Update: 2022-01-13
+---
+This patch header follows DEP-4: http://dep.debian.net/deps/dep3/
+--- a/termios/termios_test.go
++++ b/termios/termios_test.go
+@@ -1,3 +1,4 @@
++//go:build !windows
+ // +build !windows
+ 
+ package termios
+@@ -165,7 +166,7 @@
+ 
+       // some ioctls fail against char devices if they do not
+       // support a particular feature
+-      if (runtime.GOOS == "darwin" && err == unix.ENOTTY) || (runtime.GOOS == 
"linux" && err == unix.EINVAL) {
++      if ((runtime.GOOS == "darwin" || runtime.GOOS == "linux") && err == 
unix.ENOTTY) || (runtime.GOOS == "linux" && err == unix.EINVAL) {
+               t.Skip(err)
+       }
+ }
diff -Nru golang-github-pkg-term-1.1.0/debian/patches/series 
golang-github-pkg-term-1.1.0/debian/patches/series
--- golang-github-pkg-term-1.1.0/debian/patches/series  2020-12-19 
09:34:30.000000000 +0200
+++ golang-github-pkg-term-1.1.0/debian/patches/series  2022-01-14 
02:01:39.000000000 +0200
@@ -1 +1,2 @@
 0001-fix_ppc_build.patch
+0002-enotty-newer-kernels.patch

--- End Message ---
--- Begin Message ---
Package: release.debian.org
Version: 11.5

Hi,

The updates referred to in each of these bugs were included in today's
11.5 point release.

Regards,

Adam

--- End Message ---

Reply via email to