Your message dated Sun, 07 Aug 2005 07:37:38 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#321632: fixed in pstoedit 3.40-1 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) -------------------------------------- Received: (at submit) by bugs.debian.org; 6 Aug 2005 15:30:23 +0000 >From [EMAIL PROTECTED] Sat Aug 06 08:30:23 2005 Return-path: <[EMAIL PROTECTED]> Received: from 0x555113eb.adsl.cybercity.dk (henning.makholm.net) [85.81.19.235] by spohr.debian.org with esmtp (Exim 3.36 1 (Debian)) id 1E1Qcx-00005z-00; Sat, 06 Aug 2005 08:30:23 -0700 Received: from haimon.lan.henning.makholm.net (haimon.lan.henning.makholm.net [10.0.2.2]) by henning.makholm.net (Postfix) with SMTP id F324E639C7; Sat, 6 Aug 2005 17:30:20 +0200 (CEST) Received: (nullmailer pid 990 invoked by uid 1000); Sat, 06 Aug 2005 15:30:20 -0000 Content-Type: multipart/mixed; boundary="===============0313633745==" MIME-Version: 1.0 From: Henning Makholm <[EMAIL PROTECTED]> To: Debian Bug Tracking System <[EMAIL PROTECTED]> Subject: libpstoedit0: needs C++ ABI transition X-Mailer: reportbug 3.15 Date: Sat, 06 Aug 2005 17:30:20 +0200 X-Debbugs-Cc: [EMAIL PROTECTED] Message-Id: <[EMAIL PROTECTED]> Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-11.0 required=4.0 tests=BAYES_00,HAS_PACKAGE, X_DEBBUGS_CC autolearn=ham version=2.60-bugs.debian.org_2005_01_02 This is a multi-part MIME message sent by reportbug. --===============0313633745== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline Package: libpstoedit0 Version: 3.33-15 Severity: serious Tags: patch Justification: uninstallable in sid libpstoedit0 currently cannot be installed in sid because of the C++ ABI transition. Its dependencies libmagick++6 and libplot0 are now libmagick++6c2 and libplot0c2. Beware that just rebuilding without change on an up-to-date unstable system is wrong, even through it produces an apparently working and installable package. The ABI transition scheme (see d-d-a) needs to be followed. The attached patch represents my understanding on what needs to be done for the transistion. -- Henning Makholm --===============0313633745== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="pstoedit.patch" diff -u pstoedit-3.33/debian/control pstoedit-3.33/debian/control --- pstoedit-3.33/debian/control +++ pstoedit-3.33/debian/control @@ -3,28 +3,29 @@ Priority: optional Maintainer: J.H.M. Dassen (Ray) <[EMAIL PROTECTED]> Build-Depends: debhelper (>> 3.0.0), docbook-to-man, - liblcms1-dev | liblcms-dev, libtiff4-dev, + liblcms1-dev | liblcms-dev, libtiff4-dev (>= 3.7.3-1), libjpeg62-dev | libjpeg-dev, libwmf-dev, libdps-dev, libxext-dev, libxt-dev, libsm-dev, libice-dev, libx11-dev, libbz2-dev, - zlib1g-dev, g++ (>= 3.2.2-0), libmagick++6-dev (>= 5:6.0.0.4-1), - libplot-dev (>= 2.4.1-9), libpng12-dev (>= 1.2.5.0-4), sysutils, debhelper, gs + zlib1g-dev, g++ (>= 3.2.2-0), libmagick++6-dev (>= 6:6.2.3.3-1), + libplot-dev (>= 2.4.1-14), libpng12-dev (>= 1.2.5.0-4), sysutils, debhelper, gs Standards-Version: 3.6.1 Package: libpstoedit-dev Section: devel Architecture: any -Depends: libpstoedit0 (= ${Source-Version}), libmagick++6-dev (>= 5:6.0.0.4-1), libplot-dev +Depends: libpstoedit0c2 (= ${Source-Version}), libmagick++6-dev (>= 6:6.2.3.3-1), libplot-dev (>= 2.4.1-14) Description: PostScript to editable vector graphics library (development files) pstoedit is a framework for converting Postscript and PDF files to various editable vector graphic formats. . This package contains files to build programs that use libpstoedit. -Package: libpstoedit0 +Package: libpstoedit0c2 Section: libs Architecture: any Depends: ${shlibs:Depends} -Replaces: libpstoedit-dev (<= 3.32-3) +Conflicts: libpstoedit0 +Replaces: libpstoedit-dev (<= 3.32-3), libpstoedit0 Description: PostScript to editable vector graphics library (runtime files) pstoedit is a framework for converting Postscript and PDF files to various editable vector graphic formats. diff -u pstoedit-3.33/debian/rules pstoedit-3.33/debian/rules --- pstoedit-3.33/debian/rules +++ pstoedit-3.33/debian/rules @@ -155,10 +155,10 @@ dh_strip dh_compress dh_fixperms - dh_makeshlibs -plibpstoedit0 -V 'libpstoedit0 (>= $(upstreamversion))' + dh_makeshlibs -plibpstoedit0c2 -V 'libpstoedit0c2 (>= $(upstreamversion))' dh_installdeb # dh_perl - dh_shlibdeps -Llibpstoedit0 -ldebian/libpstoedit0/usr/lib + dh_shlibdeps -Llibpstoedit0c2 -ldebian/libpstoedit0c2/usr/lib dh_gencontrol dh_md5sums dh_builddeb diff -u pstoedit-3.33/debian/shlibs.local pstoedit-3.33/debian/shlibs.local --- pstoedit-3.33/debian/shlibs.local +++ pstoedit-3.33/debian/shlibs.local @@ -1 +1,2 @@ -libpstoedit 0 libpstoedit0 (>= 3.32-0) +libpstoedit 0 libpstoedit0c2 + diff -u pstoedit-3.33/debian/changelog pstoedit-3.33/debian/changelog --- pstoedit-3.33/debian/changelog +++ pstoedit-3.33/debian/changelog @@ -1,3 +1,9 @@ +pstoedit (3.33-15mak3) unstable; urgency=low + + * C++ ABI transition; libpstoedit0 is now libpstoedit0c2 + + -- Henning Makholm <[EMAIL PROTECTED]> Sat, 6 Aug 2005 16:10:54 +0200 + pstoedit (3.33-15) unstable; urgency=medium * [debian/control] Libtiff transition: updated build dependencies. reverted: --- pstoedit-3.33/debian/libpstoedit0.files +++ pstoedit-3.33.orig/debian/libpstoedit0.files @@ -1,3 +0,0 @@ -usr/lib/libpstoedit.so.* -usr/lib/pstoedit/lib*.so.* -usr/lib/pstoedit/lib*.so only in patch2: unchanged: --- pstoedit-3.33.orig/debian/libpstoedit0c2.files +++ pstoedit-3.33/debian/libpstoedit0c2.files @@ -0,0 +1,3 @@ +usr/lib/libpstoedit.so.* +usr/lib/pstoedit/lib*.so.* +usr/lib/pstoedit/lib*.so --===============0313633745==-- --------------------------------------- Received: (at 321632-close) by bugs.debian.org; 7 Aug 2005 14:40:28 +0000 >From [EMAIL PROTECTED] Sun Aug 07 07:40:28 2005 Return-path: <[EMAIL PROTECTED]> Received: from joerg by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1E1mHS-0003hm-00; Sun, 07 Aug 2005 07:37:38 -0700 From: [EMAIL PROTECTED] (J.H.M. Dassen (Ray)) To: [EMAIL PROTECTED] X-Katie: lisa $Revision: 1.30 $ Subject: Bug#321632: fixed in pstoedit 3.40-1 Message-Id: <[EMAIL PROTECTED]> Sender: Joerg Jaspert <[EMAIL PROTECTED]> Date: Sun, 07 Aug 2005 07:37:38 -0700 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-CrossAssassin-Score: 2 Source: pstoedit Source-Version: 3.40-1 We believe that the bug you reported is fixed in the latest version of pstoedit, which is due to be installed in the Debian FTP archive: libpstoedit-dev_3.40-1_i386.deb to pool/main/p/pstoedit/libpstoedit-dev_3.40-1_i386.deb libpstoedit0c2_3.40-1_i386.deb to pool/main/p/pstoedit/libpstoedit0c2_3.40-1_i386.deb pstoedit_3.40-1.diff.gz to pool/main/p/pstoedit/pstoedit_3.40-1.diff.gz pstoedit_3.40-1.dsc to pool/main/p/pstoedit/pstoedit_3.40-1.dsc pstoedit_3.40-1_i386.deb to pool/main/p/pstoedit/pstoedit_3.40-1_i386.deb pstoedit_3.40.orig.tar.gz to pool/main/p/pstoedit/pstoedit_3.40.orig.tar.gz 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. J.H.M. Dassen (Ray) <[EMAIL PROTECTED]> (supplier of updated pstoedit 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: Sun, 7 Aug 2005 15:36:36 +0200 Source: pstoedit Binary: pstoedit libpstoedit-dev libpstoedit0c2 Architecture: source i386 Version: 3.40-1 Distribution: unstable Urgency: high Maintainer: J.H.M. Dassen (Ray) <[EMAIL PROTECTED]> Changed-By: J.H.M. Dassen (Ray) <[EMAIL PROTECTED]> Description: libpstoedit-dev - PostScript to editable vector graphics library (development files libpstoedit0c2 - PostScript to editable vector graphics library (runtime files) pstoedit - PostScript and PDF files to editable vector graphics converter Closes: 293045 321632 Changes: pstoedit (3.40-1) unstable; urgency=high . * New upstream release. (Closes: #293045) * [src/Makefile.am, src/Makefile.in] Add "-ldl" to libpstoedit_la_LIBADD so as to generate complete inter-library dependencies. * [src/drvlplot.cpp] Minor changes needed to get things to build. * [debian/control, debian/rules, libpstoedit0c2.files] C++ ABI transition; libpstoedit0 is now libpstoedit0c2. Based on a patch by Henning Makholm <[EMAIL PROTECTED]>. (Closes: #321632) * [debian/shlibs.local, debian/libpstoedit0.files] Dropped. * [debian/rules, debian/control] Include buildinfo. * [debian/pstoedit.docs] Added. * [debian/pstoedit.preinst] Removed bashism. * [debian/control] Updated Standards-Version. Files: 0a797fab09c6c75422ded4302f4aed51 961 graphics optional pstoedit_3.40-1.dsc 5756c28eef3a11fe395248c5bf053556 789869 graphics optional pstoedit_3.40.orig.tar.gz 09dd9faf3ee7c4c65382d324bc89f7c9 22644 graphics optional pstoedit_3.40-1.diff.gz 39c6dbefec4ce1aeb75f24c8b07d3b4a 77324 devel optional libpstoedit-dev_3.40-1_i386.deb 499e7bc9af5d083984a7b0dad627400d 317058 libs optional libpstoedit0c2_3.40-1_i386.deb 6d51674f0d78bf285da6210c4112736c 161014 graphics optional pstoedit_3.40-1_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFC9hDPA+HB2Re6Rc4RAo0UAJ9kxOgZuqAVlobzqzYE907qyIXBBgCgjiUy VTQGF+r6Vjqgl4g5L0Q+TjA= =uckg -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]