[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#511700: marked as done (libqtcore4: Sockets > 1024 cause warning flood)



Your message dated Sat, 21 Feb 2009 10:26:57 +0000
with message-id <E1Lap4T-0002IF-Ra@ries.debian.org>
and subject line Bug#511700: fixed in qt4-x11 4.5.0~rc1-1
has caused the Debian Bug report #511700,
regarding libqtcore4: Sockets > 1024 cause warning flood
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 owner@bugs.debian.org
immediately.)


-- 
511700: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=511700
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: libqtcore4
Version: 4.4.3-1
Severity: normal
Tags: patch

If you use sockets > 1024, QSocketNotifier prints out
QSocketNotifier: Socket descriptor too large for select()

However, if Qt is compiled with Glib support, glib uses poll() and not
select, so this warning is wrong. 

Programs still work fine, but the output gets filled with these warnings.

The attached patch disables the warning when running with the glib event
loop.

-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libqtcore4 depends on:
ii  libc6                  2.7-16            GNU C Library: Shared libraries
ii  libgcc1                1:4.3.2-1.1       GCC support library
ii  libglib2.0-0           2.16.6-1          The GLib library of C routines
ii  libstdc++6             4.3.2-1.1         The GNU Standard C++ Library v3
ii  zlib1g                 1:1.2.3.3.dfsg-12 compression library - runtime

libqtcore4 recommends no packages.

libqtcore4 suggests no packages.

-- no debconf information
--- qt-x11-opensource-src-4.4.3/src/corelib/kernel/qsocketnotifier.cpp	2008-09-27 10:58:47.000000000 +0200
+++ qt-x11-4.4.3/src/corelib/kernel/qsocketnotifier.cpp	2009-01-12 16:50:55.000000000 +0100
@@ -168,10 +168,6 @@
 {
     if (socket < 0)
         qWarning("QSocketNotifier: Invalid socket specified");
-#if defined(Q_OS_UNIX)
-    if (socket >= FD_SETSIZE)
-        qWarning("QSocketNotifier: Socket descriptor too large for select()");
-#endif
     sockfd = socket;
     sntype = type;
     snenabled = true;
@@ -180,6 +176,14 @@
     if (!d->threadData->eventDispatcher) {
         qWarning("QSocketNotifier: Can only be used with threads started with QThread");
     } else {
+#if defined(Q_OS_UNIX)
+#ifdef QT_NO_GLIB
+        if (socket >= FD_SETSIZE)
+#else
+        if ((socket >= FD_SETSIZE) && (QLatin1String(d->threadData->eventDispatcher->metaObject()->className()) != QLatin1String("QEventDispatcherGlib")))
+#endif
+          qWarning("QSocketNotifier: Socket descriptor too large for select()");
+#endif
         d->threadData->eventDispatcher->registerSocketNotifier(this);
     }
 }
@@ -206,10 +210,6 @@
     setObjectName(QString::fromAscii(name));
     if (socket < 0)
         qWarning("QSocketNotifier: Invalid socket specified");
-#if defined(Q_OS_UNIX)
-    if (socket >= FD_SETSIZE)
-        qWarning("QSocketNotifier: Socket descriptor too large for select()");
-#endif
     sockfd = socket;
     sntype = type;
     snenabled = true;
@@ -218,6 +218,14 @@
     if (!d->threadData->eventDispatcher) {
         qWarning("QSocketNotifier: Can only be used with threads started with QThread");
     } else {
+#if defined(Q_OS_UNIX)
+#ifdef QT_NO_GLIB
+        if (socket >= FD_SETSIZE)
+#else
+        if ((socket >= FD_SETSIZE) && (QLatin1String(d->threadData->eventDispatcher->metaObject()->className()) != QLatin1String("QEventDispatcherGlib")))
+#endif
+          qWarning("QSocketNotifier: Socket descriptor too large for select()");
+#endif
         d->threadData->eventDispatcher->registerSocketNotifier(this);
     }
 }

--- End Message ---
--- Begin Message ---
Source: qt4-x11
Source-Version: 4.5.0~rc1-1

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

