Your message dated Wed, 03 Sep 2014 12:19:24 +0000
with message-id <[email protected]>
and subject line Bug#732588: fixed in rarian 0.8.1-6
has caused the Debian Bug report #732588,
regarding rarian: use dh-autoreconf for better new-port coverage
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.)


-- 
732588: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=732588
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: rarian
Version: 0.8.1-5
Severity: normal
Tags: patch
User: [email protected]
Usertags: origin-ubuntu ubuntu-patch trusty

Hi,

The ppc64el port requires a patch to libtool.m4.  I don't think that's
in Debian yet, but when it is it will require autoreconfing a bunch of
packages to pick it up.  rarian could handle this quite easily by using
dh-autoreconf, which will update its copies of the libtool macros.  It
needs a couple of patches to avoid breaking with current autotools, but
making sure that the build system can be regenerated correctly seems
like no bad thing.

  * Use dh-autoreconf to update libtool macros for new ports.  This also
    requires fixing an m4 syntax error in configure.ac and removing the
    nonexistent "dist-gzip" Automake option.

diff -Nru rarian-0.8.1/debian/control rarian-0.8.1/debian/control
--- rarian-0.8.1/debian/control 2010-07-04 16:31:53.000000000 +0100
+++ rarian-0.8.1/debian/control 2013-12-19 03:11:17.000000000 +0000
@@ -10,7 +10,7 @@
 Uploaders: Debian GNOME Maintainers 
<[email protected]>, Josselin Mouette 
<[email protected]>, Sebastian Dröge <[email protected]>
 Build-Depends: cdbs,
                debhelper (>= 5),
-               autotools-dev,
+               dh-autoreconf,
                xsltproc,
                xml-core (>= 0.06),
                gnome-pkg-tools
diff -Nru rarian-0.8.1/debian/control.in rarian-0.8.1/debian/control.in
--- rarian-0.8.1/debian/control.in      2010-07-04 16:30:51.000000000 +0100
+++ rarian-0.8.1/debian/control.in      2013-12-19 03:00:39.000000000 +0000
@@ -5,7 +5,7 @@
 Uploaders: @GNOME_TEAM@
 Build-Depends: cdbs,
                debhelper (>= 5),
-               autotools-dev,
+               dh-autoreconf,
                xsltproc,
                xml-core (>= 0.06),
                gnome-pkg-tools
diff -Nru rarian-0.8.1/debian/patches/04_m4_syntax.patch 
rarian-0.8.1/debian/patches/04_m4_syntax.patch
--- rarian-0.8.1/debian/patches/04_m4_syntax.patch      1970-01-01 
01:00:00.000000000 +0100
+++ rarian-0.8.1/debian/patches/04_m4_syntax.patch      2013-12-19 
03:06:36.000000000 +0000
@@ -0,0 +1,18 @@
+Description: Fix m4 syntax so that autoreconf doesn't break
+Author: Colin Watson <[email protected]>
+Forwarded: no
+Last-Update: 2013-12-19
+
+Index: b/configure.ac
+===================================================================
+--- a/configure.ac
++++ b/configure.ac
+@@ -5,7 +5,7 @@
+ AC_INIT(rarian, 0.8.1)
+ AC_CONFIG_SRCDIR([util/rarian-example.c])
+ AC_CONFIG_HEADER([config.h])
+-AM_INIT_AUTOMAKE ([foreign dist-bzip2 dist-gzip])
++AM_INIT_AUTOMAKE([foreign dist-bzip2 dist-gzip])
+ 
+ AM_MAINTAINER_MODE
+ 
diff -Nru rarian-0.8.1/debian/patches/05_no_dist_gzip_option.patch 
rarian-0.8.1/debian/patches/05_no_dist_gzip_option.patch
--- rarian-0.8.1/debian/patches/05_no_dist_gzip_option.patch    1970-01-01 
01:00:00.000000000 +0100
+++ rarian-0.8.1/debian/patches/05_no_dist_gzip_option.patch    2013-12-19 
03:11:02.000000000 +0000
@@ -0,0 +1,18 @@
+Description: Remove the nonexistent "dist-gzip" Automake option
+Author: Colin Watson <[email protected]>
+Forwarded: no
+Last-Update: 2013-12-19
+
+Index: b/configure.ac
+===================================================================
+--- a/configure.ac
++++ b/configure.ac
+@@ -5,7 +5,7 @@
+ AC_INIT(rarian, 0.8.1)
+ AC_CONFIG_SRCDIR([util/rarian-example.c])
+ AC_CONFIG_HEADER([config.h])
+-AM_INIT_AUTOMAKE([foreign dist-bzip2 dist-gzip])
++AM_INIT_AUTOMAKE([foreign dist-bzip2])
+ 
+ AM_MAINTAINER_MODE
+ 
diff -Nru rarian-0.8.1/debian/patches/series rarian-0.8.1/debian/patches/series
--- rarian-0.8.1/debian/patches/series  2010-07-04 16:30:51.000000000 +0100
+++ rarian-0.8.1/debian/patches/series  2013-12-19 03:09:54.000000000 +0000
@@ -1,3 +1,5 @@
 01_info_shortnames.patch
 02_crash_no_extension.patch
 03_language.patch
