Your message dated Tue, 04 Mar 2008 19:32:03 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#458884: fixed in packagesearch 2.3
has caused the Debian Bug report #458884,
regarding packagesearch: Does not build on amd64
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.)


-- 
458884: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=458884
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: packagesearch
Version: 2.2.6
Severity: serious
Tags: patch
Justification: no longer builds from source

packagesearch is failing to build at least on amd64[1]. The problem
seems to be that plugins use symbols from the packagesearch binary but
gcc is being called with -Wl,--no-undefined. Attached is a patch that
removes said flag from the build, since it is not necessary.


[1]
http://buildd.debian.org/fetch.cgi?pkg=packagesearch;ver=2.2.6%2Bb2;arch=amd64;stamp=1199919848

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.24-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages packagesearch depends on:
ii  apt [libapt-pkg-libc6. 0.7.11            Advanced front-end for dpkg
ii  debtags                1.7.3+b3          Enables support for package tags
ii  libc6                  2.7-9             GNU C Library: Shared libraries
ii  libept0                0.5.14            High-level library for managing De
ii  libgcc1                1:4.3.0~rc2-1     GCC support library
ii  libqt4-core            4.3.4-1           Qt 4 core non-GUI functionality ru
ii  libqt4-gui             4.3.4-1           Qt 4 core GUI functionality runtim
ii  libqt4-qt3support      4.3.4-1           Qt 3 compatibility library for Qt 
ii  libstdc++6             4.3.0~rc2-1       The GNU Standard C++ Library v3
ii  libxapian15            1.0.5-1           Search engine library
ii  zlib1g                 1:1.2.3.3.dfsg-11 compression library - runtime

Versions of packages packagesearch recommends:
ii  apt-file                2.0.8.2          APT package searching utility -- c
ii  deborphan               1.7.23           Find orphaned libraries
ii  konsole [x-terminal-emu 4:3.5.8.dfsg.1-7 X terminal emulator for KDE
ii  xterm [x-terminal-emula 232-1            X terminal emulator

-- no debconf information
diff -Nru packagesearch-2.2.6/src/plugins/aptplugin/aptplugin.pro packagesearch-2.2.6.new/src/plugins/aptplugin/aptplugin.pro
--- packagesearch-2.2.6/src/plugins/aptplugin/aptplugin.pro	2006-09-29 12:00:43.000000000 -0400
+++ packagesearch-2.2.6.new/src/plugins/aptplugin/aptplugin.pro	2008-03-04 13:51:02.000000000 -0300
@@ -50,6 +50,7 @@
 QMAKE_CXXFLAGS_DEBUG += --include ../../workarounds.h `pkg-config --cflags libept`
 QMAKE_CXXFLAGS_RELEASE += --include ../../workarounds.h `pkg-config --cflags libept`
 LIBS += `pkg-config  --libs libept`
+QMAKE_LFLAGS -= -Wl,--no-undefined
 # Uncomment to see warnings for all unresolved symbols, to catch locations of
 # missing template instantiations
 #LIBS += -Wl,--unresolved-symbols=report-all
diff -Nru packagesearch-2.2.6/src/plugins/debtagsplugin/debtagsplugin.pro packagesearch-2.2.6.new/src/plugins/debtagsplugin/debtagsplugin.pro
--- packagesearch-2.2.6/src/plugins/debtagsplugin/debtagsplugin.pro	2006-12-03 11:24:24.000000000 -0300
+++ packagesearch-2.2.6.new/src/plugins/debtagsplugin/debtagsplugin.pro	2008-03-04 13:51:02.000000000 -0300
@@ -56,6 +56,7 @@
 ../../
 QMAKE_CXXFLAGS_DEBUG += --include ../../workarounds.h `pkg-config --cflags libept`
 QMAKE_CXXFLAGS_RELEASE += --include ../../workarounds.h `pkg-config --cflags libept`
+QMAKE_LFLAGS -= -Wl,--no-undefined
 LIBS += `pkg-config  --libs libept`
 # Uncomment to see warnings for all unresolved symbols, to catch locations of
 # missing template instantiations
diff -Nru packagesearch-2.2.6/src/plugins/filenameplugin/filenameplugin.pro packagesearch-2.2.6.new/src/plugins/filenameplugin/filenameplugin.pro
--- packagesearch-2.2.6/src/plugins/filenameplugin/filenameplugin.pro	2006-09-29 12:00:43.000000000 -0400
+++ packagesearch-2.2.6.new/src/plugins/filenameplugin/filenameplugin.pro	2008-03-04 13:51:02.000000000 -0300
@@ -21,6 +21,7 @@
 ../../
 QMAKE_CXXFLAGS_RELEASE += --include ../../workarounds.h `pkg-config --cflags libept`
 QMAKE_CXXFLAGS_DEBUG += --include ../../workarounds.h `pkg-config --cflags libept`
+QMAKE_LFLAGS -= -Wl,--no-undefined
 MOC_DIR = .moc
 UI_DIR = .ui
 OBJECTS_DIR = .obj
diff -Nru packagesearch-2.2.6/src/plugins/orphanplugin/orphanplugin.pro packagesearch-2.2.6.new/src/plugins/orphanplugin/orphanplugin.pro
--- packagesearch-2.2.6/src/plugins/orphanplugin/orphanplugin.pro	2006-09-29 12:00:43.000000000 -0400
+++ packagesearch-2.2.6.new/src/plugins/orphanplugin/orphanplugin.pro	2008-03-04 13:51:02.000000000 -0300
@@ -19,6 +19,7 @@
 ../../
 QMAKE_CXXFLAGS_RELEASE += --include ../../workarounds.h `pkg-config --cflags libept`
 QMAKE_CXXFLAGS_DEBUG += --include ../../workarounds.h `pkg-config --cflags libept`
+QMAKE_LFLAGS -= -Wl,--no-undefined
 MOC_DIR = .moc
 UI_DIR = .ui
 OBJECTS_DIR = .obj

--- End Message ---
--- Begin Message ---
Source: packagesearch
Source-Version: 2.3

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

packagesearch_2.3.dsc
  to pool/main/p/packagesearch/packagesearch_2.3.dsc
packagesearch_2.3.tar.gz
  to pool/main/p/packagesearch/packagesearch_2.3.tar.gz
packagesearch_2.3_amd64.deb
  to pool/main/p/packagesearch/packagesearch_2.3_amd64.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.
Benjamin Mesing <[EMAIL PROTECTED]> (supplier of updated packagesearch 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, 02 Mar 2008 10:20:28 +0100
Source: packagesearch
Binary: packagesearch
Architecture: source amd64
Version: 2.3
Distribution: unstable
Urgency: medium
Maintainer: Benjamin Mesing <[EMAIL PROTECTED]>
Changed-By: Benjamin Mesing <[EMAIL PROTECTED]>
Description: 
 packagesearch - GUI for searching packages and viewing package information
Closes: 424913 447261 458577 458884 466888
Changes: 
 packagesearch (2.3) unstable; urgency=medium
 .
   * New upstream release (fully ported to QT4)
      - compiled against latest libapt (Closes: #466888)
      - fixed text formatting issue of "Package Description" (Closes: #424913)
      - fixed Makefiles to zero out QMAKE_LFLAGS (removes --no-undefined)
        so that the plugins compile again (Closes: #458884)
      - fixed build-script for manpage (Closes: #458577)
      - tag selection is now triggered by double-clicking (Closes: #447261)
      - updated section for menu entry (changed in recent policy)
Files: 
 933c1847eb276a249bf25040d2e0e56b 796 admin optional packagesearch_2.3.dsc
 bac17be164c5ba62ee2ea3fd799ee4c5 612037 admin optional packagesearch_2.3.tar.gz
 37d1e66cbbbda862deb9180b320c9eff 451222 admin optional 
packagesearch_2.3_amd64.deb

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

iD8DBQFHzaJm01u8mbx9AgoRAoYLAKC6rpPWqeVIXYgWdI95S9+w+vC81ACfWNXl
NN5KxPXAtSwzu9gKKPsf6mY=
=1Ao9
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to