Your message dated Sat, 06 Apr 2024 05:19:19 +0000
with message-id <[email protected]>
and subject line Bug#1063711: fixed in mumble 1.5.517-2
has caused the Debian Bug report #1063711,
regarding mumble: autopkgtest fixes (fixes #1062798)
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.)
--
1063711: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1063711
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: mumble
Version: 1.5.517-1
Severity: normal
Tags: patch
X-Debbugs-Cc: [email protected]
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
I made some patches which fixed the autopkgtest failures in my Salsa's
CI pipeline, which should fix the problem as reported in #1062798 about
mumble not transitioning to Testing due to autopkgtest failures.
I'm not sure how to deal with bugs like 1062798 as it's already
(immediately) closed, hence this separate bug.
As the released version isn't available on Salsa I haven't been able to
test whether it applies cleanly on the released version, but I think it
does. Otherwise it should contain the clues needed to fix it properly.
Cheers,
Diederik
- -- System Information:
Debian Release: trixie/sid
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'testing'), (101, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 6.6.13-amd64 (SMP w/16 CPU threads; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8),
LANGUAGE=en_US:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
-----BEGIN PGP SIGNATURE-----
iHUEARYIAB0WIQT1sUPBYsyGmi4usy/XblvOeH7bbgUCZcjZDQAKCRDXblvOeH7b
bg4bAQDunBxsV2mW/2MBftkaGikwal4ohr8UDB6q+f8clwHCyQD/WUyTgCg7W7E/
6+IgJ7KLVdDVyVNaOogSyRQNDluUmAY=
=u+Ks
-----END PGP SIGNATURE-----
>From ca324636bd152a418f5f7a60c166a4ea30d4e37b Mon Sep 17 00:00:00 2001
From: Diederik de Haas <[email protected]>
Date: Mon, 6 Mar 2023 11:56:30 +0100
Subject: [PATCH 1/3] d/tests/control: Add xauth as dependency
It's 'only' a Recommends of xvfb, but the autopkgtest fails because
xvfb-run needs the xauth program.
---
debian/tests/control | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/debian/tests/control b/debian/tests/control
index 9934595..19c2c04 100644
--- a/debian/tests/control
+++ b/debian/tests/control
@@ -1,2 +1,2 @@
Tests: smoke
-Depends: mumble, mumble-server, xvfb
+Depends: mumble, mumble-server, xvfb, xauth
--
2.43.0
>From f566c8afb0ded43e056fc8439d95982448e566eb Mon Sep 17 00:00:00 2001
From: Diederik de Haas <[email protected]>
Date: Mon, 6 Mar 2023 12:23:10 +0100
Subject: [PATCH 2/3] d/tests/smoke: Add missing closing ')' to SERVER_VERSION
---
debian/tests/smoke | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/debian/tests/smoke b/debian/tests/smoke
index b3ecdc5..aef796c 100755
--- a/debian/tests/smoke
+++ b/debian/tests/smoke
@@ -28,7 +28,7 @@ else
fi
echo "Executing /usr/bin/mumble-server --version"
-SERVER_VERSION=$(/usr/bin/mumble-server --version | grep "Mumble server
version [0-9]\.[0-9]\.[0-9]"
+SERVER_VERSION=$(/usr/bin/mumble-server --version | grep "Mumble server
version [0-9]\.[0-9]\.[0-9]")
if [ -n "$SERVER_VERSION" ] ; then
echo "Found: $SERVER_VERSION"
else
--
2.43.0
>From 4c4c473bb4e2185b5f493e0bc49c0de1d41f4789 Mon Sep 17 00:00:00 2001
From: Diederik de Haas <[email protected]>
Date: Fri, 18 Aug 2023 18:41:59 +0200
Subject: [PATCH 3/3] d/tests/smoke: Create Mumble dir in $HOME for 'mumble
--version'
For some reason it needs $HOME/.local/share/data/Mumble to determine its
version and it outputs creating that dir which autopkgtest doesn't like.
And it reports to stderr that it migrated a dir (on fresh install), so
send stderr to `/dev/null`.
Link: https://github.com/mumble-voip/mumble/issues/6193
---
debian/tests/smoke | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/debian/tests/smoke b/debian/tests/smoke
index aef796c..cabb446 100755
--- a/debian/tests/smoke
+++ b/debian/tests/smoke
@@ -18,8 +18,12 @@ echo "Starting basic smoke test."
## qt.qpa.xcb: could not connect to display
## This test is commented out until the required test dependencies are found
##
+# Reported upstream: https://github.com/mumble-voip/mumble/issues/6193
+echo "Create $HOME/.local/share/data/Mumble needed for 'mumble --version'"
+mkdir -p $HOME/.local/share/data/Mumble
+
echo "Executing /usr/bin/mumble --version"
-MUMBLE_VERSION=$(/usr/bin/xvfb-run -a /usr/bin/mumble --version | grep "Mumble
version [0-9]\.[0-9]\.[0-9]")
+MUMBLE_VERSION=$(/usr/bin/xvfb-run -a /usr/bin/mumble --version 2>/dev/null |
grep "Mumble version [0-9]\.[0-9]\.[0-9]")
if [ -n "$MUMBLE_VERSION" ] ; then
echo "Found: $MUMBLE_VERSION"
else
--
2.43.0
--- End Message ---
--- Begin Message ---
Source: mumble
Source-Version: 1.5.517-2
Done: Christopher Knadle <[email protected]>
We believe that the bug you reported is fixed in the latest version of
mumble, 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.
Christopher Knadle <[email protected]> (supplier of updated mumble
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: SHA512
Format: 1.8
Date: Sat, 06 Apr 2024 00:56:38 -0400
Source: mumble
Architecture: source
Version: 1.5.517-2
Distribution: unstable
Urgency: medium
Maintainer: Debian VoIP Team <[email protected]>
Changed-By: Christopher Knadle <[email protected]>
Closes: 1060254 1063711
Changes:
mumble (1.5.517-2) unstable; urgency=medium
.
[ Diederik de Haas ]
* debian/tests/control:
- Add xauth as a binary dependency
(Closes: #1063711)
* debian/tests/smoke:
- Add missing closing ')' to SERVER_VERSION
- Create Mumble dir in $HOME for 'mumble --version' to remove extra output
.
[ Chris Lamb ]
* debian/patches:
- Add 95-fix-reproducibility.diff: set a timezone, otherwise the date
could vary based on the timezone of the build server
(Closes: #1060254)
.
[ Christopher Knadle ]
* debian/patches:
- Fix email typo in 90-debianize-systemd-unit.diff
* debian/tests/control:
- Add "superficial" restriction as the 'smoke' test doesn't test mumble
to a great extent.
Checksums-Sha1:
06881ab564dfa9ddcf43b9b3a124b291bbdf042e 2738 mumble_1.5.517-2.dsc
f992d4a5da1ce27da8c89e7df904a784a344a008 12091432 mumble_1.5.517.orig.tar.gz
41c3da48fc097db5c301164f39f15459afbfe887 228 mumble_1.5.517.orig.tar.gz.asc
a2e91d1c54fbb29a72278aed23816c6d57f88c7d 46708 mumble_1.5.517-2.debian.tar.xz
6b14c0a63aa01f47d183b1b9f7fb4ac352e863ef 5726 mumble_1.5.517-2_source.buildinfo
Checksums-Sha256:
9627d45295101acfbf8322623aa9bd7b6325136ecd2c9b5c8a02e7a272fbf0cb 2738
mumble_1.5.517-2.dsc
8efd06a0f47ebfe27735f7575ba0becfb21d0f400a5082202dbbd998ab8351de 12091432
mumble_1.5.517.orig.tar.gz
fb8ffb5c7e6aea8dfc1672daa629c7536c7b10a60b37a6f52f30b8860097b351 228
mumble_1.5.517.orig.tar.gz.asc
755b8c3ec229ed4b8323d8cb4895516ec90a757cb4e0fa18f48ddf8a7e535d9e 46708
mumble_1.5.517-2.debian.tar.xz
1593a09d3a38ebc3b2c73412ae87993cf8032b6e6dc3ecb19cc916b57058a738 5726
mumble_1.5.517-2_source.buildinfo
Files:
0649b674ce7b6b8822a1633e684142c3 2738 sound optional mumble_1.5.517-2.dsc
23ebbda45eeaca3048536cd0629056b9 12091432 sound optional
mumble_1.5.517.orig.tar.gz
11af0016c314cf0561670cc1a7d10dc5 228 sound optional
mumble_1.5.517.orig.tar.gz.asc
f00872c3c9f76bdf0e99f8d3f8c7726f 46708 sound optional
mumble_1.5.517-2.debian.tar.xz
ad4267760684b39bd44823115b5b0c8d 5726 sound optional
mumble_1.5.517-2_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIyBAEBCgAdFiEEe1KzyGmRW/4DhtV6ieLKD9m6RHAFAmYQ12YACgkQieLKD9m6
RHAAXg/3eXtnhHhmAZHteeUEnWUxUpyGUdzdcyKCh92+II8ZMY3rNdTwFch8OQq7
0YxUFa3ipcaUd/4MU7jaQLIjfGDPnauhJ09wTzGg+xjLPJebkjBeoFQiewOjY87m
wgAqoNT7QpWOQoiGTPFzqjCdYWcmhPKR9tgybL06MTnTDqTN/g40rlGet9UsgAx3
KR8E9ELN9Pw9GMcrI+nqIdRPIyeI5mr4QEh/+H4SzDnyPTYutnVMwyl2UoAm7v/u
3HzP9/utGYn+5FFXJtxXAkG+TPZosc3Kf+E6/I14kBOVb8tGwkw74E2xc2YOiYqu
m8tuUW7c4PV6HdILVD1zs/63q33p2+aAFr+qZSUZHv0hTKXiLPd7yb2AlvFq+mak
V/XZanjKIWeJ/PuaTNKlPj2WW6Ibh5s9sjfwwiWb8R2GgvN+D7LbHD9njv9/WRiW
T3EendeDy2O8IDXaX97hGpTPy7Z0eXOT3quxLwSFrYHpcTGZ0yNqTDqkDq6+V+i7
sDZCD6T9SBduiTKFGou88wjRC0EtsEMwrRpK0m/uaQJb5Cs8wmaA4aooJloXy9d8
FfS63dg0llujl0RQ+qG8/UNavpvujwwuIWFEtP3+h/UP+Lq+oZoH5MlTqObF6nqw
xp2cIeL0n91IGpMyPaX6keSjq37pXtu6WBSm2cnbxJWON3VQFw==
=PIqU
-----END PGP SIGNATURE-----
pgptNo2az4ZFH.pgp
Description: PGP signature
--- End Message ---