[pkg-gnupg-maint] libgpg-error_1.59-2_source.changes ACCEPTED into unstable
NIIBE Yutaka
gniibe at fsij.org
Wed Feb 25 08:04:37 GMT 2026
Hello,
Debian FTP Masters <ftpmaster at ftp-master.debian.org> wrote:
> Version: 1.59-2
Great.
I found Debian CI failures for unstable with amd64 and i386:
https://ci.debian.net/packages/libg/libgpg-error/
Thus, I looked the filelist for those architectures:
https://packages.debian.org/sid/amd64/wine64/filelist
https://packages.debian.org/sid/i386/wine32/filelist
IIUC, the path to the command of wine and wineserver has been changed.
Here is possible fix for libgpg-error Debian package.
==========================
diff --git a/debian/tests/windows b/debian/tests/windows
index 767702b..386ed7f 100755
--- a/debian/tests/windows
+++ b/debian/tests/windows
@@ -5,11 +5,11 @@ set -e
ARCH="$1"
if [ "$ARCH" = x86_64 ]; then
- WINE=/usr/lib/wine/wine64
- export WINESERVER=/usr/lib/wine/wineserver64
+ WINE=/usr/lib/x86_64-linux-gnu/wine/wine
+ export WINESERVER=/usr/lib/x86_64-linux-gnu/wine/wineserver
elif [ "$ARCH" = i686 ]; then
- WINE=/usr/lib/wine/wine
- export WINESERVER=/usr/lib/wine/wineserver32
+ WINE=/usr/lib/i386-linux-gnu/wine/wine
+ export WINESERVER=/usr/lib/i386-linux-gnu/wine/wineserver
else
printf >&2 'Unknown Architecture: %s\n' "$ARCH"
exit 1
==========================
Also, I noticed that the windows test script uses diff. I wonder it's
better to have dependency to diffutils in control.
==========================
diff --git a/debian/tests/control b/debian/tests/control
index 779c6ae..72c11ab 100644
--- a/debian/tests/control
+++ b/debian/tests/control
@@ -2,6 +2,7 @@ Test-Command: debian/tests/windows i686
Features:
test-name=win32,
Depends:
+ diffutils,
gcc-mingw-w64-i686,
gpgrt-tools,
libgpg-error-dev,
@@ -16,6 +17,7 @@ Test-Command: debian/tests/windows x86_64
Features:
test-name=win64,
Depends:
+ diffutils,
gcc-mingw-w64-x86-64,
gpgrt-tools,
libgpg-error-dev,
==========================
--
More information about the pkg-gnupg-maint
mailing list