Your message dated Wed, 07 Sep 2005 15:28:25 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#306879: fixed in qt-x11-free 3:3.3.4-8
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; 29 Apr 2005 04:09:20 +0000
>From [EMAIL PROTECTED] Thu Apr 28 21:09:20 2005
Return-path: <[EMAIL PROTECTED]>
Received: from mail23.sea5.speakeasy.net [69.17.117.25] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DRMoa-0001EX-00; Thu, 28 Apr 2005 21:09:20 -0700
Received: (qmail 31570 invoked from network); 29 Apr 2005 04:09:19 -0000
Received: from dsl254-022-219.sea1.dsl.speakeasy.net (HELO 
sirius.bignachos.com) ([216.254.22.219])
          (envelope-sender <[EMAIL PROTECTED]>)
          by mail23.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP
          for <[EMAIL PROTECTED]>; 29 Apr 2005 04:09:19 -0000
Received: from rubeus (unknown [192.168.1.20])
        by sirius.bignachos.com (Postfix) with ESMTP id 9DCF7531BE
        for <[EMAIL PROTECTED]>; Thu, 28 Apr 2005 21:09:19 -0700 (PDT)
Received: by rubeus (Postfix, from userid 1000)
        id 793A833D0C; Thu, 28 Apr 2005 21:09:19 -0700 (PDT)
From: Brian Nelson <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: qt-x11-free: Alternatives to support coexistence with Qt 4
X-URL: http://bignachos.com
Date: Thu, 28 Apr 2005 21:09:19 -0700
Message-ID: <[EMAIL PROTECTED]>
User-Agent: Gnus/5.1007 (Gnus v5.10.7) Emacs/21.4 (gnu/linux)
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="=-=-="
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-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

--=-=-=

Package: qt-x11-free
Severity: wishlist
Tags: patch

Here's a patch to add support for using alternatives for all of the
executables shared with Qt 4.  Note that it's not 100% complete, since
some of the supplied manpages need to be renamed...

>From my preliminary testing, it appears Qt 3/4 coexist happily with this
patch if QTDIR is set properly...


--=-=-=
Content-Type: text/x-patch
Content-Disposition: inline; filename=qt3-alternatives.patch

diff -urN qt-x11-free-3.3.4.old/debian/qt3-assistant.postinst 
qt-x11-free-3.3.4/debian/qt3-assistant.postinst
--- qt-x11-free-3.3.4.old/debian/qt3-assistant.postinst 1969-12-31 
16:00:00.000000000 -0800
+++ qt-x11-free-3.3.4/debian/qt3-assistant.postinst     2005-04-28 
16:07:21.669727309 -0700
@@ -0,0 +1,10 @@
+#!/bin/sh 
+
+set -e
+
+update-alternatives --install \
+       /usr/bin/assistant-qt3 assistant "/usr/bin/assistant-qt3" "35" \
+       --slave /usr/share/man/man1/assistant.1.gz assistant.1.gz \
+       "/usr/share/man/man1/assistant-qt3.1.gz"
+
+#DEBHELPER#
diff -urN qt-x11-free-3.3.4.old/debian/qt3-assistant.prerm 
qt-x11-free-3.3.4/debian/qt3-assistant.prerm
--- qt-x11-free-3.3.4.old/debian/qt3-assistant.prerm    1969-12-31 
16:00:00.000000000 -0800
+++ qt-x11-free-3.3.4/debian/qt3-assistant.prerm        2005-04-27 
23:37:10.000000000 -0700
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+  upgrade) ;;
+  remove|failed-upgrade|deconfigure)
+    update-alternatives --remove assistant "/usr/bin/assistant-qt3"
+    ;;
+esac
+
+#DEBHELPER#
diff -urN qt-x11-free-3.3.4.old/debian/qt3-dev-tools.postinst 
qt-x11-free-3.3.4/debian/qt3-dev-tools.postinst
--- qt-x11-free-3.3.4.old/debian/qt3-dev-tools.postinst 2005-04-27 
22:06:45.000000000 -0700
+++ qt-x11-free-3.3.4/debian/qt3-dev-tools.postinst     2005-04-27 
23:37:10.000000000 -0700
@@ -11,5 +11,15 @@
         /usr/bin/uic uic "/usr/bin/uic-qt3" "35" \
        --slave /usr/share/man/man1/uic.1.gz uic.1.gz \
        "/usr/share/man/man1/uic-qt3.1.gz"