libqt4-assistant_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-assistant_4.5.0~rc1-1_amd64.deb
libqt4-assistant_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-assistant_4.5.0~rc1-1_i386.deb
libqt4-core_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-core_4.5.0~rc1-1_amd64.deb
libqt4-core_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-core_4.5.0~rc1-1_i386.deb
libqt4-dbg_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-dbg_4.5.0~rc1-1_amd64.deb
libqt4-dbg_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-dbg_4.5.0~rc1-1_i386.deb
libqt4-dbus_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-dbus_4.5.0~rc1-1_amd64.deb
libqt4-dbus_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-dbus_4.5.0~rc1-1_i386.deb
libqt4-designer_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-designer_4.5.0~rc1-1_amd64.deb
libqt4-designer_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-designer_4.5.0~rc1-1_i386.deb
libqt4-dev_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-dev_4.5.0~rc1-1_amd64.deb
libqt4-dev_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-dev_4.5.0~rc1-1_i386.deb
libqt4-gui_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-gui_4.5.0~rc1-1_amd64.deb
libqt4-gui_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-gui_4.5.0~rc1-1_i386.deb
libqt4-help_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-help_4.5.0~rc1-1_amd64.deb
libqt4-help_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-help_4.5.0~rc1-1_i386.deb
libqt4-network_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-network_4.5.0~rc1-1_amd64.deb
libqt4-network_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-network_4.5.0~rc1-1_i386.deb
libqt4-opengl-dev_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-opengl-dev_4.5.0~rc1-1_amd64.deb
libqt4-opengl-dev_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-opengl-dev_4.5.0~rc1-1_i386.deb
libqt4-opengl_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-opengl_4.5.0~rc1-1_amd64.deb
libqt4-opengl_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-opengl_4.5.0~rc1-1_i386.deb
libqt4-qt3support_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-qt3support_4.5.0~rc1-1_amd64.deb
libqt4-qt3support_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-qt3support_4.5.0~rc1-1_i386.deb
libqt4-script_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-script_4.5.0~rc1-1_amd64.deb
libqt4-script_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-script_4.5.0~rc1-1_i386.deb
libqt4-scripttools_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-scripttools_4.5.0~rc1-1_amd64.deb
libqt4-scripttools_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-scripttools_4.5.0~rc1-1_i386.deb
libqt4-sql-ibase_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-sql-ibase_4.5.0~rc1-1_amd64.deb
libqt4-sql-ibase_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-sql-ibase_4.5.0~rc1-1_i386.deb
libqt4-sql-mysql_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-sql-mysql_4.5.0~rc1-1_amd64.deb
libqt4-sql-mysql_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-sql-mysql_4.5.0~rc1-1_i386.deb
libqt4-sql-odbc_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-sql-odbc_4.5.0~rc1-1_amd64.deb
libqt4-sql-odbc_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-sql-odbc_4.5.0~rc1-1_i386.deb
libqt4-sql-psql_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-sql-psql_4.5.0~rc1-1_amd64.deb
libqt4-sql-psql_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-sql-psql_4.5.0~rc1-1_i386.deb
libqt4-sql-sqlite2_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-sql-sqlite2_4.5.0~rc1-1_amd64.deb
libqt4-sql-sqlite2_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-sql-sqlite2_4.5.0~rc1-1_i386.deb
libqt4-sql-sqlite_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-sql-sqlite_4.5.0~rc1-1_amd64.deb
libqt4-sql-sqlite_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-sql-sqlite_4.5.0~rc1-1_i386.deb
libqt4-sql_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-sql_4.5.0~rc1-1_amd64.deb
libqt4-sql_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-sql_4.5.0~rc1-1_i386.deb
libqt4-svg_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-svg_4.5.0~rc1-1_amd64.deb
libqt4-svg_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-svg_4.5.0~rc1-1_i386.deb
libqt4-test_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-test_4.5.0~rc1-1_amd64.deb
libqt4-test_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-test_4.5.0~rc1-1_i386.deb
libqt4-webkit-dbg_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-webkit-dbg_4.5.0~rc1-1_amd64.deb
libqt4-webkit-dbg_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-webkit-dbg_4.5.0~rc1-1_i386.deb
libqt4-webkit_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-webkit_4.5.0~rc1-1_amd64.deb
libqt4-webkit_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-webkit_4.5.0~rc1-1_i386.deb
libqt4-xml_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-xml_4.5.0~rc1-1_amd64.deb
libqt4-xml_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-xml_4.5.0~rc1-1_i386.deb
libqt4-xmlpatterns-dbg_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-xmlpatterns-dbg_4.5.0~rc1-1_amd64.deb
libqt4-xmlpatterns-dbg_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-xmlpatterns-dbg_4.5.0~rc1-1_i386.deb
libqt4-xmlpatterns_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqt4-xmlpatterns_4.5.0~rc1-1_amd64.deb
libqt4-xmlpatterns_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqt4-xmlpatterns_4.5.0~rc1-1_i386.deb
libqtcore4_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqtcore4_4.5.0~rc1-1_amd64.deb
libqtcore4_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqtcore4_4.5.0~rc1-1_i386.deb
libqtgui4_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/libqtgui4_4.5.0~rc1-1_amd64.deb
libqtgui4_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/libqtgui4_4.5.0~rc1-1_i386.deb
qt4-demos_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/qt4-demos_4.5.0~rc1-1_amd64.deb
qt4-demos_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/qt4-demos_4.5.0~rc1-1_i386.deb
qt4-designer_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/qt4-designer_4.5.0~rc1-1_amd64.deb
qt4-designer_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/qt4-designer_4.5.0~rc1-1_i386.deb
qt4-dev-tools_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/qt4-dev-tools_4.5.0~rc1-1_amd64.deb
qt4-dev-tools_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/qt4-dev-tools_4.5.0~rc1-1_i386.deb
qt4-doc-html_4.5.0~rc1-1_all.deb
  to pool/main/q/qt4-x11/qt4-doc-html_4.5.0~rc1-1_all.deb
qt4-doc_4.5.0~rc1-1_all.deb
  to pool/main/q/qt4-x11/qt4-doc_4.5.0~rc1-1_all.deb
qt4-qmake_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/qt4-qmake_4.5.0~rc1-1_amd64.deb
qt4-qmake_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/qt4-qmake_4.5.0~rc1-1_i386.deb
qt4-qtconfig_4.5.0~rc1-1_amd64.deb
  to pool/main/q/qt4-x11/qt4-qtconfig_4.5.0~rc1-1_amd64.deb
qt4-qtconfig_4.5.0~rc1-1_i386.deb
  to pool/main/q/qt4-x11/qt4-qtconfig_4.5.0~rc1-1_i386.deb
qt4-x11_4.5.0~rc1-1.diff.gz
  to pool/main/q/qt4-x11/qt4-x11_4.5.0~rc1-1.diff.gz
qt4-x11_4.5.0~rc1-1.dsc
  to pool/main/q/qt4-x11/qt4-x11_4.5.0~rc1-1.dsc
qt4-x11_4.5.0~rc1.orig.tar.gz
  to pool/main/q/qt4-x11/qt4-x11_4.5.0~rc1.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 511700@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Fathi Boudra <fabo@debian.org> (supplier of updated qt4-x11 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 ftpmaster@debian.org)


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

Format: 1.8
Date: Fri, 20 Feb 2009 10:09:28 +0100
Source: qt4-x11
Binary: libqtcore4 libqt4-core libqtgui4 libqt4-gui libqt4-network libqt4-opengl libqt4-script libqt4-scripttools libqt4-sql libqt4-sql-ibase libqt4-sql-mysql libqt4-sql-odbc libqt4-sql-psql libqt4-sql-sqlite libqt4-sql-sqlite2 libqt4-svg libqt4-webkit libqt4-xml libqt4-xmlpatterns libqt4-dbus libqt4-qt3support libqt4-designer libqt4-help libqt4-assistant libqt4-test libqt4-dev libqt4-opengl-dev libqt4-dbg libqt4-webkit-dbg libqt4-xmlpatterns-dbg qt4-designer qt4-dev-tools qt4-qmake qt4-qtconfig qt4-demos qt4-doc qt4-doc-html
Architecture: all amd64 i386 source 
Version: 4.5.0~rc1-1
Distribution: experimental
Urgency: low
Maintainer: Fathi Boudra <fabo@debian.org>
Changed-By: Fathi Boudra <fabo@debian.org>
Closes: 507143 511700
Description:
 libqt4-assistant - Qt 4 assistant module
 libqt4-core - transitional package for Qt 4 core non-GUI runtime libraries
 libqt4-dbg - Qt 4 library debugging symbols
 libqt4-dbus - Qt 4 D-Bus module
 libqt4-designer - Qt 4 designer module
 libqt4-dev - Qt 4 development files
 libqt4-gui - transitional package for Qt 4 GUI runtime libraries
 libqt4-help - Qt 4 help module
 libqt4-network - Qt 4 network module
 libqt4-opengl-dev - Qt 4 OpenGL library development files
 libqt4-opengl - Qt 4 OpenGL module
 libqt4-qt3support - Qt 3 compatibility library for Qt 4
 libqt4-script - Qt 4 script module
 libqt4-scripttools - Qt 4 script tools module
 libqt4-sql-ibase - Qt 4 InterBase/FireBird database driver
 libqt4-sql-mysql - Qt 4 MySQL database driver
 libqt4-sql-odbc - Qt 4 ODBC database driver
 libqt4-sql-psql - Qt 4 PostgreSQL database driver
 libqt4-sql - Qt 4 SQL module
 libqt4-sql-sqlite2 - Qt 4 SQLite 2 database driver
 libqt4-sql-sqlite - Qt 4 SQLite 3 database driver
 libqt4-svg - Qt 4 SVG module
 libqt4-test - Qt 4 test module
 libqt4-webkit-dbg - Qt 4 WebKit library debugging symbols
 libqt4-webkit - Qt 4 WebKit module
 libqt4-xmlpatterns-dbg - Qt 4 XML patterns library debugging symbols
 libqt4-xmlpatterns - Qt 4 XML patterns module
 libqt4-xml - Qt 4 XML module
 libqtcore4 - Qt 4 core module
 libqtgui4  - Qt 4 GUI module
 qt4-demos  - Qt 4 examples and demos
 qt4-designer - graphical designer for Qt 4 applications
 qt4-dev-tools - Qt 4 development tools
 qt4-doc-html - Qt 4 API documentation (HTML format)
 qt4-doc    - Qt 4 API documentation
 qt4-qmake  - Qt 4 qmake Makefile generator tool
 qt4-qtconfig - Qt 4 configuration tool
