Your message dated Sun, 26 Feb 2012 19:47:30 +0000
with message-id <[email protected]>
and subject line Bug#661326: fixed in chemical-mime-data 0.1.94-6
has caused the Debian Bug report #661326,
regarding chemical-mime-data: Use rsvg-convert instead of rsvg (deprecated)
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.)


-- 
661326: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=661326
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: chemical-mime-data
Version: 0.1.94-5
Severity: wishlist
Tags: patch
User: [email protected]
Usertags: origin-ubuntu precise ubuntu-patch

Hi,

chemical-mime-data 0.1.94 uses rsvg to convert svg icons to png.
Upstream librsvg has dropped the rsvg binary, in favour of rsvg-convert.
I haven't seen any coordinated effort on this problem, but imagemagick
also recently accepted a patch (Bug #659259).

Here's a patch to use rsvg-convert instead of rsvg, fixing an FTBFS in
Ubuntu. I haven't forwarded it upstream, as chemical-mime-data trunk
dropped the icons.

Thanks for considering the patch.

SR
Description: Use rsvg-convert instead of rsvg (deprecated)
 Upstream has dropped the icons in trunk, so this doesn't need to be
 forwarded.
Author: Stefano Rivera <[email protected]>
Bug-Ubuntu: https://bugs.launchpad.net/bugs/931802
Forwarded: not-needed
Last-Update: 2012-02-26

--- a/configure.ac
+++ b/configure.ac
@@ -72,13 +72,13 @@
        [enable_update_database=yes]
 )
 
-dnl Choose to run rsvg or convert if both are installed
+dnl Choose to run rsvg-convert or convert if both are installed
 AC_ARG_ENABLE(
        [convert],
        AC_HELP_STRING(
                [--enable-convert],
                [
-                enable or disable the usage of convert (imagemagick) if both 
rsvg and convert are available
+                enable or disable the usage of convert (imagemagick) if both 
rsvg-convert and convert are available
                 @<:@default=no@:>@
                ]
        ),
@@ -87,7 +87,7 @@
 )
 
 dnl --------------------------------------------------------------------------