-                       
+
+update-alternatives --install \
+        /usr/bin/lupdate lupdate "/usr/bin/lupdate-qt3" "35" \
+       --slave /usr/share/man/man1/lupdate.1.gz lupdate.1.gz \
+       "/usr/share/man/man1/lupdate-qt3.1.gz"
+               
+update-alternatives --install \
+        /usr/bin/lrelease lrelease "/usr/bin/lrelease-qt3" "35" \
+       --slave /usr/share/man/man1/lrelease.1.gz lrelease.1.gz \
+       "/usr/share/man/man1/lrelease-qt3.1.gz"
+               
 #DEBHELPER#
diff -urN qt-x11-free-3.3.4.old/debian/qt3-dev-tools.prerm 
qt-x11-free-3.3.4/debian/qt3-dev-tools.prerm
--- qt-x11-free-3.3.4.old/debian/qt3-dev-tools.prerm    2005-04-27 
22:06:45.000000000 -0700
+++ qt-x11-free-3.3.4/debian/qt3-dev-tools.prerm        2005-04-27 
23:37:10.000000000 -0700
@@ -7,6 +7,8 @@
   remove|failed-upgrade|deconfigure)
     update-alternatives --remove moc "/usr/bin/moc-qt3"
     update-alternatives --remove uic "/usr/bin/uic-qt3"
+    update-alternatives --remove lupdate "/usr/bin/lupdate-qt3"
+    update-alternatives --remove lrelease "/usr/bin/lrelease-qt3"
     ;;
 esac
 
diff -urN qt-x11-free-3.3.4.old/debian/qt3-linguist.postinst 
qt-x11-free-3.3.4/debian/qt3-linguist.postinst
--- qt-x11-free-3.3.4.old/debian/qt3-linguist.postinst  1969-12-31 
16:00:00.000000000 -0800
+++ qt-x11-free-3.3.4/debian/qt3-linguist.postinst      2005-04-27 
23:37:10.000000000 -0700
@@ -0,0 +1,10 @@
+#!/bin/sh 
+
+set -e
+
+update-alternatives --install \
+       /usr/bin/linguist-qt3 linguist "/usr/bin/linguist-qt3" "35" \
+       --slave /usr/share/man/man1/linguist.1.gz linguist.1.gz \
+       "/usr/share/man/man1/linguist-qt3.1.gz"
+
+#DEBHELPER#
diff -urN qt-x11-free-3.3.4.old/debian/qt3-linguist.prerm 
qt-x11-free-3.3.4/debian/qt3-linguist.prerm
--- qt-x11-free-3.3.4.old/debian/qt3-linguist.prerm     1969-12-31 
16:00:00.000000000 -0800
+++ qt-x11-free-3.3.4/debian/qt3-linguist.prerm 2005-04-27 23:37:10.000000000 
-0700
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+  upgrade) ;;
+  remove|failed-upgrade|deconfigure)
+    update-alternatives --remove linguist "/usr/bin/linguist-qt3"
+    ;;
+esac
+
+#DEBHELPER#
diff -urN qt-x11-free-3.3.4.old/debian/qt3-qtconfig.postinst 
qt-x11-free-3.3.4/debian/qt3-qtconfig.postinst
--- qt-x11-free-3.3.4.old/debian/qt3-qtconfig.postinst  1969-12-31 
16:00:00.000000000 -0800
+++ qt-x11-free-3.3.4/debian/qt3-qtconfig.postinst      2005-04-27 
23:37:10.000000000 -0700
@@ -0,0 +1,10 @@
+#!/bin/sh 
+
+set -e
+
+update-alternatives --install \
+       /usr/bin/qtconfig-qt3 qtconfig "/usr/bin/qtconfig-qt3" "35" \
+       --slave /usr/share/man/man1/qtconfig.1.gz qtconfig.1.gz \
+       "/usr/share/man/man1/qtconfig-qt3.1.gz"
+
+#DEBHELPER#
diff -urN qt-x11-free-3.3.4.old/debian/qt3-qtconfig.prerm 
qt-x11-free-3.3.4/debian/qt3-qtconfig.prerm
--- qt-x11-free-3.3.4.old/debian/qt3-qtconfig.prerm     1969-12-31 
16:00:00.000000000 -0800
+++ qt-x11-free-3.3.4/debian/qt3-qtconfig.prerm 2005-04-27 23:37:10.000000000 
-0700
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+  upgrade) ;;
+  remove|failed-upgrade|deconfigure)
+    update-alternatives --remove qtconfig "/usr/bin/qtconfig-qt3"
+    ;;
+esac
+
+#DEBHELPER#
diff -urN qt-x11-free-3.3.4.old/debian/rules qt-x11-free-3.3.4/debian/rules
--- qt-x11-free-3.3.4.old/debian/rules  2005-04-27 22:06:45.000000000 -0700
+++ qt-x11-free-3.3.4/debian/rules      2005-04-27 23:37:10.000000000 -0700
@@ -350,9 +350,16 @@
        mv `pwd`/debian/qt3-designer/usr/bin/designer 