Changes:
 qt4-x11 (4.5.0~rc1-1) experimental; urgency=low
 .
   * New upstream release:
     - QGtkStyle is part of Qt 4.5 release. (Closes: #507143)
     - Fix useless warning flood when sockets > 1024. (Closes: #511700)
   * Add libgtk2.0-dev build dependency to enable GTK theme support.
   * Add package libqt4-scripttools: The QtScriptTools module provides
     additional components for applications that use Qt Script.
   * Clean up the prl postprocessing.
   * Build documentations if current version is a snapshot.
   * Update *.install and *.lintian files.
   * Move mkspecs in qt4-qmake package to use qt4-qmake standalone.
   * Add qdoc3 to qt4-dev-tools package.
   * Add Debian patches:
     - 18_enable_qt3support_qtwebkit_debug_info.diff
       On Qt >= 4.5, debug info are disabled for Qt3Support and QtWebkit.
       This patch enable them.
     - 19_install_qdoc3.diff
       Install qdoc3 binary. It is used by Qt Creator.
     - 20_fix_ftbfs_callgrindChildExitCode.diff
       Fix ftfbs on qtestcase.cpp. Stolen from snapshot 20090206.
     - 21_fix_ppc_build.diff
       Fix build on ppc. Stolen from snapshot.
     - 22_fix_qiconvcodec.diff
       Fix a regression on qiconvcodec. Stolen from snapshot.
   * Remove Debian patches:
     - 12_fix_qmake_pkgconfig.diff
     - 20_mips_atomic_ops.diff - Fixed upstream.
       In memory of Thiemo Seufer.
       Thanks for his invaluable help on MIPS. He will be missed.
   * Update Debian patches:
     - 02, 03, 04, 05, 07, 09, 14, 15, 16, 17, 30, 40, 41, 50, 71, 80.
   * Add qt-copy patches:
     - 0273-odbc-64bit-compile.diff
       make the ODBC plugin compile on 64-bit unix systems with unixodbc-2.2.14
       (and unixodbc-2.2.13, for that matter).  See Qt task 225004.
   * Remove qt-copy patches:
     - 0167-fix-group-reading.diff - Merged upstream.
     - 0203-qtexthtmlparser-link-color.diff - Merged upstream.
     - 0224-fast-qpixmap-fill.diff - Fixed upstream.
     - 0226-qtreeview-column_resize_when_needed.diff - Fixed upstream.
     - 0238-fix-qt-qttabbar-size.diff - Merged upstream.
     - 0248-fix-qwidget-scroll-slowness.diff - Fixed upstream.
     - 0249-webkit-stale-frame-pointer.diff - Merged upstream.
     - 0254-fix-qgraphicsproxywidget-deletion-crash.diff - Merged upstream.
     - 0256-fix-recursive-backingstore-sync-crash.diff - Fixed upstream.
     - 0257-qurl-validate-speedup.diff - Fixed upstream.
     - 0260-fix-qgraphicswidget-deletionclearFocus.diff - Merged upstream.
     - 0261-sync-before-reset-errorhandler.patch - Merged upstream.
     - 0262-fix-treeview-animation-crash.diff - Merged upstream.
   * Refresh qt-copy patches:
     0180, 0195, 0209, 0216, 0225, 0234, 0245, 0255.
Checksums-Sha1: 
 01e31328d7e346e37bc5e3622323d6c1e18388c9 106206822 libqt4-dbg_4.5.0~rc1-1_amd64.deb
 05e0783b779027d7eb29b9d94ff07c110bcaa37d 308684 libqt4-scripttools_4.5.0~rc1-1_i386.deb
 1399fa27782db05c5a31d50aad288989a478e882 30276 libqt4-gui_4.5.0~rc1-1_i386.deb
 13fa3696f6d40c1676044e17e7e388ce5c3f7f1f 2498156 qt4-dev-tools_4.5.0~rc1-1_i386.deb
 150be23f26fdd39b9715affcee1811d238d9a712 189646 libqt4-svg_4.5.0~rc1-1_amd64.deb
 15899bf3a10e77431ae30760ad439b41d35fe361 45408 libqt4-opengl-dev_4.5.0~rc1-1_i386.deb
 182cf4d91127d94a336d9d22ea327735bca844c5 73860 libqt4-sql-odbc_4.5.0~rc1-1_i386.deb
 1c492e25dba39bd6507b78c65eaac2a5fe48761d 134908594 libqt4-webkit-dbg_4.5.0~rc1-1_amd64.deb
 1e7a1420db1948c344c4d875a1575b324dd7d381 56402 libqt4-sql-mysql_4.5.0~rc1-1_i386.deb
 20814ba724874c8a6cca350e09dc338c02548879 187220 libqt4-svg_4.5.0~rc1-1_i386.deb
 223278e146c4307cd96a6b7e0556d8d3984f5c35 44612 libqt4-sql-sqlite2_4.5.0~rc1-1_amd64.deb
 2393bc574db797803d26a4255db3ecca8bcf9ade 77744 libqt4-test_4.5.0~rc1-1_amd64.deb
 2650b2ebdb15145fd97488387a1f9364eac1254a 2671514 libqt4-designer_4.5.0~rc1-1_i386.deb
 29c6cdeaa26a3d60a54a21550ada5368e5973ae1 250966 libqt4-dbus_4.5.0~rc1-1_amd64.deb
 2b832f09426da2d8cf8b1b4418d2f8d431cb0aaf 11342240 qt4-demos_4.5.0~rc1-1_amd64.deb
 2c295d787d2cfc84f46a7be905c0885c140aee1e 135194 libqt4-xml_4.5.0~rc1-1_i386.deb
 30c2f17aaeef4beb81df499126068a6cbff75fa4 501818 libqt4-script_4.5.0~rc1-1_amd64.deb
 38d9b9d54da7769106a74c0b49ea2866d659dd0c 1671114 qt4-qmake_4.5.0~rc1-1_i386.deb
 397587c846cfc3f930c7ef8c592ee585a43d4f5c 56173730 qt4-doc_4.5.0~rc1-1_all.deb
 3d73ead8b74c73ecc9ae2cb5b642e686c6f17076 30284 libqt4-core_4.5.0~rc1-1_amd64.deb
 4155aa766da0bc61037466f58de1f5713908b2e4 16944366 libqt4-xmlpatterns-dbg_4.5.0~rc1-1_amd64.deb
 499455b7f38441041a6c74811745a0ba874d74c2 1382708 libqt4-qt3support_4.5.0~rc1-1_i386.deb
 4b61bed1e7019d31eb9c49756c36d96fd9fbc991 62076 libqt4-sql-psql_4.5.0~rc1-1_amd64.deb
 4ee4bd7578422beb955fdf78a934c93afcb445e8 109414 qt4-x11_4.5.0~rc1-1.diff.gz
 50a3c69a7781e87fade2f8c20ec1a016c1b3fc5b 1369434 libqt4-qt3support_4.5.0~rc1-1_amd64.deb
 5386e92123621770d17e93529b26c448b38a2267 11170146 qt4-demos_4.5.0~rc1-1_i386.deb
 53e679c565910af0577f2cc9b991e635b785af47 133428 libqt4-sql_4.5.0~rc1-1_amd64.deb
 58cf2455403302ee57d2f025561e8d4625d3bbae 135238 qt4-qtconfig_4.5.0~rc1-1_amd64.deb
 59b150be85381ad492d449950b361e305253666a 489634 libqt4-script_4.5.0~rc1-1_i386.deb
 5e9f9e7c05cef6f29bf72990692d39171a33ed1e 104812806 libqt4-dbg_4.5.0~rc1-1_i386.deb
 60a5373446ee7bcefbc23d6f851bb90b013a8ee3 4689062 libqtgui4_4.5.0~rc1-1_i386.deb
 62bc229b4b16c9d585821f36f2e6471af971b683 1716600 qt4-qmake_4.5.0~rc1-1_amd64.deb
 634ef2b311a837e86aa916667056cb415a9d3304 5441774 libqt4-webkit_4.5.0~rc1-1_amd64.deb
 639232d0755d92ecc7e5e71595ed8eb5403fd863 249854 libqt4-dbus_4.5.0~rc1-1_i386.deb
 65575a941e6fb8b81ea69e27e3745732f4301233 134846 qt4-qtconfig_4.5.0~rc1-1_i386.deb
 6b3eca8ff985dcf0b94cd67138e5a4e7179c3568 42186 libqt4-assistant_4.5.0~rc1-1_amd64.deb
 eb1c5e258f1da5818dfee839703f7f26c618f8b0 2669 qt4-x11_4.5.0~rc1-1.dsc
 71660ae35a073c9e66e6b8437c6d96c15e7d82f4 48172 libqt4-sql-sqlite_4.5.0~rc1-1_i386.deb
 733c72fc265c5c883bda7a970edb818a6f452a5a 4652646 libqtgui4_4.5.0~rc1-1_amd64.deb
 81969df09cac52f4050cea5ac61915e05ec4b40e 507528 libqt4-network_4.5.0~rc1-1_i386.deb
 83d506c172a88fd853e586b761b7f08bce72ee5d 2628760 libqt4-designer_4.5.0~rc1-1_amd64.deb
 86bf4b1432aa32a23b76d06eef1bc17d2e65cb87 71762 libqt4-sql-ibase_4.5.0~rc1-1_amd64.deb
 8edf1fc397a7e8849446998cf765781030b545d9 4540224 libqt4-dev_4.5.0~rc1-1_amd64.deb
 9270018fd02d098e268b3c205c7d46930641bd7e 61182 libqt4-sql-psql_4.5.0~rc1-1_i386.deb
 935481200ca4305d58994347ef6c262fb66d045d 42098 libqt4-assistant_4.5.0~rc1-1_i386.deb
 9d3a8d00f2c6f399b000ec350a38d5c15f32be97 137840832 libqt4-webkit-dbg_4.5.0~rc1-1_i386.deb
 a4d48abd4790f2a98cf930b40f6b2a909e029790 28045044 qt4-doc-html_4.5.0~rc1-1_all.deb
 a5999ca13d57ccd232df717bb7d1cb09a916d5d1 76338 libqt4-test_4.5.0~rc1-1_i386.deb
 a8060342d61eccca0e4178c59ca599fe6d26a0cf 242778 libqt4-help_4.5.0~rc1-1_i386.deb
 ac10202d86617bf4fa952041892bfd2951769c0e 48776 libqt4-sql-sqlite_4.5.0~rc1-1_amd64.deb
 ac3e448a5db1125ba74b7fa0161141c1d4441af9 137602 libqt4-xml_4.5.0~rc1-1_amd64.deb
 b1d7831093369ce35b7f0a7a44c794d14f69b5a9 5290572 libqt4-webkit_4.5.0~rc1-1_i386.deb
 b2fc81910d0d75ffa198a20e8e64f3685d5fa49e 30288 libqt4-core_4.5.0~rc1-1_i386.deb
 ba10b4b61bc9c0ec5e531c301e80daa9a3a317db 71178 libqt4-sql-ibase_4.5.0~rc1-1_i386.deb
 bf70a351cb2b9bc16eef6115478794294868afcb 30276 libqt4-gui_4.5.0~rc1-1_amd64.deb
 c283a7761ab3593edfaf62c4adef01d575599e34 378104 qt4-designer_4.5.0~rc1-1_i386.deb
 c2a6e7646b4b49f3ef0d601092706811b3c45f9f 384820 qt4-designer_4.5.0~rc1-1_amd64.deb
 c85c43ba4f1e3d8b98f5067883f841e527db33c2 2130910 libqtcore4_4.5.0~rc1-1_i386.deb
 c90facd1bac793b13bf2b9a6329a9a2fe7ecda64 938838 libqt4-xmlpatterns_4.5.0~rc1-1_i386.deb
 cbd74aaeb3658df00b571ac4edf1d13f93ea1410 502456 libqt4-network_4.5.0~rc1-1_amd64.deb
 cd4e4c27a08d0af35e5aec9e7b6c8bfdb7021864 4478018 libqt4-dev_4.5.0~rc1-1_i386.deb
 cf29d0de0b86846457cd711c92bc9242be7c941a 123074278 qt4-x11_4.5.0~rc1.orig.tar.gz
 d3538ee38cb1287b72970c01e54b14c90526bb84 133056 libqt4-sql_4.5.0~rc1-1_i386.deb
 d627b4442e7f6c7eff7ede17c87a21e80423bfba 57336 libqt4-sql-mysql_4.5.0~rc1-1_amd64.deb
 e1a8126d2e6ea1e4e92ca43294d6b28f739e0e10 217846 libqt4-opengl_4.5.0~rc1-1_i386.deb
 e34b8a9090247dd5b039588a3cec0dda2bd1c2ed 16773358 libqt4-xmlpatterns-dbg_4.5.0~rc1-1_i386.deb
 e78da58c74744785f111ff71e5e988eebc027345 306810 libqt4-scripttools_4.5.0~rc1-1_amd64.deb
 e82a417760ae0fd3372e1e87dfd648f24194e7a3 45406 libqt4-opengl-dev_4.5.0~rc1-1_amd64.deb
 ee277d6ddd2a9c67e94e0e6646b608b97c617201 2138816 libqtcore4_4.5.0~rc1-1_amd64.deb
 ef007e79f828df55c349793fa130e1ae236247c8 986558 libqt4-xmlpatterns_4.5.0~rc1-1_amd64.deb
 f2194ea0fd24cb7790e8ac2230a230e43d3056ef 44234 libqt4-sql-sqlite2_4.5.0~rc1-1_i386.deb
 f497bda75e472c1e8d9dd596907b4749c2826157 218996 libqt4-opengl_4.5.0~rc1-1_amd64.deb
 f50a42e05617f9dc5cbf0d174ca6c02139ef7806 242794 libqt4-help_4.5.0~rc1-1_amd64.deb
 fc66592608b3519479522a9616fc2d1c1e131129 74632 libqt4-sql-odbc_4.5.0~rc1-1_amd64.deb
 ff4732bc0e9c29cfa84fe047885ca99eb9bd3f8b 2544664 qt4-dev-tools_4.5.0~rc1-1_amd64.deb
Checksums-Sha256: 
 03e0a4da9fd8331b3969c4883584afd6f608c1f46fdb3714ef2a8dc06d5488af 2671514 libqt4-designer_4.5.0~rc1-1_i386.deb
 05e0eb8250e5d1c7b6dcad21373dd88ed9515760a8d1796dfab6d5735d6900f5 45406 libqt4-opengl-dev_4.5.0~rc1-1_amd64.deb
 118bc98f18333345f39748a3d2c7fd3ed61f3ad83ac235b8087fc252ff7d8a64 502456 libqt4-network_4.5.0~rc1-1_amd64.deb
 1436d2133fcec3e6784b2e1bf51a4254fc27ac36f2baa5c977693606b17577ac 16944366 libqt4-xmlpatterns-dbg_4.5.0~rc1-1_amd64.deb
 150d64471805b66586a1e363ae1307715c6754dc6865e19a94c1449e330eceaf 489634 libqt4-script_4.5.0~rc1-1_i386.deb
 1b06ba83154bf28cea60b6e9168cd9907b7894fcd65be5e7d5b95efdbbaf6841 123074278 qt4-x11_4.5.0~rc1.orig.tar.gz
 20c732b4f34b329abda67844e5f3dd6c8ab503228024ba4074c03313f541ef73 30276 libqt4-gui_4.5.0~rc1-1_amd64.deb
 218b03e10c8a984917978aa0329a43dc1b3cc83e1bc5c5c233725e15fb432c2c 938838 libqt4-xmlpatterns_4.5.0~rc1-1_i386.deb
 25bd2c4fa629bd445dfa8c98792a0cb8f871d56ef1e91f2659280dd8ce63f1c7 73860 libqt4-sql-odbc_4.5.0~rc1-1_i386.deb
 2d7e53483e65c8520244f5b5f4cb3ea879f6c49cabaefd0dce4644403b96fd39 56173730 qt4-doc_4.5.0~rc1-1_all.deb
 303b1e1c3504bd34780936e65f50827705fec4945daec2173068028df09435fa 384820 qt4-designer_4.5.0~rc1-1_amd64.deb
 30e7194454573294e90ab1fa292144936809bddf5b572206bcf64fb945313880 30276 libqt4-gui_4.5.0~rc1-1_i386.deb
 40c0dba4669a848d593eb620e218079413fbd59e0f5200963ef055a67bac4ecd 28045044 qt4-doc-html_4.5.0~rc1-1_all.deb
 47880f12df2bf1d512d4e3d102741591681f6f180cf5e6696c9d5b9466f02d73 218996 libqt4-opengl_4.5.0~rc1-1_amd64.deb
 479069d4292d046b5e839d31bbbe9fd81e4299ddb3e45ec77abcaed9c7c26515 106206822 libqt4-dbg_4.5.0~rc1-1_amd64.deb
 4e048301e4770b8c2e054848f76118c2a77371fa6dc7f6ee31a105ea8053da61 48172 libqt4-sql-sqlite_4.5.0~rc1-1_i386.deb
 5296e1cff2fbac1f2c57ea30452668819a099d1630c8c0a1d94ee151f43c4835 2138816 libqtcore4_4.5.0~rc1-1_amd64.deb
 539c49f321b023d7f9a2411c40276e0f0964b7c20d812a84c59437c9094f3df4 1671114 qt4-qmake_4.5.0~rc1-1_i386.deb
 57b2924b590d0569197f100d901b86d28758672c17bb60021ded39827315b51b 507528 libqt4-network_4.5.0~rc1-1_i386.deb
 58c21bbff0287acd2467658ce22ef3ca209041aa5081c56e6359b93b32d8ab0e 76338 libqt4-test_4.5.0~rc1-1_i386.deb
 5abb8c6956ff3d0b1b70f8cac73a4a36dc96dea4703733fb3a8667e2a642dd69 45408 libqt4-opengl-dev_4.5.0~rc1-1_i386.deb
 5b536e4a2c7b438737f2152678b88decb2452c9b5cd8c3de3743e0dff4fc54bd 242778 libqt4-help_4.5.0~rc1-1_i386.deb
 5c8a4ec01dca06cb9e62981c945bbcc588b9386822c8a546f0184e6880ad9491 986558 libqt4-xmlpatterns_4.5.0~rc1-1_amd64.deb
 5df6202676f74c37c5209d1af9a9eb8e4507bce60629533c1d71ae8ce47a9803 71762 libqt4-sql-ibase_4.5.0~rc1-1_amd64.deb
 5f2bbe042636f320ce3b1167b272e1cf548db4fd11ff491f52208464f4015f50 11342240 qt4-demos_4.5.0~rc1-1_amd64.deb
 60c7e666f24d78bc5e9304b602362cb816ca94197428772189e2c5e29bf74eb6 1382708 libqt4-qt3support_4.5.0~rc1-1_i386.deb
 63a99c87c79cd8cb0e0491e31a811bd13ba904330eed31ddde37c6d39f09d595 5441774 libqt4-webkit_4.5.0~rc1-1_amd64.deb
 659d9445d6df9018134d449b0a1feb87c315f31fc5b5e60ae456913131048852 4540224 libqt4-dev_4.5.0~rc1-1_amd64.deb
 6bf691ed901e9d61051bec15a4e0073dd35aed34a27bc6c12fb7c91ff140f479 56402 libqt4-sql-mysql_4.5.0~rc1-1_i386.deb
 7a5306df4a699627b02a747259eb4752379e1b198d338e53582d52a407017acd 44612 libqt4-sql-sqlite2_4.5.0~rc1-1_amd64.deb
 7d742a853113e82f30b452755c4b62c56b5cc113efded9dcf6ad4b37cf2fd8d7 4652646 libqtgui4_4.5.0~rc1-1_amd64.deb
 df62840912e6e4dc4fe617cf752f3929715e6749ed6f90410d88f040dbf909d1 2669 qt4-x11_4.5.0~rc1-1.dsc
 82f77d90bc0e452e1e521f87e24eaf652a820f67339008b2b027bbe584beb7e9 1716600 qt4-qmake_4.5.0~rc1-1_amd64.deb
 89f0e778061306615f6af3b1047ce966bd9f5e663e3b7dea59ef58223161f93f 71178 libqt4-sql-ibase_4.5.0~rc1-1_i386.deb
 90e89fb537852bfff24413efef2937439b71d06242fd3d24d5c8f1cd2e41f72d 242794 libqt4-help_4.5.0~rc1-1_amd64.deb
 922e32574ed449c93c0935b1d3e4fd79fdc1997719ea02cd484b0ed2d7d6dd68 2498156 qt4-dev-tools_4.5.0~rc1-1_i386.deb
 9554cba0a309b390d7c064c7701a99db38db69c82b218a8c9834420d9cbb1644 501818 libqt4-script_4.5.0~rc1-1_amd64.deb
 95626ff98ef8734316eb4f0cad51645711b767b00ad1d9b298ba9168bd8836ab 74632 libqt4-sql-odbc_4.5.0~rc1-1_amd64.deb
 9a1be473461cf7fc6bf8e5733ae0095b49f009a4e93a6017ab9fa25e397815c0 4478018 libqt4-dev_4.5.0~rc1-1_i386.deb
 9ab43ab65f1a6c1c27bfa56cf055e34311a55fb09b7080cd622466a294bb6e1a 133428 libqt4-sql_4.5.0~rc1-1_amd64.deb
 9ad7c613a818d12b7c8da68faab23adfc56e77a90094483a9c990feb59f4d909 133056 libqt4-sql_4.5.0~rc1-1_i386.deb
 a824883660279cd069d31367fb64505b1c30a34ef0b87626d06e3124ddc729eb 104812806 libqt4-dbg_4.5.0~rc1-1_i386.deb
 a9a9ea146ee12c74a9ba3d4b6de53f5347f7991cfd25a3b4e01cc98ae146a785 135194 libqt4-xml_4.5.0~rc1-1_i386.deb
 aa9f3ed46754bdf8bc8242ee4de217b3a81657f3b03e8fad125d16300d4167c4 30284 libqt4-core_4.5.0~rc1-1_amd64.deb
 ab68b13fd4b1bdca4015200711948a34c92d87a87c2b82d260da818418b8d14e 187220 libqt4-svg_4.5.0~rc1-1_i386.deb
 b4c0957570cf505026c1013df93e4b9809fe5bc8f3a719acd33ca7809f3b6c8f 137602 libqt4-xml_4.5.0~rc1-1_amd64.deb
 b68c87a1e7cf255e1da20aa778f1e5bb6989af6cb3427a93c7a025314c115e40 137840832 libqt4-webkit-dbg_4.5.0~rc1-1_i386.deb
 b92ce6d0cfc2400f8b091c237c032b1ed03c30306a5cb7660b84df0217a9ef53 16773358 libqt4-xmlpatterns-dbg_4.5.0~rc1-1_i386.deb
 be86ea3851c9123858ff84c187ca69c14837563b07e2506504cc62ec91b8a6a7 134846 qt4-qtconfig_4.5.0~rc1-1_i386.deb
 c0e03b8dc1e87266aa8ee8fd00ccc93db8edd9327d87dc0b4c4a713f93a40b7b 57336 libqt4-sql-mysql_4.5.0~rc1-1_amd64.deb
 c423e98d62d88857dafe1e3f88f200c2e3466197746b64bd8489b077fbcef64a 42098 libqt4-assistant_4.5.0~rc1-1_i386.deb
 c75bf4ae18df6f511830ae11976704acfa5894f76f154b90cfaa4ffc13a08599 134908594 libqt4-webkit-dbg_4.5.0~rc1-1_amd64.deb
 c9f29650d62544cc48ecb15a8ef25188c6e24345561fc967fba4c356cc219219 5290572 libqt4-webkit_4.5.0~rc1-1_i386.deb
 cb8ebf61b3a99ba7a6a103e1202445d96790d15e8374f6176d32c2c1bd5da33e 250966 libqt4-dbus_4.5.0~rc1-1_amd64.deb
 ced4bb2965747d971fc95be6c580c0bb681b87bf3a8cdeb6066bb3d549039027 62076 libqt4-sql-psql_4.5.0~rc1-1_amd64.deb
 d11b159870c5519983269b064ce5fa12b9f9bcb4979464e6793e9659f9311444 77744 libqt4-test_4.5.0~rc1-1_amd64.deb
 d19a4cf917968cbc48c7d25d8f8a1e2052b1533453017f055dbd7bd0287673d2 189646 libqt4-svg_4.5.0~rc1-1_amd64.deb
 d52331758e897c954a6195da7b3a92f2601b75e7b3828afc24ef5d446ccaf9ec 42186 libqt4-assistant_4.5.0~rc1-1_amd64.deb
 d94a5c5c196f231e04cf8e8e62d12687a9a0b8fcf3949493bb5947620df325a9 306810 libqt4-scripttools_4.5.0~rc1-1_amd64.deb
 db08cea8c63101b938121b4ec21a02b2333135d7828ef5a1abe8a9bbd44adcb3 109414 qt4-x11_4.5.0~rc1-1.diff.gz
 dbdd85e445560a83d829c898a1e46dfe8e241e52dc30c36ccd8c2c235f4c4bf6 30288 libqt4-core_4.5.0~rc1-1_i386.deb
 dc485592b295133dcd4c19360f7d48c77981d0ccea226ec0d72ec136d1d93251 135238 qt4-qtconfig_4.5.0~rc1-1_amd64.deb
 dfb7563bdcbb1bbbbcb29a088e258e77327441c59a2366128b79b3622c564cf7 2130910 libqtcore4_4.5.0~rc1-1_i386.deb
 e0f790c1784d932298ad5682e1b13659b47660d0a2ee0a8a0acf57a84477994a 308684 libqt4-scripttools_4.5.0~rc1-1_i386.deb
 ed938d3a32e2658b03aa94169b553d5ab9ff7eab69d1de9ec5cbb9b250a56fa3 44234 libqt4-sql-sqlite2_4.5.0~rc1-1_i386.deb
 f0367e390d2a7b9cdfac885d4a4982dd5e993a63f032e1dc9eb79e9201319703 1369434 libqt4-qt3support_4.5.0~rc1-1_amd64.deb
 f204bc4f455c9bfa9bc0dce9cb54593dabee3b19a687feda3b4ca2478779f579 217846 libqt4-opengl_4.5.0~rc1-1_i386.deb
 f3f44e3fcf53419afe6f79a0b52910cdd12bf94347171a2df5412f40d639d125 4689062 libqtgui4_4.5.0~rc1-1_i386.deb
 f4bdae2cee5ee33d426e4b73b39ec9a07e14fa9dbcc6aa0ed6b75974037bebec 11170146 qt4-demos_4.5.0~rc1-1_i386.deb
 f648f357b18fd193bac771203925cac03b897777f1f9346dd500d54ec89024d6 2544664 qt4-dev-tools_4.5.0~rc1-1_amd64.deb
 f82206187281ee35fc48c5428cc32c5f6ff32f3b1d78429fd3b6292f4e684cce 61182 libqt4-sql-psql_4.5.0~rc1-1_i386.deb
 f83191d06bf9c8bfe9402afc187aaeac11e29fc94c4d16165c7a11f533da4b23 48776 libqt4-sql-sqlite_4.5.0~rc1-1_amd64.deb
 f90cc842ed55389d67a67952d38e3522ee1ffef57cd1d5cc8681965ff8a77ede 378104 qt4-designer_4.5.0~rc1-1_i386.deb
 f9ae1754953749996349e3045e8c485f243ebd345d546deacf04becbbfd5a053 2628760 libqt4-designer_4.5.0~rc1-1_amd64.deb
 fac5dca86bd5354d64c5e8853f6e0e5d1e3950c9588d18989eeacd78717e97a7 249854 libqt4-dbus_4.5.0~rc1-1_i386.deb
Files: 
 000052a78e38bbbb4de31b71ffa1fca7 134846 x11 optional qt4-qtconfig_4.5.0~rc1-1_i386.deb
 02be491f7611cde9695ed5b041d5ed2a 11170146 x11 optional qt4-demos_4.5.0~rc1-1_i386.deb
 0dcb860900dd61577d68d5d02061a074 30276 libs optional libqt4-gui_4.5.0~rc1-1_i386.deb
 14f6e9caf8fe29cd4c5d8b12586da681 123074278 libs optional qt4-x11_4.5.0~rc1.orig.tar.gz
 1573da359a7c568ccafa11e68797d288 1369434 libs optional libqt4-qt3support_4.5.0~rc1-1_amd64.deb
 1820a6172a84ba16560edd97eea405d5 249854 libs optional libqt4-dbus_4.5.0~rc1-1_i386.deb
 1964476432fb4f205970b87f341e9e52 133056 libs optional libqt4-sql_4.5.0~rc1-1_i386.deb
 1a5abc3f46a5942acbad93cb1a2982b8 501818 libs optional libqt4-script_4.5.0~rc1-1_amd64.deb
 233d550560da0ffd6cb391b4d4cca561 71762 libs optional libqt4-sql-ibase_4.5.0~rc1-1_amd64.deb
 26d1d8af84e3ca08bf0c9ff0aa0c0507 73860 libs optional libqt4-sql-odbc_4.5.0~rc1-1_i386.deb
 2793612a40a4032b2b4132a898188483 2544664 devel optional qt4-dev-tools_4.5.0~rc1-1_amd64.deb
 28690dab67219631d6cdf9004586b7ac 76338 libs optional libqt4-test_4.5.0~rc1-1_i386.deb
 2d1e297530457cea7077037e412d2f34 11342240 x11 optional qt4-demos_4.5.0~rc1-1_amd64.deb
 2f9c5c4051ed509d1f4c4b47c639fdee 16773358 libs extra libqt4-xmlpatterns-dbg_4.5.0~rc1-1_i386.deb
 308966496901b4148eb6c3b5faafdde8 489634 libs optional libqt4-script_4.5.0~rc1-1_i386.deb
 3434957dacf9468ed3660064b707c9a4 242778 libs optional libqt4-help_4.5.0~rc1-1_i386.deb
 39298a74709b11992bacc22e986e28f4 189646 libs optional libqt4-svg_4.5.0~rc1-1_amd64.deb
 3b8cf606709d77e13ac169ca4dee4c06 48776 libs optional libqt4-sql-sqlite_4.5.0~rc1-1_amd64.deb
 3dc4d8999e21d9d339c08341b4bfc2cd 1716600 devel optional qt4-qmake_4.5.0~rc1-1_amd64.deb
 3fcca8aa63f49d9abacf9d9738ecf1e6 137602 libs optional libqt4-xml_4.5.0~rc1-1_amd64.deb
 4ae9c1651f1737b5f7c87894ac6d5355 45406 libdevel optional libqt4-opengl-dev_4.5.0~rc1-1_amd64.deb
 4d369d848ba3521f44f7011e27eda730 5290572 libs optional libqt4-webkit_4.5.0~rc1-1_i386.deb
 4fde3698209110dddcf13a2d3c80de0d 2138816 libs optional libqtcore4_4.5.0~rc1-1_amd64.deb
 50a05cfc1de0c14a4cf48ae2577afccb 4540224 libdevel optional libqt4-dev_4.5.0~rc1-1_amd64.deb
 52543517adc13d99f7d4d01edc22f961 56402 libs optional libqt4-sql-mysql_4.5.0~rc1-1_i386.deb
 5be2ef590f616bd4d26cfafe4c60d685 62076 libs optional libqt4-sql-psql_4.5.0~rc1-1_amd64.deb
 5c551ce6088b2fab3e8aba4ed6d38521 4652646 libs optional libqtgui4_4.5.0~rc1-1_amd64.deb
 5c87cfc6315b2532eaebfeabff33fe87 134908594 libs extra libqt4-webkit-dbg_4.5.0~rc1-1_amd64.deb
 6174c37d8198c776968f3c667a9e5cf6 938838 libs optional libqt4-xmlpatterns_4.5.0~rc1-1_i386.deb
 61da9bcb66f131acce99fb57364d9d95 71178 libs optional libqt4-sql-ibase_4.5.0~rc1-1_i386.deb
 646c2a18071da0d05084c18694ed61db 4478018 libdevel optional libqt4-dev_4.5.0~rc1-1_i386.deb
 65a95abc30eba2366ac9cdd026df90d9 28045044 doc optional qt4-doc-html_4.5.0~rc1-1_all.deb
 706aca5a4357d207e4460304bda0b45d 306810 libs optional libqt4-scripttools_4.5.0~rc1-1_amd64.deb
 719ac73ea2e627eaff1aa03fded9d52c 217846 libs optional libqt4-opengl_4.5.0~rc1-1_i386.deb
 73a9d9209bb540fd3fd8d5213968c977 44612 libs optional libqt4-sql-sqlite2_4.5.0~rc1-1_amd64.deb
 74f3ec5da245391b0f422ec97053aa07 1382708 libs optional libqt4-qt3support_4.5.0~rc1-1_i386.deb
 7ead8b435c167a3b87348fa4939499ed 16944366 libs extra libqt4-xmlpatterns-dbg_4.5.0~rc1-1_amd64.deb
 816f9129302cddfc956d0ca5c10d7698 30276 libs optional libqt4-gui_4.5.0~rc1-1_amd64.deb
 846e96a379953df269f8f9b794bf3421 242794 libs optional libqt4-help_4.5.0~rc1-1_amd64.deb
 86d1518f47bd931b702b7fab4be762fc 45408 libdevel optional libqt4-opengl-dev_4.5.0~rc1-1_i386.deb
 8748d29c56eb111bb4b64dd9afe979cf 5441774 libs optional libqt4-webkit_4.5.0~rc1-1_amd64.deb
 8e449c2be4d37c2c5516c34573fecacf 104812806 libs extra libqt4-dbg_4.5.0~rc1-1_i386.deb
 945d65d8e8116e33547bd9e512f0dce6 48172 libs optional libqt4-sql-sqlite_4.5.0~rc1-1_i386.deb
 9b69898f1e0d8160292277c41fe65feb 187220 libs optional libqt4-svg_4.5.0~rc1-1_i386.deb
 9e227721721dc839a37c92f701c19235 44234 libs optional libqt4-sql-sqlite2_4.5.0~rc1-1_i386.deb
 9e98b35e6a6020f0e399411195eb1e43 507528 libs optional libqt4-network_4.5.0~rc1-1_i386.deb
 a111049b34d6f372423fbf42b646018d 2130910 libs optional libqtcore4_4.5.0~rc1-1_i386.deb
 a3729e1633f28c7d54928d87e6fd05a5 308684 libs optional libqt4-scripttools_4.5.0~rc1-1_i386.deb
 a426f432f683d4b8f956fd49f407eff9 30284 libs optional libqt4-core_4.5.0~rc1-1_amd64.deb
 ac40aa37151863292c48f00b9b66218e 2628760 libs optional libqt4-designer_4.5.0~rc1-1_amd64.deb
 adc5c8d092035e9250c9f60b9c3cdc9b 30288 libs optional libqt4-core_4.5.0~rc1-1_i386.deb
 b01d69d930706a6a63fc64329ea3f632 384820 devel optional qt4-designer_4.5.0~rc1-1_amd64.deb
 b3d467aa4e73749a710f016ed5cf6d0c 57336 libs optional libqt4-sql-mysql_4.5.0~rc1-1_amd64.deb
 b84f1932fdad3e0e449658694c118589 378104 devel optional qt4-designer_4.5.0~rc1-1_i386.deb
 ba8a652a325cae55f1471096845d0c35 133428 libs optional libqt4-sql_4.5.0~rc1-1_amd64.deb
 bbdf1f8618d27da38628d32e72183909 56173730 doc optional qt4-doc_4.5.0~rc1-1_all.deb
 be3633b5d3d6f32e0cbdd57f43d04ce3 61182 libs optional libqt4-sql-psql_4.5.0~rc1-1_i386.deb
 bf0842e0788315c69eaec0339ab426fe 1671114 devel optional qt4-qmake_4.5.0~rc1-1_i386.deb
 ca4d1463c05e67acddb0b66b4be308f9 2671514 libs optional libqt4-designer_4.5.0~rc1-1_i386.deb
 cf4dc70194b9cbd14fe5ca062d14607a 2498156 devel optional qt4-dev-tools_4.5.0~rc1-1_i386.deb
 d7d61d20037fb218d19821c3277bb407 137840832 libs extra libqt4-webkit-dbg_4.5.0~rc1-1_i386.deb
 741510d86148a2a385121ee8fa1aedc8 2669 libs optional qt4-x11_4.5.0~rc1-1.dsc
 e5ff32412da30572787ae68188ee9c08 502456 libs optional libqt4-network_4.5.0~rc1-1_amd64.deb
 e83beb021b1ad4983d0de073da6b6376 109414 libs optional qt4-x11_4.5.0~rc1-1.diff.gz
 e92df5e35a576f107d1592c791e7a128 986558 libs optional libqt4-xmlpatterns_4.5.0~rc1-1_amd64.deb
 e9a484fb8e3349cbaef1f32b6d2176dd 42186 libs optional libqt4-assistant_4.5.0~rc1-1_amd64.deb
 ea1ceeeffbc0807bee81bc49c1a42d29 74632 libs optional libqt4-sql-odbc_4.5.0~rc1-1_amd64.deb
 ed4f9060930c52a69b69e1a1c96304c2 135194 libs optional libqt4-xml_4.5.0~rc1-1_i386.deb
 eee215d57ef723697927e7d61825f559 106206822 libs extra libqt4-dbg_4.5.0~rc1-1_amd64.deb
 efa7392bd3ff76b292ff8851b41b15f5 250966 libs optional libqt4-dbus_4.5.0~rc1-1_amd64.deb
 f0fb68b19a723cfaf97d512e9b9c9fef 4689062 libs optional libqtgui4_4.5.0~rc1-1_i386.deb
 f5e3c887680f3aeaf58a8e41f1172ca1 135238 x11 optional qt4-qtconfig_4.5.0~rc1-1_amd64.deb
 f5f0a765c87dd65c0ffabbd32ef19352 218996 libs optional libqt4-opengl_4.5.0~rc1-1_amd64.deb
 f690ddb9898d12f40b254b288820da8d 42098 libs optional libqt4-assistant_4.5.0~rc1-1_i386.deb
 f73cb91c9f7b0a892abb4fdf876582b6 77744 libs optional libqt4-test_4.5.0~rc1-1_amd64.deb

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

iJwEAQECAAYFAkmesRsACgkQjPU19mqlcvcExwQArMqx0Bf1fi5cKTI8jNyBZJ8e
Paz4SzpS+E+5IS5hvzTRcGJW1SoRE8UteWK2Ah/LfSy4Tgxnl9DqlmtWpvn7eGYx
e7qAh+VWsVzNBI1J6qW1Zfk02SY4GFpvjWzsTe8VOGjSSYL0SB826jc2KKCrFKwk
IAPhld5/ai+uU7iemu4=
=RhFl
-----END PGP SIGNATURE-----



--- End Message ---

Reply to: