Your message dated Thu, 26 May 2016 21:52:18 +0000
with message-id <[email protected]>
and subject line Bug#745072: fixed in gweled 0.9.1-4
has caused the Debian Bug report #745072,
regarding gweled: Please build-depend on libmikmod-dev instead of libmikmod2-dev
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.)
--
745072: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745072
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: gweled
Version: 0.9.1-3
Severity: wishlist
Tags: patch
Dear Maintainer,
libmikmod's packaging has changed slightly, and it now provides an
unversioned -dev package, libmikmod-dev. It still supports
libmikmod2-dev but I would like to remove that in future, hence my
request: I'd greatly appreciate it if you could build-depend on
libmikmod-dev instead of libmikmod2-dev.
In addition, to properly support multi-arch, libmikmod-config has been
moved to a separate package. The recommended way to find libmikmod is
now to use pkg-config. gweled currently uses libmikmod-config, so
you'll need to either build-depend on libmikmod-config in addition to
libmikmod-dev, or switch to pkg-config.
The attached patch provides the necessary changes to switch to using
pkg-config.
The new version of libmikmod probably also fixes #588694 and #635268
since it now supports ALSA and PulseAudio directly.
Regards,
Stephen (the libmikmod maintainer)
-- System Information:
Debian Release: jessie/sid
APT prefers testing
APT policy: (500, 'testing'), (500, 'stable'), (200, 'unstable'), (1,
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 3.13-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages gweled depends on:
ii libatk1.0-0 2.12.0-1
ii libc6 2.18-4
ii libcairo2 1.12.16-2
ii libfontconfig1 2.11.0-2
ii libfreetype6 2.5.2-1
ii libgdk-pixbuf2.0-0 2.30.6-1
ii libglib2.0-0 2.40.0-2
ii libgtk2.0-0 2.24.23-1
ii libmikmod3 3.3.6-2
ii libpango-1.0-0 1.36.3-1
ii libpangocairo-1.0-0 1.36.3-1
ii libpangoft2-1.0-0 1.36.3-1
ii librsvg2-2 2.40.2-1
gweled recommends no packages.
gweled suggests no packages.
-- no debconf information
diff -urN gweled-0.9.1/debian/control gweled-0.9.1.fixed/debian/control
--- gweled-0.9.1/debian/control 2013-10-02 13:23:18.000000000 +0200
+++ gweled-0.9.1.fixed/debian/control 2014-04-17 20:07:55.549857494 +0200
@@ -7,7 +7,7 @@
libesd0-dev,
libgtk2.0-dev (>= 2.14),
librsvg2-dev,
- libmikmod2-dev,
+ libmikmod-dev,
intltool,
hardening-wrapper,
dh-autoreconf
diff -urN gweled-0.9.1/debian/patches/004-use-pkg-config-for-mikmod.patch gweled-0.9.1.fixed/debian/patches/004-use-pkg-config-for-mikmod.patch
--- gweled-0.9.1/debian/patches/004-use-pkg-config-for-mikmod.patch 1970-01-01 01:00:00.000000000 +0100
+++ gweled-0.9.1.fixed/debian/patches/004-use-pkg-config-for-mikmod.patch 2014-04-17 20:07:28.845284002 +0200
@@ -0,0 +1,53 @@
+Description: Use pkg-config to configure libmikmod
+Author: Stephen Kitt <[email protected]>
+
+--- a/configure.in
++++ b/configure.in
+@@ -36,12 +36,10 @@
+ AC_SUBST(RSVG_LIBS)
+
+ #### Check for mikmod.h header ####
+-AC_CHECK_HEADER(mikmod.h,, AC_MSG_ERROR([libmikmod is required to compile gweled]))
++PKG_CHECK_MODULES([libmikmod], [libmikmod],, AC_MSG_ERROR([libmikmod is required to compile gweled]))
+
+-MIKMOD_CFLAGS=`libmikmod-config --cflags`
+-MIKMOD_LIBS=`libmikmod-config --libs`
+-AC_SUBST(MIKMOD_CFLAGS)
+-AC_SUBST(MIKMOD_LIBS)
++AC_SUBST(libmikmod_CFLAGS)
++AC_SUBST(libmikmod_LIBS)
+
+ AC_CHECK_HEADER(pthread.h, [],
+ AC_MSG_ERROR([*** Cannot find pthread.h header]))
+--- a/Makefile.in
++++ b/Makefile.in
+@@ -176,8 +176,8 @@
+ LTLIBOBJS = @LTLIBOBJS@
+ MAINT = @MAINT@
+ MAKEINFO = @MAKEINFO@
+-MIKMOD_CFLAGS = @MIKMOD_CFLAGS@
+-MIKMOD_LIBS = @MIKMOD_LIBS@
++MIKMOD_CFLAGS = @libmikmod_CFLAGS@
++MIKMOD_LIBS = @libmikmod_LIBS@
+ MKDIR_P = @MKDIR_P@
+ MKINSTALLDIRS = @MKINSTALLDIRS@
+ MSGFMT = @MSGFMT@
+--- a/src/Makefile.am
++++ b/src/Makefile.am
+@@ -9,7 +9,7 @@
+ AM_CFLAGS = \
+ @GTK_CFLAGS@ \
+ @RSVG_CFLAGS@ \
+- @MIKMOD_CFLAGS@ \
++ @libmikmod_CFLAGS@ \
+ @PTHREAD_CFLAGS@
+
+ bin_PROGRAMS = gweled
+@@ -29,6 +29,6 @@
+ games-setgid-io.c games-setgid-io.h \
+ games-scores-dialog-private.h
+
+-gweled_LDADD = @GTK_LIBS@ @RSVG_LIBS@ @MIKMOD_LIBS@ @PTHREAD_LIBS@
++gweled_LDADD = @GTK_LIBS@ @RSVG_LIBS@ @libmikmod_LIBS@ @PTHREAD_LIBS@
+
+
diff -urN gweled-0.9.1/debian/patches/series gweled-0.9.1.fixed/debian/patches/series
--- gweled-0.9.1/debian/patches/series 2013-10-02 13:23:18.000000000 +0200
+++ gweled-0.9.1.fixed/debian/patches/series 2014-04-17 20:00:21.292164944 +0200
@@ -1,2 +1,3 @@
001-potfiles.patch
003-intools-update_ignore_quilt_directory.patch
+004-use-pkg-config-for-mikmod.patch
--- End Message ---
--- Begin Message ---
Source: gweled
Source-Version: 0.9.1-4
We believe that the bug you reported is fixed in the latest version of
gweled, 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.
Stephen Kitt <[email protected]> (supplier of updated gweled 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: Thu, 26 May 2016 18:58:51 +0200
Source: gweled
Binary: gweled
Architecture: source
Version: 0.9.1-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Games Team <[email protected]>
Changed-By: Stephen Kitt <[email protected]>
Description:
gweled - "Diamond Mine"-style puzzle game
Closes: 608439 738455 745072 824504
Changes:
gweled (0.9.1-4) unstable; urgency=medium
.
* Adopt the package for the Debian Games Team, thanks Ondřej Surý for
taking care of it for so long! (Closes: #824504.)
* Build-depend on libmikmod-dev and use pkg-config to find libmikmod.
(Closes: #745072.)
* Add upstream fix for timed and endless modes. (Closes: #738455.)
* Add the manpage written by Braulio Valdivielso Martínez. (Closes:
#608439.)
* Clean up modified files to allow building twice in a row.
* Switch to dpkg-buildflags hardening instead of hardening-wrapper.
* Fix a couple of spelling mistakes flagged by Lintian.
* Correct the synopsis so it doesn't start with an article.
* Clean up debian/control with cme:
- drop the obsolete version dependency on libgtk2.0-dev;
- Standards-Version 3.9.8;
- use canonical URLs for the VCS entries.
* Drop obsolete build-dependencies (libesd0-dev and quilt).
* Move the repository to pkg-games.
Checksums-Sha1:
997ba8eec79a0e150e37e6e5e2c99d7cad708a27 1927 gweled_0.9.1-4.dsc
de4a4a60746438c81ebf8481655f549ca55c886f 10196 gweled_0.9.1-4.debian.tar.xz
Checksums-Sha256:
38e3462d66d6e705d873c93e159b0922e8cfe42de855f9e0470abe110bb63372 1927
gweled_0.9.1-4.dsc
92167f99be9cee06094fa5dea7092bb20bd7d2d12bf2fce0a66bbd516006c570 10196
gweled_0.9.1-4.debian.tar.xz
Files:
6da91cbe2c98e40decd4ba334122a9b5 1927 games optional gweled_0.9.1-4.dsc
f8bd60bb004de009a670b67c0cf69ebe 10196 games optional
gweled_0.9.1-4.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQIcBAEBCgAGBQJXR1/HAAoJEIDTAvWIbYOcmvoP+gL9Vs6PXV3B5lB0MzIi7Vqz
JA7MNSNxznYNTQkyD0rKvpRyXMGF/bCYuXnaKaW5nMQpo2wKWnx0UNe++dHuVDqj
j3AZx4Zh/K3gPMWSG2LndXeAWcjttKQWKHQounBeXDoi1RAV1IXNma37K4kf6iru
mX1Pw8ibjMMx5nIa7mOBDQ6optKH2eNFVMzm1jljuljyinMTXuUafUW1QGsF4jcN
iark1IPGVBSJL2sr5fLOqep+9y9Umzfrfyw/wSYx+MqaqU7sv+bkAlmFXJodBx0i
J4qzRKWiAlnw7OmibZZMx2YPpkXFCqbd2cB/6o0bShxPmXpKB/X0O4/n4cv2RBhx
cCpiqk75J95pJsY1BwrfQhjPAl/3LCAYUkbRk5/VanArQAzDgFehEOtRQrJXl8T4
7h2BErJ6azG6coFhqTZMio+fFNl5MhV22cUzqRoLRbo/eSSi2HuefV2b5k4MZNyP
Lx/8CCWVKHN6IR6vAQvmTudeN6mDDlgaSR+ajwWMa66L7oCZ/AJyT890ISdQ+Qiv
Qq2RZ60LGAFxB6c6fZFRd6FjI6D0627KXdlXxlufPVt/7fILmr3YZqoBrIdbwFdJ
4ZB/I/pZFSTcAbOO/DyNtsIKl6GLxK2y9yxPWkyPZ3l6VTEPkpXcrZx+ZhG+fgYy
MjFynTeadbYPpyx3N9Lw
=6MB2
-----END PGP SIGNATURE-----
--- End Message ---