`pwd`/debian/qt3-designer/usr/bin/designer-qt3
        mv `pwd`/debian/qt3-dev-tools/usr/bin/uic 
`pwd`/debian/qt3-dev-tools/usr/bin/uic-qt3
        mv `pwd`/debian/qt3-dev-tools/usr/bin/moc 
`pwd`/debian/qt3-dev-tools/usr/bin/moc-qt3
+       mv `pwd`/debian/qt3-dev-tools/usr/bin/lupdate 
`pwd`/debian/qt3-dev-tools/usr/bin/lupdate-qt3
+       mv `pwd`/debian/qt3-dev-tools/usr/bin/lrelease 
`pwd`/debian/qt3-dev-tools/usr/bin/lrelease-qt3
+       mv `pwd`/debian/qt3-qtconfig/usr/bin/qtconfig 
`pwd`/debian/qt3-qtconfig/usr/bin/qtconfig-qt3
+       mv `pwd`/debian/qt3-assistant/usr/bin/assistant 
`pwd`/debian/qt3-assistant/usr/bin/assistant-qt3
+       mv `pwd`/debian/qt3-linguist/usr/bin/linguist 
`pwd`/debian/qt3-linguist/usr/bin/linguist-qt3
        install -D debian/maintain/man/designer.1 
`pwd`/debian/qt3-designer/usr/share/man/man1/designer-qt3.1
        install -D doc/man/man1/moc.1 
`pwd`/debian/qt3-dev-tools/usr/share/man/man1/moc-qt3.1
        install -D doc/man/man1/uic.1 
`pwd`/debian/qt3-dev-tools/usr/share/man/man1/uic-qt3.1
+       install -D doc/man/man1/lrelease.1 
`pwd`/debian/qt3-dev-tools/usr/share/man/man1/lrelease-qt3.1
+       install -D doc/man/man1/lupdate.1 
`pwd`/debian/qt3-dev-tools/usr/share/man/man1/lupdate-qt3.1
        
        # install the manpages we have
        dh_installman -pqt3-designer debian/maintain/man/createcw.1
@@ -366,7 +373,7 @@
 
        # install the qmake binary
        rm -rf `pwd`/debian/qt3-dev-tools/usr/bin/qmake
-       install -D `pwd`/qmake/qmake `pwd`/debian/qt3-dev-tools/usr/bin/qmake
+       install -D `pwd`/qmake/qmake 
`pwd`/debian/qt3-dev-tools/usr/bin/qmake-qt3
        
        # run remaining debhelper scripts
        dh_installdocs -a $(IBASE) -XREADME.Debian

--=-=-=



-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-ac12
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

--=-=-=--

---------------------------------------
Received: (at 306879-close) by bugs.debian.org; 7 Sep 2005 22:38:32 +0000
>From [EMAIL PROTECTED] Wed Sep 07 15:38:32 2005
Return-path: <[EMAIL PROTECTED]>
Received: from joerg by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1ED8P3-0005ET-00; Wed, 07 Sep 2005 15:28:25 -0700
From: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
To: [EMAIL PROTECTED]
X-Katie: lisa $Revision: 1.30 $
Subject: Bug#306879: fixed in qt-x11-free 3:3.3.4-8
Message-Id: <[EMAIL PROTECTED]>
Sender: Joerg Jaspert <[EMAIL PROTECTED]>
Date: Wed, 07 Sep 2005 15:28:25 -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: 7

Source: qt-x11-free
Source-Version: 3:3.3.4-8

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

libqt3-compat-headers_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/libqt3-compat-headers_3.3.4-8_i386.deb
libqt3-headers_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/libqt3-headers_3.3.4-8_i386.deb
libqt3-i18n_3.3.4-8_all.deb
  to pool/main/q/qt-x11-free/libqt3-i18n_3.3.4-8_all.deb
libqt3-mt-dbg_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/libqt3-mt-dbg_3.3.4-8_i386.deb
libqt3-mt-dev_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/libqt3-mt-dev_3.3.4-8_i386.deb
libqt3-mt-mysql_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/libqt3-mt-mysql_3.3.4-8_i386.deb
libqt3-mt-odbc_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/libqt3-mt-odbc_3.3.4-8_i386.deb
libqt3-mt-psql_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/libqt3-mt-psql_3.3.4-8_i386.deb
libqt3-mt-sqlite_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/libqt3-mt-sqlite_3.3.4-8_i386.deb
libqt3-mt_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/libqt3-mt_3.3.4-8_i386.deb
qt-x11-free_3.3.4-8.diff.gz
  to pool/main/q/qt-x11-free/qt-x11-free_3.3.4-8.diff.gz
qt-x11-free_3.3.4-8.dsc
  to pool/main/q/qt-x11-free/qt-x11-free_3.3.4-8.dsc
qt3-apps-dev_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/qt3-apps-dev_3.3.4-8_i386.deb
qt3-assistant_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/qt3-assistant_3.3.4-8_i386.deb
qt3-designer_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/qt3-designer_3.3.4-8_i386.deb
qt3-dev-tools-compat_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/qt3-dev-tools-compat_3.3.4-8_i386.deb
qt3-dev-tools-embedded_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/qt3-dev-tools-embedded_3.3.4-8_i386.deb
qt3-dev-tools_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/qt3-dev-tools_3.3.4-8_i386.deb
qt3-doc_3.3.4-8_all.deb
  to pool/main/q/qt-x11-free/qt3-doc_3.3.4-8_all.deb
qt3-examples_3.3.4-8_all.deb
  to pool/main/q/qt-x11-free/qt3-examples_3.3.4-8_all.deb
