Your message dated Sat, 23 Sep 2006 11:47:17 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#387585: fixed in conglomerate 0.9.1-3
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: conglomerate
Version: 0.9.1-2
Severity: grave
Tags: patch

conglomerate is uninstallable on amd64 following a binNMU, because it now
depends on conglomerate-common (>+ 0.9.1-2+b1), but as conglomerate-common
is arch: all it is still at version 0.9.1-2.

This comes about because the code to detect the upstream version in
debian/rules does not recognise the + character in the Debian revision.  The
attached patch fixes this, and allows ~ as well.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.3
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages conglomerate depends on:
ii  conglomerate-common        0.9.1-2       common files for the user-friendly
ii  libart-2.0-2               2.3.17-1      Library of functions for 2D graphi
ii  libatk1.0-0                1.12.2-1      The ATK accessibility toolkit
ii  libaudiofile0              0.2.6-6       Open-source version of SGI's audio
ii  libavahi-client3           0.6.13-3      Avahi client library
ii  libavahi-common3           0.6.13-3      Avahi common library
ii  libavahi-glib1             0.6.13-3      Avahi glib integration library
ii  libbonobo2-0               2.16.0-1      Bonobo CORBA interfaces library
ii  libbonoboui2-0             2.16.0-1      The Bonobo UI library
ii  libc6                      2.3.999.2-12  GNU C Library: Shared libraries
ii  libcairo2                  1.2.4-2       The Cairo 2D vector graphics libra
ii  libdbus-1-2                0.62-4        simple interprocess messaging syst
ii  libesd0                    0.2.36-3      Enlightened Sound Daemon - Shared 
ii  libfontconfig1             2.4.0-5       generic font configuration library
ii  libfreetype6               2.2.1-5       FreeType 2 font engine, shared lib
ii  libgconf2-4                2.14.0-4      GNOME configuration database syste
ii  libgcrypt11                1.2.3-2       LGPL Crypto library - runtime libr
ii  libglade2-0                1:2.6.0-2     library to load .glade files at ru
ii  libglib2.0-0               2.12.3-2      The GLib library of C routines
ii  libgnome-keyring0          0.6.0-1       GNOME keyring services library
ii  libgnome2-0                2.16.0-1      The GNOME 2 library - runtime file
ii  libgnomecanvas2-0          2.14.0-2      A powerful object-oriented display
ii  libgnomeprint2.2-0         2.12.1-6      The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0       2.12.1-4      GNOME 2.2 print architecture User 
ii  libgnomeui-0               2.14.1-2+b1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0             2.16.0-1      GNOME virtual file-system (runtime
ii  libgnutls13                1.4.4-1       the GNU TLS library - runtime libr
ii  libgpg-error0              1.2-1         library for common error values an
ii  libgtk2.0-0                2.8.20-1      The GTK+ graphical user interface 
ii  libgtksourceview1.0-0      1.7.2-1       shared libraries for the GTK+ synt
ii  libice6                    1:1.0.1-2     X11 Inter-Client Exchange library
ii  libjpeg62                  6b-13         The Independent JPEG Group's JPEG 
ii  liborbit2                  1:2.14.0-2+b1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0              1.14.0-0beta2 Layout and rendering of internatio
ii  libpng12-0                 1.2.8rel-5.2  PNG library - runtime
ii  libpopt0                   1.10-3        lib for parsing cmdline parameters
ii  libsm6                     1:1.0.1-2     X11 Session Management library
ii  libtasn1-3                 0.3.5-2       Manage ASN.1 structures (runtime)
ii  libx11-6                   2:1.0.0-9     X11 client-side library
ii  libxcursor1                1.1.7-4       X cursor management library
ii  libxext6                   1:1.0.1-2     X11 miscellaneous extension librar
ii  libxfixes3                 1:4.0.1-3     X11 miscellaneous 'fixes' extensio
ii  libxi6                     1:1.0.1-3     X11 Input extension library
ii  libxinerama1               1:1.0.1-4.1   X11 Xinerama extension library
ii  libxml2                    2.6.26.dfsg-3 GNOME XML library
ii  libxrandr2                 2:1.1.0.2-4   X11 RandR extension library
ii  libxrender1                1:0.9.1-3     X Rendering Extension client libra
ii  libxslt1.1                 1.1.17-4      XSLT processing library - runtime 
ii  zlib1g                     1:1.2.3-13    compression library - runtime

Versions of packages conglomerate recommends:
ii  xml-core                      0.09-0.1   XML infrastructure and XML catalog

-- no debconf information
--- debian/rules.orig   2006-09-15 09:52:27.000000000 +0100
+++ debian/rules        2006-09-15 09:47:17.000000000 +0100
@@ -5,5 +5,5 @@
 PACKAGE = conglomerate
 
-upstreamversion=$(shell dpkg-parsechangelog | grep Version | head -1 | sed -e 
's/Version: //g' -e 's/-[A-Za-z0-9\.]*$$//g')
+upstreamversion=$(shell dpkg-parsechangelog | grep Version | head -1 | sed -e 
's/Version: //g' -e 's/-[A-Za-z0-9\.\+~]*$$//g')
 
 # Uncomment this to turn on verbose mode.

--- End Message ---
--- Begin Message ---
Source: conglomerate
Source-Version: 0.9.1-3

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

conglomerate-common_0.9.1-3_all.deb
  to pool/main/c/conglomerate/conglomerate-common_0.9.1-3_all.deb
conglomerate_0.9.1-3.diff.gz
  to pool/main/c/conglomerate/conglomerate_0.9.1-3.diff.gz
conglomerate_0.9.1-3.dsc
  to pool/main/c/conglomerate/conglomerate_0.9.1-3.dsc
conglomerate_0.9.1-3_powerpc.deb
  to pool/main/c/conglomerate/conglomerate_0.9.1-3_powerpc.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.
Geert Stappers <[EMAIL PROTECTED]> (supplier of updated conglomerate 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.7
Date: Sat, 23 Sep 2006 19:56:39 +0200
Source: conglomerate
Binary: conglomerate-common conglomerate conglomerate-dbg
Architecture: source powerpc all
Version: 0.9.1-3
Distribution: unstable
Urgency: low
Maintainer: Geert Stappers <[EMAIL PROTECTED]>
Changed-By: Geert Stappers <[EMAIL PROTECTED]>
Description: 
 conglomerate - user-friendly XML editor
 conglomerate-common - common files for the user-friendly XML editor
Closes: 387585 388754 388866
Changes: 
 conglomerate (0.9.1-3) unstable; urgency=low
 .
   * When determining upstream version, allow + and ~; fixes uninstallability,
     patch from Martin Orr. Closes: #387585, #388866
     Should obsolete announced NMU by Steinar Gunderson, thanks away!
     Closes: #388754
 .
   * Made conglomerate.prerm empty. Closes #387626
Files: 
 8ab388ecd32425e47661851b54fd8783 808 editors optional conglomerate_0.9.1-3.dsc
 ba8958cdc81bb372a933a8b21d241d50 1942 editors optional 
conglomerate_0.9.1-3.diff.gz
 a2959272d651c22a98e73e7be6eaeda4 257992 editors optional 
conglomerate_0.9.1-3_powerpc.deb
 62ede0a6544705ecbf91214008c27f63 1345346 editors optional 
conglomerate-common_0.9.1-3_all.deb

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

iD8DBQFFFXvZOSINbgwa/7sRAjJLAJ4oeXjlEWFIeacFYf5R7SiuSdF3igCeJXPd
eHI+U5OfZLBP3atcMVrayNY=
=juk1
-----END PGP SIGNATURE-----


--- End Message ---

Reply via email to