-dnl rsvg or convert (imagemagick)
+dnl rsvg-convert or convert (imagemagick)
 dnl --------------------------------------------------------------------------
 
 AC_ARG_VAR(
@@ -100,14 +100,14 @@
 if test "x$enable_convert" != "xyes" -a "x$CONVERT" = "xno" ; then
        AC_ARG_VAR(
                [RSVG],
-               [The 'rsvg' binary with path. Use it to define or override the 
location of 'rsvg'.]
+               [The 'rsvg-convert' binary with path. Use it to define or 
override the location of 'rsvg-convert'.]
        )
-       AC_PATH_PROG([RSVG], [rsvg], [no])
+       AC_PATH_PROG([RSVG], [rsvg-convert], [no])
        AC_SUBST([RSVG])
 fi
 
 if test "x$RSVG" = "xno" -a "x$CONVERT" = "xno" ; then
-       AC_MSG_ERROR([Cannot find rsvg (librsvg binary) or convert 
(imagemagick). Please install one of them.])
+       AC_MSG_ERROR([Cannot find rsvg-convert (librsvg binary) or convert 
(imagemagick). Please install one of them.])
 fi
 
 dnl --------------------------------------------------------------------------
--- a/icons/hicolor/Makefile.am
+++ b/icons/hicolor/Makefile.am
@@ -24,7 +24,7 @@
        gzip $< -c > $@
        for size in $(icon_sizes) ; do \
                if test "x$(RSVG)" != "x" ; then \
-                       $(RSVG) -w $${size} -h $${size} -f png $< 
$*_$${size}.png ; \
+                       $(RSVG) -w $${size} -h $${size} -f png $< -o 
$*_$${size}.png ; \
                else \
                        $(CONVERT) $< -resize $${size}x$${size} $*_$${size}.png 
; \
                fi \
--- a/configure
+++ b/configure
@@ -1323,7 +1323,8 @@
                           update-mime-database utility after installation
                           [default=yes]
   --enable-convert        enable or disable the usage of convert (imagemagick)
-                          if both rsvg and convert are available [default=no]
+                          if both rsvg-convert and convert are available
+                          [default=no]
 
 Optional Packages:
   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
@@ -1369,8 +1370,8 @@
               e.g. '--nonet'.
   CONVERT     The 'convert' binary with path. Use it to define or override the
               location of 'convert'.
-  RSVG        The 'rsvg' binary with path. Use it to define or override the
-              location of 'rsvg'.
+  RSVG        The 'rsvg-convert' binary with path. Use it to define or override
+              the location of 'rsvg-convert'.
   UPDATE_MIME_DATABASE
               The update-mime-database binary with path. Use it to define or
               override the location of update-mime-database.
@@ -4525,8 +4526,8 @@
 
 if test "x$enable_convert" != "xyes" -a "x$CONVERT" = "xno" ; then
 
-       # Extract the first word of "rsvg", so it can be a program name with 
args.
-set dummy rsvg; ac_word=$2
+       # Extract the first word of "rsvg-convert", so it can be a program name 
with args.
+set dummy rsvg-convert; ac_word=$2
 { echo "$as_me:$LINENO: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 if test "${ac_cv_path_RSVG+set}" = set; then
@@ -4570,8 +4571,8 @@
 fi
 
 if test "x$RSVG" = "xno" -a "x$CONVERT" = "xno" ; then
-       { { echo "$as_me:$LINENO: error: Cannot find rsvg (librsvg binary) or 
convert (imagemagick). Please install one of them." >&5
-echo "$as_me: error: Cannot find rsvg (librsvg binary) or convert 
(imagemagick). Please install one of them." >&2;}
+       { { echo "$as_me:$LINENO: error: Cannot find rsvg-convert (librsvg 
binary) or convert (imagemagick). Please install one of them." >&5
+echo "$as_me: error: Cannot find rsvg-convert (librsvg binary) or convert 
(imagemagick). Please install one of them." >&2;}
    { (exit 1); exit 1; }; }
 fi
 
--- a/icons/hicolor/Makefile.in
+++ b/icons/hicolor/Makefile.in
@@ -365,7 +365,7 @@
 @BOOL_HICOLOR_THEME_TRUE@      gzip $< -c > $@
 @BOOL_HICOLOR_THEME_TRUE@      for size in $(icon_sizes) ; do \
 @BOOL_HICOLOR_THEME_TRUE@              if test "x$(RSVG)" != "x" ; then \
-@BOOL_HICOLOR_THEME_TRUE@                      $(RSVG) -w $${size} -h $${size} 
-f png $< $*_$${size}.png ; \
+@BOOL_HICOLOR_THEME_TRUE@                      $(RSVG) -w $${size} -h $${size} 
-f png $< -o $*_$${size}.png ; \
 @BOOL_HICOLOR_THEME_TRUE@              else \
 @BOOL_HICOLOR_THEME_TRUE@                      $(CONVERT) $< -resize 
$${size}x$${size} $*_$${size}.png ; \
 @BOOL_HICOLOR_THEME_TRUE@              fi \

--- End Message ---
--- Begin Message ---
Source: chemical-mime-data
Source-Version: 0.1.94-6

We believe that the bug you reported is fixed in the latest version of
chemical-mime-data, which is due to be installed in the Debian FTP archive:

chemical-mime-data_0.1.94-6.debian.tar.gz
  to main/c/chemical-mime-data/chemical-mime-data_0.1.94-6.debian.tar.gz
chemical-mime-data_0.1.94-6.dsc
  to main/c/chemical-mime-data/chemical-mime-data_0.1.94-6.dsc
chemical-mime-data_0.1.94-6_all.deb
  to main/c/chemical-mime-data/chemical-mime-data_0.1.94-6_all.deb



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.
Daniel Leidert (dale) <[email protected]> (supplier of updated 
chemical-mime-data 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: SHA1

Format: 1.8
Date: Sun, 26 Feb 2012 20:30:18 +0100
Source: chemical-mime-data
Binary: chemical-mime-data
Architecture: source all
Version: 0.1.94-6
Distribution: unstable
Urgency: low
Maintainer: Debichem Team <[email protected]>
Changed-By: Daniel Leidert (dale) <[email protected]>
Description: 
 chemical-mime-data - chemical MIME and file type support for desktops
Closes: 661326
Changes: 
 chemical-mime-data (0.1.94-6) unstable; urgency=low
 .
   * debian/rules (override_dh_auto_configure): Set RSVG to point to the path
     to rsvg-convert, which has replaced the rsvg binary (closes: #661326).
   * debian/patches/661326_rsvg-convert.patch: Added.
     - icons/hicolor/Makefile.in: Fix rsvg-convert usage (#661326).
   * debian/patches/series: Adjusted.
Checksums-Sha1: 
 bd55473789ddc5313965c67f4fd12b24625f5d72 1588 chemical-mime-data_0.1.94-6.dsc
 b617326d67ba9509699ae840877e8d9cd4974081 4090 
chemical-mime-data_0.1.94-6.debian.tar.gz
 d583e9db0ae69bb4716c2b969571fedebe784887 60504 
chemical-mime-data_0.1.94-6_all.deb
Checksums-Sha256: 
 636ec2fa226a1a1da117982bbb3e965a0b169538cfb6204e8e966b3225eea25f 1588 
chemical-mime-data_0.1.94-6.dsc
 a3925974a0a6128bfa2d7988f09e57793a071c44ea378aa262365ecc915379ec 4090 
chemical-mime-data_0.1.94-6.debian.tar.gz
 4cfa5ac2013827bd6037a9dc899e92a9233b95fc58772b8ce0e0982ad52f9352 60504 
chemical-mime-data_0.1.94-6_all.deb
Files: 
 da02c9d9c1145a8b0200b63415124b24 1588 misc optional 
chemical-mime-data_0.1.94-6.dsc
 f86d6c1fbcc3d43a69fc61f621ca80e0 4090 misc optional 
chemical-mime-data_0.1.94-6.debian.tar.gz
 92591f293e5cdc7f05a4ee208969106a 60504 misc optional 
chemical-mime-data_0.1.94-6_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk9KiPQACgkQm0bx+wiPa4y8YACg1QU4fT+SoJAe9lzosxIhsBr8
L/EAoNPsHCPcSU36y6m9IY7R1xOxbLVT
=POjI
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to