Your message dated Sun, 03 Jul 2011 11:02:28 +0000
with message-id <e1qdkry-0003xu...@franck.debian.org>
and subject line Bug#610212: fixed in kftpgrabber 0.8.99~svn1214766-1
has caused the Debian Bug report #610212,
regarding FTBFS with recent binutils versions
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 ow...@bugs.debian.org
immediately.)


-- 
610212: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610212
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: kftpgrabber
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu natty ubuntu-patch
User: peter.fritzs...@gmx.de
Usertags: no-add-needed
Version: 0.8.99~svn1044538-3
Severity: minor
Tags: patch fixed-upstream

The attached patch makes kftpgrabber build with ld --no-add-needed and
--as-needed.

> /usr/bin/g++   -g -O2 -g -Wall -O2 -Wnon-virtual-dtor -Wno-long-long -ansi 
> -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith 
> -Wformat-security -fno-exceptions -DQT_NO_EXCEPTIONS -fno-check-new 
> -fno-common -Werror=return-type -Woverloaded-virtual -fno-threadsafe-statics 
> -fvisibility=hidden -fvisibility-inlines-hidden -O2 -g -DNDEBUG -DQT_NO_DEBUG 
>  -Wl,--enable-new-dtags -Wl,-Bsymbolic-functions 
> CMakeFiles/kftpgrabber.dir/kftpgrabber_automoc.o 
> CMakeFiles/kftpgrabber.dir/main.o CMakeFiles/kftpgrabber.dir/mainwindow.o 
> CMakeFiles/kftpgrabber.dir/checksumverifier.o 
> CMakeFiles/kftpgrabber.dir/kftpbookmarks.o 
> CMakeFiles/kftpgrabber.dir/kftpqueue.o 
> CMakeFiles/kftpgrabber.dir/kftpqueueprocessor.o 
> CMakeFiles/kftpgrabber.dir/kftpsession.o 
> CMakeFiles/kftpgrabber.dir/kftpqueueconverter.o 
> CMakeFiles/kftpgrabber.dir/kftptransfer.o 
> CMakeFiles/kftpgrabber.dir/kftptransferfile.o 
> CMakeFiles/kftpgrabber.dir/kftptransferdir.o 
> CMakeFiles/kftpgrabber.dir/fileexistsactions.o 
> CMakeFiles/kftpgrabber.dir/statistics.o CMakeFiles/kftpgrabber.dir/site.o 
> CMakeFiles/kftpgrabber.dir/queueobject.o 
> CMakeFiles/kftpgrabber.dir/queuegroup.o 
> CMakeFiles/kftpgrabber.dir/directoryscanner.o  -o kftpgrabber -rdynamic 
> -L"/build/user-kftpgrabber_0.8.99~svn1044538-3-i386-WIYEKo/kftpgrabber-0.8.99~svn1044538/obj-i686-linux-gnu/lib"
>  /usr/lib/libkdecore.so.5.6.0 /usr/lib/libkdnssd.so.4.6.0 
> /usr/lib/libkde3support.so.4.6.0 /usr/lib/libkutils.so.4.6.0 
> /usr/lib/libkfile.so.4.6.0 -lssh2 -lssl ../lib/libbrowser.a 
> ../lib/libbookmarkwidgets.a ../lib/libqueueviewwidget.a 
> ../lib/libfailedtransferswidget.a ../lib/libwidgets.a ../lib/libengine.a 
> ../lib/libmisc.a ../lib/libcustomcommands.a ../lib/libui.a 
> ../lib/libkftpinterfaces.so.4.6.0 /usr/lib/libQt3Support.so 
> /usr/lib/libkemoticons.so.4.6.0 /usr/lib/libkio.so.5.6.0 
> /usr/lib/libQtNetwork.so /usr/lib/libQtXml.so /usr/lib/libkidletime.so.4.6.0 
> /usr/lib/libkcmutils.so.4.6.0 /usr/lib/libkprintutils.so.4.6.0 
> /usr/lib/libkdeui.so.5.6.0 /usr/lib/libkdecore.so.5.6.0 /usr/lib/libQtDBus.so 
> /usr/lib/libQtCore.so /usr/lib/libQtSvg.so /usr/lib/libQtGui.so -lssh2 
> /usr/bin/ld: ../lib/libmisc.a(pluginmanager.o): undefined reference to symbol 
> 'typeinfo for KParts::Part'
> /usr/bin/ld: note: 'typeinfo for KParts::Part' is defined in DSO 
> /usr/lib/libkparts.so.4 so try adding it to the linker command line
> /usr/lib/libkparts.so.4: could not read symbols: Invalid operation

Description: Fix FTBFS with ld --no-add-needed.
Origin: upstream, http://websvn.kde.org/?view=revision&revision=1179398 and http://websvn.kde.org/?view=revision&revision=1214766

--- kftpgrabber-0.8.99~svn1044538.orig/src/CMakeLists.txt
+++ kftpgrabber-0.8.99~svn1044538/src/CMakeLists.txt
@@ -39,8 +39,8 @@ directoryscanner.cpp
 kde4_add_executable(kftpgrabber ${kftpgrabber_SRCS})
 
 # bookmarkwidgets 
-target_link_libraries(kftpgrabber ${KDE4_KDECORE_LIBS} ${KDE4_KDNSSD_LIBRARY} ${KDE4_KDE3SUPPORT_LIBRARY} ${KDE4_KUTILS_LIBRARY} ${KDE4_KFILE_LIBRARY} ${LIBSSH2_LIBRARY})
-target_link_libraries(kftpgrabber ssl browser bookmarkwidgets queueviewwidget failedtransferswidget widgets engine misc customcommands ui kftpinterfaces)
+target_link_libraries(kftpgrabber ${KDE4_KPARTS_LIBS} ${KDE4_KDECORE_LIBS} ${KDE4_KDNSSD_LIBRARY} ${KDE4_KDE3SUPPORT_LIBRARY} ${KDE4_KUTILS_LIBRARY} ${KDE4_KFILE_LIBRARY} ${LIBSSH2_LIBRARY})
+target_link_libraries(kftpgrabber browser bookmarkwidgets queueviewwidget failedtransferswidget widgets engine misc customcommands ui kftpinterfaces crypto)
 
 install(TARGETS kftpgrabber ${INSTALL_TARGETS_DEFAULT_ARGS})
 

--- End Message ---
--- Begin Message ---
Source: kftpgrabber
Source-Version: 0.8.99~svn1214766-1

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

kftpgrabber_0.8.99~svn1214766-1.debian.tar.gz
  to main/k/kftpgrabber/kftpgrabber_0.8.99~svn1214766-1.debian.tar.gz
kftpgrabber_0.8.99~svn1214766-1.dsc
  to main/k/kftpgrabber/kftpgrabber_0.8.99~svn1214766-1.dsc
kftpgrabber_0.8.99~svn1214766-1_amd64.deb
  to main/k/kftpgrabber/kftpgrabber_0.8.99~svn1214766-1_amd64.deb
kftpgrabber_0.8.99~svn1214766.orig.tar.gz
  to main/k/kftpgrabber/kftpgrabber_0.8.99~svn1214766.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 610...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Meskes <mes...@debian.org> (supplier of updated kftpgrabber 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 ftpmas...@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sun, 03 Jul 2011 12:31:30 +0200
Source: kftpgrabber
Binary: kftpgrabber
Architecture: source amd64
Version: 0.8.99~svn1214766-1
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org>
Changed-By: Michael Meskes <mes...@debian.org>
Description: 
 kftpgrabber - ftp client for KDE
Closes: 610212
Changes: 
 kftpgrabber (0.8.99~svn1214766-1) unstable; urgency=low
 .
   * New Upstream version 0.8.99~svn1214766 (Closes: #610212)
   * Bumped Standards-Version to 3.9.2, no changes needed
   * Updated lintian overrides for new version.
Checksums-Sha1: 
 92331e53986f3497ef8827f1f0b3c47489ce6ac7 1448 
kftpgrabber_0.8.99~svn1214766-1.dsc
 2d4b37afbfa3cdedc03ba1d29627292a50fb6ddd 565813 
kftpgrabber_0.8.99~svn1214766.orig.tar.gz
 fc6ed29a8ea44588006f4530c1ca209ef49f14c2 7891 
kftpgrabber_0.8.99~svn1214766-1.debian.tar.gz
 492efce9c7e33449c091148b4923dc2f8ce0de9c 728960 
kftpgrabber_0.8.99~svn1214766-1_amd64.deb
Checksums-Sha256: 
 71209df0f16fdcc3a71ced5906333ce23e1f4dd2bb3ef59314c16004020cf092 1448 
kftpgrabber_0.8.99~svn1214766-1.dsc
 5e84f414495400bc60ca158b5be085aa2f37e85bdd928a92a40eed5d69ee880e 565813 
kftpgrabber_0.8.99~svn1214766.orig.tar.gz
 a0221ab589ac90a5d913888f88a3e47caf04093900149326f6de5fb94677773a 7891 
kftpgrabber_0.8.99~svn1214766-1.debian.tar.gz
 42a12ba44b67248514e88fe37d830c17f3fe78c065898ebbc11b95c2e94e31d4 728960 
kftpgrabber_0.8.99~svn1214766-1_amd64.deb
Files: 
 66987f001d28f159380dcf5ff5f44ed7 1448 kde optional 
kftpgrabber_0.8.99~svn1214766-1.dsc
 f5a06f71a61820fa58d520862018b36c 565813 kde optional 
kftpgrabber_0.8.99~svn1214766.orig.tar.gz
 80531f43cedcb166ed7984522f2c6a5f 7891 kde optional 
kftpgrabber_0.8.99~svn1214766-1.debian.tar.gz
 a535cb0e80d0f1aa5a86138e9e30bf40 728960 kde optional 
kftpgrabber_0.8.99~svn1214766-1_amd64.deb

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

iD8DBQFOEEqMVkEm8inxm9ERAgZvAJwMP92IPI/giRAw2vEX19gBlyqaVgCgiCaL
ZZSD32zhwQxH8Yc282kA9aE=
=vQ6G
-----END PGP SIGNATURE-----



--- End Message ---
_______________________________________________
pkg-kde-extras mailing list
pkg-kde-extras@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-kde-extras

Reply via email to