qt3-linguist_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/qt3-linguist_3.3.4-8_i386.deb
qt3-qtconfig_3.3.4-8_i386.deb
  to pool/main/q/qt-x11-free/qt3-qtconfig_3.3.4-8_i386.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.
Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> (supplier of updated 
qt-x11-free 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: Wed,  7 Sep 2005 11:23:55 -0400
Source: qt-x11-free
Binary: libqt3-i18n qt3-apps-dev libqt3-mt-sqlite qt3-assistant qt3-examples 
qt3-doc libqt3-headers libqt3-mt-mysql libqt3-mt libqt3-mt-dbg libqt3-mt-odbc 
qt3-dev-tools-embedded libqt3-compat-headers qt3-dev-tools libqt3-mt-ibase 
qt3-designer qt3-linguist qt3-qtconfig qt3-dev-tools-compat libqt3-mt-dev 
libqt3-mt-psql
Architecture: source i386 all
Version: 3:3.3.4-8
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Changed-By: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Description: 
 libqt3-compat-headers - Qt 1.x and 2.x compatibility includes
 libqt3-headers - Qt3 header files
 libqt3-i18n - i18n files for Qt3 library
 libqt3-mt  - Qt GUI Library (Threaded runtime version), Version 3
 libqt3-mt-dbg - debugging symbols for libqt3-mt
 libqt3-mt-dev - Qt development files (Threaded)
 libqt3-mt-mysql - MySQL database driver for Qt3 (Threaded)
 libqt3-mt-odbc - ODBC database driver for Qt3 (Threaded)
 libqt3-mt-psql - PostgreSQL database driver for Qt3 (Threaded)
 libqt3-mt-sqlite - SQLite database driver for Qt3 (Threaded)
 qt3-apps-dev - Qt3 Developer applications development files
 qt3-assistant - The Qt3 assistant application
 qt3-designer - Qt3 Designer
 qt3-dev-tools - Qt3 development tools
 qt3-dev-tools-compat - Conversion utilities for Qt3 development
 qt3-dev-tools-embedded - Tools to develop embedded Qt applications
 qt3-doc    - Qt3 API documentation
 qt3-examples - Examples for Qt3
 qt3-linguist - The Qt3 Linguist
 qt3-qtconfig - The Qt3 Configuration Application
Closes: 180326 185900 235396 284407 294630 296661 306879 316108 322868 326833 
326990 327021
Changes: 
 qt-x11-free (3:3.3.4-8) unstable; urgency=low
 .
   +++ Changes by Christopher Martin:
 .
   * Add a patch fixing the generation of PostScript, which was broken due to
     a flaw in the code that only manifested itself with the GCC 4.0
     transition. This should fix printing in all Qt and KDE applications, as
     well as other glitches where nonsensical results were generated.
     (Closes: #326833, #326990, #327021)
 .
   * No longer build non-threaded libraries. (Closes: #180326)
     No package in the archive uses them, except a bogus qtdmm
     build-dependency (#326627).
 .
   * Add a libqt3c102-mt-dbg package. (Closes: #235396, #322868)
 .
   * Make the Qt3 documentation available from /usr/share/doc/qt3-doc, and
     therefore also usable in dwww and doc-central. (Closes: #185900, #284407,
     #294630)
 .
   * Apply packaging patches from Brian Nelson to allow Qt3 to co-exist
     with Qt4 packages. (Closes: #306879)
 .
   * Apply 06_disable_rpath to linux-g++-64/qmake.conf as too.
 .
   * Add the gtkstyle patch, in order to better support Bluecurve.
     (Closes: #316108)
 .
   * Add more patches from qt-copy:
     + 29_qtc_fix_rotated_randr: Improve height/width calculations for rotated
       screens.
     + 30_qtc_qtoolbar_77047: Fix for the toolbar extension menu.
     + 33_qtc_qlistbox-crash: Fixes a crash that shows up in KHTML.
     + 34_qtc_dnd_optimization: Massive DND speedups.
     + 35_qtc_dnd_active_window_fix: Fixes DND when windows are changing focus.
     + 36_qtc_dnd-timestamp-fix: Suppresses needless popups when using DND.
     + 37_qtc_dragobject-dont-prefer-unknown: Fixes DND with some apps, like
       Mozilla.
     + 38_qtc_khotkeys_input_84434: Fixes keyboard input action in KHotKeys.
     + 39_qtc_qpopup_has_mouse, 40_qtc_qpopup_ignore_mousepos: Fixes the mouse
       movement and position affecting keyboard navigation with popups and
       menus.
 .
   * Enable tablet support:
     - pass -tablet to configure.
     - add libxi-dev to Build-Depends.
 .
   * Build jpeg support into Qt, not as a plugin.
 .
   * Build the Qt styles as plugins. This does not affect the Qt buildkey,
     so shouldn't affect other packages.
 .
   * Revamp the OpenGL linking patch. This fixes the loading of libXmu, a
     problem which affected some screensavers. (Closes: #296661)
 .
   * Temporarily bump the libpq-dev build-depends to (>= 8.0.3-15), ensuring
     that we build against a version where the headers are located as expected.
Files: 
 ac32c36058dd9b02223a44fe11c2b1e1 1839 libs optional qt-x11-free_3.3.4-8.dsc
 c64508bf7c327fb0777e279df5004152 70181 libs optional 
qt-x11-free_3.3.4-8.diff.gz
 78bb925a1e55d69f830e19526baecead 94380 libs optional 
libqt3-i18n_3.3.4-8_all.deb
 396e202e67d07b3e0fd1192feafee2c8 8065132 doc extra qt3-doc_3.3.4-8_all.deb
 5cf7662538274d5f45a1778c4412266c 1554772 doc extra qt3-examples_3.3.4-8_all.deb
 7fa6fe3227b69403e304bc3548f54251 3207828 libs optional 
libqt3-mt_3.3.4-8_i386.deb
 dc996345b785f982dd5f2938be4149c7 17374958 libdevel extra 
libqt3-mt-dbg_3.3.4-8_i386.deb
 a788fa4bfae59844f8c5cd11c78738f0 51160 libs optional 
libqt3-mt-mysql_3.3.4-8_i386.deb
 b8633fc2504fae83d0412e9b33703c00 71330 libs optional 
libqt3-mt-odbc_3.3.4-8_i386.deb
 2c9d695edfb5cacb8c58a0fe76771cc7 57186 libs optional 
libqt3-mt-psql_3.3.4-8_i386.deb
 1b2384eb72dfd58ad9505cca35bb1a89 198688 libs optional 
libqt3-mt-sqlite_3.3.4-8_i386.deb
 05d30f9ad1de29b24ae9405dd8453849 49524 libdevel optional 
libqt3-mt-dev_3.3.4-8_i386.deb
 4f2abf1add1d28accd1b7b4af380475e 363828 devel optional 
libqt3-headers_3.3.4-8_i386.deb
 e1eb0ca1b66354060cdf6d7f907fe0f8 80896 devel optional 
libqt3-compat-headers_3.3.4-8_i386.deb
 e295ce5a720dfa56c83ee78c0127b39d 1257850 devel optional 
qt3-dev-tools_3.3.4-8_i386.deb
 29b1a2829ca6bc4a5d72bd92c18db6f2 1780408 devel optional 
qt3-designer_3.3.4-8_i386.deb
 40ab5e8bcd1f04662eba292d022859b8 2371656 devel optional 
qt3-apps-dev_3.3.4-8_i386.deb
 27d6fe9a8fcf567e176f5ce4aea023b0 270356 devel optional 
qt3-linguist_3.3.4-8_i386.deb
 013656df3bb9d0b19b0306b58a3474fa 235492 x11 optional 
qt3-assistant_3.3.4-8_i386.deb
 f98d0fb5570654d4f15ca160164d97f6 97042 x11 optional 
qt3-qtconfig_3.3.4-8_i386.deb
 e39f624588344958f849de4512ac2452 286374 devel optional 
qt3-dev-tools-embedded_3.3.4-8_i386.deb
 76fd3f8ba86d92b80d19a63566350499 69280 devel optional 
qt3-dev-tools-compat_3.3.4-8_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Signed by Christopher Martin <[EMAIL PROTECTED]>

iD8DBQFDHzqZU+gWW+vtsysRAgn8AJ4oioLxhR9x+MVUy1pB4uHhJvtDXwCgjSC5
3w5lGvT1eQ21Px9bbMEznO4=
=cMZk
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to