+04_m4_syntax.patch
+05_no_dist_gzip_option.patch
diff -Nru rarian-0.8.1/debian/rules rarian-0.8.1/debian/rules
--- rarian-0.8.1/debian/rules   2010-07-04 16:30:51.000000000 +0100
+++ rarian-0.8.1/debian/rules   2013-12-19 02:59:58.000000000 +0000
@@ -3,6 +3,7 @@
 include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/autoreconf.mk
 -include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk
 
 DEB_CONFIGURE_EXTRA_FLAGS += --enable-skdb-update=no

Thanks,

-- 
Colin Watson                                       [[email protected]]

--- End Message ---
--- Begin Message ---
Source: rarian
Source-Version: 0.8.1-6

We believe that the bug you reported is fixed in the latest version of
rarian, 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.
Michael Biebl <[email protected]> (supplier of updated rarian 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: Wed, 03 Sep 2014 14:05:53 +0200
Source: rarian
Binary: librarian0 librarian-dev rarian-compat scrollkeeper
Architecture: source all amd64
Version: 0.8.1-6
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
<[email protected]>
Changed-By: Michael Biebl <[email protected]>
Description:
 librarian-dev - Documentation meta-data library (header files)
 librarian0 - Documentation meta-data library (library package)
 rarian-compat - Documentation meta-data library (compatibility tools)
 scrollkeeper - Transitional package for scrollkeeper
Closes: 732588
Changes:
 rarian (0.8.1-6) unstable; urgency=low
 .
   [ Josselin Mouette ]
   * Update repository URL.
 .
   [ Colin Watson ]
   * Use dh-autoreconf to update libtool macros for new ports. This also
     requires fixing an m4 syntax error in configure.ac and removing the
     nonexistent "dist-gzip" Automake option. Closes: #732588
 .
   [ Michael Biebl ]
   * Switch the Maintainer to [email protected].
   * Use canonical Vcs-* URLs.
   * Override lintian error about embedding the tinyxml library. This would
     lead to an ftp-master autoreject otherwise. While this is not an ideal
     solution, porting to the tinyxml system library is non-trivial due to
     changes in the API.
Checksums-Sha1:
 baaff8860cca8358f6ddd9c349eb05fd8815f788 2229 rarian_0.8.1-6.dsc
 78e4f236808f8e42bf53cc7f1a93082d31c28218 9424 rarian_0.8.1-6.debian.tar.xz
 3158ac0753b2e4feabf6ba853ed46b5ef7601621 23566 scrollkeeper_0.8.1-6_all.deb
 a659c18ef07cc0beb24b159e35f7d275494d6d58 63544 librarian0_0.8.1-6_amd64.deb
 90708fdec6a97f1dceba9b3e2f8b3aa9464d1b1e 40538 librarian-dev_0.8.1-6_amd64.deb
 67f0a0a37439c4f618b47ab76a143ce86d996cc6 77900 rarian-compat_0.8.1-6_amd64.deb
Checksums-Sha256:
 affbc443e5c4d50b056af2408a48c200e68cdb9d10333c8ba92690a47cfdac8b 2229 
rarian_0.8.1-6.dsc
 97c766997ff465ef6ed6652b4e7a138c87d526b639af66d695e7c200fbf82fdb 9424 
rarian_0.8.1-6.debian.tar.xz
 8cf9cf88e71126c65080c71aacd594d9acc0e88f596a39b2cdd617377e838811 23566 
scrollkeeper_0.8.1-6_all.deb
 e854ff9b0e747234cd3818638147bf498391aba3ca7e56813eee6b14afe743fc 63544 
librarian0_0.8.1-6_amd64.deb
 ea9d77cb799ba4324b4c2ddb5f2bcd0d2b7f73d69f314d1884a37af739831cc8 40538 
librarian-dev_0.8.1-6_amd64.deb
 c17c69f09339d8f889fa05650c689cec4530307db5916af50284017e6cf6f7a4 77900 
rarian-compat_0.8.1-6_amd64.deb
Files:
 2fb0bfffb4306f2b6d78673ffa55e0bf 23566 doc extra scrollkeeper_0.8.1-6_all.deb
 1fbd22f956119e11fcfa4b674dbf8fdd 63544 libs extra librarian0_0.8.1-6_amd64.deb
 b5b6d23ccdfaffc1c3f81e49305c82c2 40538 libdevel extra 
librarian-dev_0.8.1-6_amd64.deb
 17e174746e2988f611d66fa3a881e0ea 77900 doc extra 
rarian-compat_0.8.1-6_amd64.deb
 45e6d165c63c6f3410d5e48663c8b399 2229 doc extra rarian_0.8.1-6.dsc
 110cc76a6426526a1a212abc12bdd9aa 9424 doc extra rarian_0.8.1-6.debian.tar.xz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCAAGBQJUBwTcAAoJEGrh3w1gjyLczUkP/3Y5Pyk3rs4Vye1nX5MRyk/F
OMRSGX6OfSJVmd/8ZoPWjZICwTYMvs9s9nzSpwGNTPlaOGeVcuI+JujfsVgP8z0q
G/6lyW2TbZlRFgI3STb5Mzmsg9aUqYE3QaDe7znQpSqpyAdnug1NYp51lNY0CBYI
uyXeDsfSBaiHcjVIqIxmAjwGy48q0zfocaXE9zcatxaAFQZEFyxqohGySNNcd39n
+Nqv6OZY3L2nRG5ZI6LVgcNA+H0s5IhRgWeDgyA6VDVC+5FkcBRw5MuFT/cWyr8w
io6JD+8AH5lC9F/4i09sY9tV9MEt9aSKMOWN2qlWtIjPpEv/AQbL/M5aTocYGkcf
QGj5BMrXjmxWVESv6EYKdhZvKUwX+me9y6GDPAz+97gJmFTHnI8XQn3VhRq4xHYU
jpJKQRdIlpSUuqxtN/ES0eUwjAclfUZHcwBjqU6s6XloRJ7JYEq6XCPJ219dMZ6s
08kqlDBPV9v/15rTdba/GDgOj9cTRODog+be6t9r2//DOo7FkHhma6WzT2hWC1Ug
iEnoPzjnZ9mQcPy0aoPmPrHjZnIrzSrQckNpks4VP/mK9NMgphdHryG7DcGOmGIR
RbOnpDH/GMVl0kfygoIFAQEuh2PVGsudvcq+yU0jFX79TW834fylhXNokBZAAFAZ
69k6i5HhDyPRgURwtqDE
=Zkex
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to