Your message dated Sun, 15 Jan 2006 09:39:49 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#333812: fixed in vtk 4.4.2-9
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; 13 Oct 2005 19:39:54 +0000
>From [EMAIL PROTECTED] Thu Oct 13 12:39:54 2005
Return-path: <[EMAIL PROTECTED]>
Received: from virus89-out.ccf.swri.edu [129.162.252.34] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1EQ8vi-00067v-00; Thu, 13 Oct 2005 12:39:54 -0700
Received: from gwmdc1293linux (localhost [127.0.0.1])
        by virus89-out.ccf.swri.edu (8.13.1/8.13.1) with ESMTP id j9DJdrpi003760
        for <[EMAIL PROTECTED]>; Thu, 13 Oct 2005 14:39:53 -0500 (CDT)
Received: from gmabey by gwmdc1293linux with local (Exim 4.52)
        id 1EQ8vg-0001Zr-Hq; Thu, 13 Oct 2005 14:39:52 -0500
Content-Type: multipart/mixed; boundary="===============0638243642=="
MIME-Version: 1.0
From: "Glen W. Mabey" <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: python-vtk: Sample code for use with Qt not working
X-Mailer: reportbug 3.17
Date: Thu, 13 Oct 2005 14:39:52 -0500
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

This is a multi-part MIME message sent by reportbug.

--===============0638243642==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: python-vtk
Version: 4.4.2-8
Severity: minor
Tags: patch


The file 
/usr/lib/python2.3/site-packages/vtk_python/vtk/qt/QVTKRenderWindowInteractor.py
is intended to function as an example of using a VTK widget within a Qt
application.  However, python2.3-qt3 does not accept keyword arguments
(I guess it did at one time).  As such, the attached patch makes a minor
change to the invocation of the QWidget constructor, to avoid the error
that now occurs when 
    python2.3 
/usr/lib/python2.3/site-packages/vtk_python/vtk/qt/QVTKRenderWindowInteractor.py
is executed.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages python-vtk depends on:
ii  libc6                    2.3.5-6         GNU C Library: Shared libraries an
ii  libexpat1                1.95.8-3        XML parsing C library - runtime li
ii  libfreetype6             2.1.7-2.4       FreeType 2 font engine, shared lib
ii  libgcc1                  1:4.0.2-2       GCC support library
ii  libice6                  6.8.2.dfsg.1-7  Inter-Client Exchange library
ii  libjpeg62                6b-10           The Independent JPEG Group's JPEG 
ii  libpng12-0               1.2.8rel-1      PNG library - runtime
ii  libsm6                   6.8.2.dfsg.1-7  X Window System Session Management
ii  libstdc++6               4.0.2-2         The GNU Standard C++ Library v3
ii  libtiff4                 3.7.3-1         Tag Image File Format (TIFF) libra
ii  libvtk4c2                4.4.2-8         Visualization Toolkit - A high lev
ii  libx11-6                 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxext6                 4.3.0.dfsg.1-14 X Window System miscellaneous exte
ii  libxt6                   4.3.0.dfsg.1-14 X Toolkit Intrinsics
ii  python                   2.3.5-3         An interactive high-level object-o
ii  tcl8.4                   8.4.11-1        Tcl (the Tool Command Language) v8
ii  tk8.4                    8.4.9-1         Tk toolkit for Tcl and X11, v8.4 -
ii  xlibmesa-gl [libgl1]     4.3.0.dfsg.1-14 Mesa 3D graphics library [XFree86]
ii  xlibmesa-glu [libglu1]   4.3.0.dfsg.1-14 Mesa OpenGL utility library [XFree
ii  xlibs                    4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu
ii  zlib1g                   1:1.2.3-4       compression library - runtime

python-vtk recommends no packages.

-- no debconf information

--===============0638243642==
Content-Type: text/x-java; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="QVTKRenderWindowInteractor.py.diff"

*** QVTKRenderWindowInteractor.py.orig  Wed Oct 12 16:51:05 2005
--- QVTKRenderWindowInteractor.py       Wed Oct 12 17:01:04 2005
***************
*** 35,40 ****
--- 35,41 ----
  
  import qt
  import vtk
+ import exceptions
  
  class QVTKRenderWindowInteractor(qt.QWidget):
  
***************
*** 132,139 ****
              rw = kw['rw']
              del kw['rw']
  
          # create qt-level widget
!         apply(qt.QWidget.__init__, (self,parent,name) + args, kw)
  
          if rw: # user-supplied render window
              self._RenderWindow = rw
--- 133,143 ----
              rw = kw['rw']
              del kw['rw']
  
+       if len(kw) > 0:
+           raise exceptions.TypeError("keyword arguments other than 'stereo' 
and 'rw' are not supported")
+ 
          # create qt-level widget
!         qt.QWidget.__init__(self,parent,name, *args)
  
          if rw: # user-supplied render window
              self._RenderWindow = rw

--===============0638243642==--

---------------------------------------
Received: (at 333812-close) by bugs.debian.org; 15 Jan 2006 17:40:34 +0000
>From [EMAIL PROTECTED] Sun Jan 15 09:40:34 2006
Return-path: <[EMAIL PROTECTED]>
Received: from joerg by spohr.debian.org with local (Exim 4.50)
        id 1EyBr3-0002RM-Rx; Sun, 15 Jan 2006 09:39:49 -0800
From: [EMAIL PROTECTED] (A. Maitland Bottoms)
To: [EMAIL PROTECTED]
X-Katie: lisa $Revision: 1.31 $
Subject: Bug#333812: fixed in vtk 4.4.2-9
Message-Id: <[EMAIL PROTECTED]>
Sender: Joerg Jaspert <[EMAIL PROTECTED]>
Date: Sun, 15 Jan 2006 09:39:49 -0800
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

Source: vtk
Source-Version: 4.4.2-9

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

libvtk4-dev_4.4.2-9_all.deb
  to pool/main/v/vtk/libvtk4-dev_4.4.2-9_all.deb
libvtk4c2a_4.4.2-9_i386.deb
  to pool/main/v/vtk/libvtk4c2a_4.4.2-9_i386.deb
python-vtk_4.4.2-9_i386.deb
  to pool/main/v/vtk/python-vtk_4.4.2-9_i386.deb
vtk-doc_4.4.2-9_all.deb
  to pool/main/v/vtk/vtk-doc_4.4.2-9_all.deb
vtk-examples_4.4.2-9_all.deb
  to pool/main/v/vtk/vtk-examples_4.4.2-9_all.deb
vtk-tcl_4.4.2-9_i386.deb
  to pool/main/v/vtk/vtk-tcl_4.4.2-9_i386.deb
vtk_4.4.2-9.diff.gz
  to pool/main/v/vtk/vtk_4.4.2-9.diff.gz
vtk_4.4.2-9.dsc
  to pool/main/v/vtk/vtk_4.4.2-9.dsc



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.
A. Maitland Bottoms <[EMAIL PROTECTED]> (supplier of updated vtk 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: Tue, 10 Jan 2006 12:41:41 -0500
Source: vtk
Binary: python-vtk vtk-tcl vtk-doc libvtk4-dev libvtk4c2a vtk-examples
Architecture: source all i386
Version: 4.4.2-9
Distribution: unstable
Urgency: low
Maintainer: A. Maitland Bottoms <[EMAIL PROTECTED]>
Changed-By: A. Maitland Bottoms <[EMAIL PROTECTED]>
Description: 
 libvtk4-dev - VTK header files for building C++ code
 libvtk4c2a - Visualization Toolkit - A high level 3D visualization library
 python-vtk - Python bindings for VTK
 vtk-doc    - VTK class reference documentation
 vtk-examples - C++, Tcl and Python example programs/scripts for VTK
 vtk-tcl    - Tcl bindings for VTK
Closes: 333812 339276
Changes: 
 vtk (4.4.2-9) unstable; urgency=low
 .
   * renamed libvtk4c2 to libvtk4c2a(libstdc++ allocator change) (Closes: 
#339276)
   * New X dependencies - (Closes #346505)
   * patch QVTKRenderWindowInteractor.py invocation of the QWidget constructor 
(Closes: #333812)
Files: 
 022fdcc0530b0b56e26928a3e2eba74d 926 graphics optional vtk_4.4.2-9.dsc
 60f3709862e826470327ef093cd9608a 23426 graphics optional vtk_4.4.2-9.diff.gz
 39f208ee6b9cadc1d1abecbafbf3ffec 5243434 libs optional 
libvtk4c2a_4.4.2-9_i386.deb
 e6ba43d19b76c90071838ef55d77d03f 1088574 interpreters optional 
vtk-tcl_4.4.2-9_i386.deb
 ce72c4c33c91de3d72d8e62652971702 2214060 python optional 
python-vtk_4.4.2-9_i386.deb
 b3b1b2120b669935092d04db74ddce8c 16794510 doc optional vtk-doc_4.4.2-9_all.deb
 41b5a51efbd10870529c34b6563da1c0 331476 graphics optional 
vtk-examples_4.4.2-9_all.deb
 4fb766d1f1532120c1c29c4aafa36c24 795052 libdevel optional 
libvtk4-dev_4.4.2-9_all.deb

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

iD8DBQFDxHPzkwbJvNrxBUwRAoiPAJ47FQ8tr/q0kLSmxJ5+LHJVnQ+i2QCfUE0V
oiRBkslIB0w2LrPyGhqXUvU=
=63FT
-----END PGP SIGNATURE-----


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

Reply via email to