Your message dated Mon, 23 Aug 2010 15:24:53 +0000
with message-id <e1onytj-00040h...@franck.debian.org>
and subject line Bug#588556: fixed in pyside 0.4.0-1
has caused the Debian Bug report #588556,
regarding python-pyside.qtgui: qtgui_qwidget build test segfaults
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.)


-- 
588556: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=588556
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python-pyside.qtgui
Version: 0.3.2-3
Severity: normal

Additionally to bug588556, I've also discovered that
graphicsview/padnavigator/padnavigator.py from pyside-examples [1]
coredumps (with both python2.5 & python2.6):

$ ./padnavigator.py
Segmentation fault (core dumped)

I've tracked this down to a smaller script which is below:

---- 8< p.py ----
#!/usr/bin/env python

# trimmed down padnavigator.py to demonstrate crash in QDateTimeEdit
"""PySide port of the examples/graphicsview/padnavigator example from Qt v4.x"""

import sys
from PySide import QtCore, QtGui

class Ui_BackSide(object):
    def setupUi(self, BackSide):
        self.groupBox = QtGui.QGroupBox(BackSide)

        # crashes
        self.dateTimeEdit = QtGui.QDateTimeEdit(self.groupBox)

class Panel(QtGui.QGraphicsView):
    def __init__(self, width, height):
        QtGui.QGraphicsView.__init__(self)

        embed = QtGui.QWidget()

        self.ui = Ui_BackSide()
        self.ui.setupUi(embed)
        1/0


if __name__ == "__main__":
    app = QtGui.QApplication(sys.argv)

    panel = Panel(3, 3)
    panel.show()
    sys.exit(app.exec_())
---- 8< ----

The backtrace (without -dbg packages installed) is

Program received signal SIGSEGV, Segmentation fault.
0xb6595a86 in ?? () from /usr/lib/pymodules/python2.6/PySide/QtGui.so
(gdb) bt
#0  0xb6595a86 in ?? () from /usr/lib/pymodules/python2.6/PySide/QtGui.so
#1  0x080acd45 in ?? ()
#2  0x0806232a in PyObject_Call ()
#3  0x080e03fb in PyEval_EvalFrameEx ()
#4  0x080e1b40 in PyEval_EvalFrameEx ()
#5  0x080e2797 in PyEval_EvalCodeEx ()
#6  0x0816bb3c in ?? ()
#7  0x0806232a in PyObject_Call ()
#8  0x0806a311 in ?? ()
#9  0x0806232a in PyObject_Call ()
#10 0x080b50a4 in ?? ()
#11 0x080acd45 in ?? ()
#12 0x0806232a in PyObject_Call ()
#13 0x080e03fb in PyEval_EvalFrameEx ()
#14 0x080e2797 in PyEval_EvalCodeEx ()
#15 0x080e2897 in PyEval_EvalCode ()
#16 0x080fff4d in PyRun_FileExFlags ()
#17 0x081001b2 in PyRun_SimpleFileExFlags ()
#18 0x0805dd81 in Py_Main ()
#19 0x0805cf6b in main ()

(and the same one after installing -dbgs):

#0  0xb6595a86 in ?? () from /usr/lib/pymodules/python2.6/PySide/QtGui.so
#1  0x080acd45 in type_call (type=0xb6e0be40, args=
    (<PySide.QtGui.QGroupBox at remote 0x85183a0>,), kwds=0x0) at 
../Objects/typeobject.c:742
#2  0x0806232a in PyObject_Call (func=<Shiboken.BaseWrapperType at remote 
0xb6e0be40>, arg=
    (<PySide.QtGui.QGroupBox at remote 0x85183a0>,), kw=0x0) at 
../Objects/abstract.c:2492
#3  0x080e03fb in do_call (f=
    Frame 0x85d4c6c, for file p.py, line 14, in setupUi 
(self=<Ui_BackSide(groupBox=<PySide.QtGui.QGroupBox at remote 0x85183a0>) at 
remote 0x851838c>, BackSide=<PySide.QtGui.QWidget at remote 0x8518320>), 
throwflag=0) at ../Python/ceval.c:3968
#4  call_function (f=
    Frame 0x85d4c6c, for file p.py, line 14, in setupUi 
(self=<Ui_BackSide(groupBox=<PySide.QtGui.QGroupBox at remote 0x85183a0>) at 
remote 0x851838c>, BackSide=<PySide.QtGui.QWidget at remote 0x8518320>), 
throwflag=0) at ../Python/ceval.c:3773
#5  PyEval_EvalFrameEx (f=
    Frame 0x85d4c6c, for file p.py, line 14, in setupUi 
(self=<Ui_BackSide(groupBox=<PySide.QtGui.QGroupBox at remote 0x85183a0>) at 
remote 0x851838c>, BackSide=<PySide.QtGui.QWidget at remote 0x8518320>), 
throwflag=0) at ../Python/ceval.c:2412
#6  0x080e1b40 in fast_function (f=
    Frame 0x85cedcc, for file p.py, line 48, in __init__ 
(self=<Panel(destroyed=<Signal at remote 0x84bfe30>, 
customContextMenuRequested=<Signal at remote 0x84bfe18>, 
ui=<Ui_BackSide(groupBox=<PySide.QtGui.QGroupBox at remote 0x85183a0>) at 
remote 0x851838c>) at remote 0x850fa7c>, width=3, height=3, 
embed=<PySide.QtGui.QWidget at remote 0x8518320>), throwflag=0) at 
../Python/ceval.c:3836
#7  call_function (f=
    Frame 0x85cedcc, for file p.py, line 48, in __init__ 
(self=<Panel(destroyed=<Signal at remote 0x84bfe30>, 
customContextMenuRequested=<Signal at remote 0x84bfe18>, 
ui=<Ui_BackSide(groupBox=<PySide.QtGui.QGroupBox at remote 0x85183a0>) at 
remote 0x851838c>) at remote 0x850fa7c>, width=3, height=3, 
embed=<PySide.QtGui.QWidget at remote 0x8518320>), throwflag=0) at 
../Python/ceval.c:3771
#8  PyEval_EvalFrameEx (f=
    Frame 0x85cedcc, for file p.py, line 48, in __init__ 
(self=<Panel(destroyed=<Signal at remote 0x84bfe30>, 
customContextMenuRequested=<Signal at remote 0x84bfe18>, 
ui=<Ui_BackSide(groupBox=<PySide.QtGui.QGroupBox at remote 0x85183a0>) at 
remote 0x851838c>) at remote 0x850fa7c>, width=3, height=3, 
embed=<PySide.QtGui.QWidget at remote 0x8518320>), throwflag=0) at 
../Python/ceval.c:2412
#9  0x080e2797 in PyEval_EvalCodeEx (co=0xb7c07b60, globals=
    {'QtGui': <module at remote 0x8349b54>, '__builtins__': <module at remote 
0xb7c31074>, '__file__': 'p.py', '__package__': None, 'sys': <module at remote 
0xb7c3108c>, 'Ui_BackSide': <type at remote 0x855f694>, '__name__': '__main__', 
'app': <PySide.QtGui.QApplication at remote 0x85182e0>, 'QtCore': <module at 
remote 0xb7c315b4>, '__doc__': 'PySide port of the 
examples/graphicsview/padnavigator example from Qt v4.x', 'Panel': 
<Shiboken.BaseWrapperType at remote 0x855f9d4>}, locals=0x0, args=
    0x8517880, argcount=3, kws=0x0, kwcount=0, defs=0x0, defcount=0, 
closure=0x0)
    at ../Python/ceval.c:3000
#10 0x0816bb3c in function_call (func=<function at remote 0x84a8cdc>, arg=
    (<Panel(destroyed=<Signal at remote 0x84bfe30>, 
customContextMenuRequested=<Signal at remote 0x84bfe18>, 
ui=<Ui_BackSide(groupBox=<PySide.QtGui.QGroupBox at remote 0x85183a0>) at 
remote 0x851838c>) at remote 0x850fa7c>, 3, 3), kw=0x0) at 
../Objects/funcobject.c:524
#11 0x0806232a in PyObject_Call (func=<function at remote 0x84a8cdc>, arg=
    (<Panel(destroyed=<Signal at remote 0x84bfe30>, 
customContextMenuRequested=<Signal at remote 0x84bfe18>, 
ui=<Ui_BackSide(groupBox=<PySide.QtGui.QGroupBox at remote 0x85183a0>) at 
remote 0x851838c>) at remote 0x850fa7c>, 3, 3), kw=0x0) at 
../Objects/abstract.c:2492
#12 0x0806a311 in instancemethod_call (func=<function at remote 0x84a8cdc>, 
arg=(3, 3), kw=0x0)
    at ../Objects/classobject.c:2579
#13 0x0806232a in PyObject_Call (func=<instancemethod at remote 0xb7c0c9b4>, 
arg=(3, 3), kw=0x0)
    at ../Objects/abstract.c:2492
#14 0x080b50a4 in slot_tp_init (self=
    <Panel(destroyed=<Signal at remote 0x84bfe30>, 
customContextMenuRequested=<Signal at remote 0x84bfe18>, 
ui=<Ui_BackSide(groupBox=<PySide.QtGui.QGroupBox at remote 0x85183a0>) at 
remote 0x851838c>) at remote 0x850fa7c>, args=(3, 3), kwds=0x0) at 
../Objects/typeobject.c:5632
#15 0x080acd45 in type_call (type=0x855f9d4, args=(3, 3), kwds=0x0) at 
../Objects/typeobject.c:742
#16 0x0806232a in PyObject_Call (func=<Shiboken.BaseWrapperType at remote 
0x855f9d4>, arg=(3, 3), 
    kw=0x0) at ../Objects/abstract.c:2492
#17 0x080e03fb in do_call (f=Frame 0x829f994, for file p.py, line 55, in 
<module> (), throwflag=0)
    at ../Python/ceval.c:3968
#18 call_function (f=Frame 0x829f994, for file p.py, line 55, in <module> (), 
throwflag=0)
    at ../Python/ceval.c:3773
#19 PyEval_EvalFrameEx (f=Frame 0x829f994, for file p.py, line 55, in <module> 
(), throwflag=0)
    at ../Python/ceval.c:2412
#20 0x080e2797 in PyEval_EvalCodeEx (co=0xb7c194a0, globals=
    {'QtGui': <module at remote 0x8349b54>, '__builtins__': <module at remote 
0xb7c31074>, '__file__': 'p.py', '__package__': None, 'sys': <module at remote 
0xb7c3108c>, 'Ui_BackSide': <type at remote 0x855f694>, '__name__': '__main__', 
'app': <PySide.QtGui.QApplication at remote 0x85182e0>, 'QtCore': <module at 
remote 0xb7c315b4>, '__doc__': 'PySide port of the 
examples/graphicsview/padnavigator example from Qt v4.x', 'Panel': 
<Shiboken.BaseWrapperType at remote 0x855f9d4>}, locals=
    {'QtGui': <module at remote 0x8349b54>, '__builtins__': <module at remote 
0xb7c31074>, '__file__': 'p.py', '__package__': None, 'sys': <module at remote 
0xb7c3108c>, 'Ui_BackSide': <type at remote 0x855f694>, '__name__': '__main__', 
'app': <PySide.QtGui.QApplication at remote 0x85182e0>, 'QtCore': <module at 
remote 0xb7c315b4>, '__doc__': 'PySide port of the 
examples/graphicsview/padnavigator example from Qt v4.x', 'Panel': 
<Shiboken.BaseWrapperType at remote 0x855f9d4>}, args=0x0, 
    argcount=0, kws=0x0, kwcount=0, defs=0x0, defcount=0, closure=0x0) at 
../Python/ceval.c:3000
#21 0x080e2897 in PyEval_EvalCode (co=0xb7c194a0, globals=
    {'QtGui': <module at remote 0x8349b54>, '__builtins__': <module at remote 
0xb7c31074>, '__file__': 'p.py', '__package__': None, 'sys': <module at remote 
0xb7c3108c>, 'Ui_BackSide': <type at remote 0x855f694>, '__name__': '__main__', 
'app': <PySide.QtGui.QApplication at remote 0x85182e0>, 'QtCore': <module at 
remote 0xb7c315b4>, '__doc__': 'PySide port of the 
examples/graphicsview/padnavigator example from Qt v4.x', 'Panel': 
<Shiboken.BaseWrapperType at remote 0x855f9d4>}, locals=
    {'QtGui': <module at remote 0x8349b54>, '__builtins__': <module at remote 
0xb7c31074>, '__file__': 'p.py', '__package__': None, 'sys': <module at remote 
0xb7c3108c>, 'Ui_BackSide': <type at remote 0x855f694>, '__name__': '__main__', 
'app': <PySide.QtGui.QApplication at remote 0x85182e0>, 'QtCore': <module at 
remote 0xb7c315b4>, '__doc__': 'PySide port of the 
examples/graphicsview/padnavigator example from Qt v4.x', 'Panel': 
<Shiboken.BaseWrapperType at remote 0x855f9d4>})
    at ../Python/ceval.c:541
#22 0x080fff4d in run_mod (fp=0x82a1258, filename=0xbffff1fb "p.py", start=257, 
globals=
    {'QtGui': <module at remote 0x8349b54>, '__builtins__': <module at remote 
0xb7c31074>, '__file__': 'p.py', '__package__': None, 'sys': <module at remote 
0xb7c3108c>, 'Ui_BackSide': <type at remote 0x855f694>, '__name__': '__main__', 
'app': <PySide.QtGui.QApplication at remote 0x85182e0>, 'QtCore': <module at 
remote 0xb7c315b4>, '__doc__': 'PySide port of the 
examples/graphicsview/padnavigator example from Qt v4.x', 'Panel': 
<Shiboken.BaseWrapperType at remote 0x855f9d4>}, locals=
    {'QtGui': <module at remote 0x8349b54>, '__builtins__': <module at remote 
0xb7c31074>, '__file__': 'p.py', '__package__': None, 'sys': <module at remote 
0xb7c3108c>, 'Ui_BackSide': <type at remote 0x855f694>, '__name__': '__main__', 
'app': <PySide.QtGui.QApplication at remote 0x85182e0>, 'QtCore': <module at 
remote 0xb7c315b4>, '__doc__': 'PySide port of the 
examples/graphicsview/padnavigator example from Qt v4.x', 'Panel': 
<Shiboken.BaseWrapperType at remote 0x855f9d4>}, closeit=1, flags=
    0xbfffef3c) at ../Python/pythonrun.c:1351
#23 PyRun_FileExFlags (fp=0x82a1258, filename=0xbffff1fb "p.py", start=257, 
globals=
    {'QtGui': <module at remote 0x8349b54>, '__builtins__': <module at remote 
0xb7c31074>, '__file__': 'p.py', '__package__': None, 'sys': <module at remote 
0xb7c3108c>, 'Ui_BackSide': <type at remote 0x855f694>, '__name__': '__main__', 
'app': <PySide.QtGui.QApplication at remote 0x85182e0>, 'QtCore': <module at 
remote 0xb7c315b4>, '__doc__': 'PySide port of the 
examples/graphicsview/padnavigator example from Qt v4.x', 'Panel': 
<Shiboken.BaseWrapperType at remote 0x855f9d4>}, locals=
    {'QtGui': <module at remote 0x8349b54>, '__builtins__': <module at remote 
0xb7c31074>, '__file__': 'p.py', '__package__': None, 'sys': <module at remote 
0xb7c3108c>, 'Ui_BackSide': <type at remote 0x855f694>, '__name__': '__main__', 
'app': <PySide.QtGui.QApplication at remote 0x85182e0>, 'QtCore': <module at 
remote 0xb7c315b4>, '__doc__': 'PySide port of the 
examples/graphicsview/padnavigator example from Qt v4.x', 'Panel': 
<Shiboken.BaseWrapperType at remote 0x855f9d4>}, closeit=1, flags=
    0xbfffef3c) at ../Python/pythonrun.c:1337
#24 0x081001b2 in PyRun_SimpleFileExFlags (fp=0x82a1258, filename=0xbffff1fb 
"p.py", closeit=1, 
    flags=0xbfffef3c) at ../Python/pythonrun.c:941
#25 0x0805dd81 in Py_Main (argc=2, argv=0xbffff024) at ../Modules/main.c:577
#26 0x0805cf6b in main (argc=2, argv=0xbffff024) at ../Modules/python.c:23




Also the following examples coredumps in the same way (judging by
original backtrace):

- widgets/styles.py


Thanks,
Kirill


[1] http://qt.gitorious.org/pyside/pyside-examples



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

Kernel: Linux 2.6.33.6-roro-00002-gf825b2a-dirty (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-pyside.qtgui depends on:
ii  libc6                   2.11.2-2         Embedded GNU C Library: Shared lib
ii  libgcc1                 1:4.4.4-6        GCC support library
ii  libpyside0.3            0.3.2-3          Python bindings for Qt 4 (base fil
ii  libpython2.6            2.6.5+20100630-2 Shared Python runtime library (ver
ii  libqtcore4              4:4.6.3-1        Qt 4 core module
ii  libqtgui4               4:4.6.3-1        Qt 4 GUI module
ii  libshiboken0.3          0.3.2-2          CPython bindings generator for C++
ii  libstdc++6              4.4.4-6          The GNU Standard C++ Library v3
ii  python                  2.6.5-5          An interactive high-level object-o
ii  python-support          1.0.9            automated rebuilding support for P
ii  python2.5               2.5.5-6          An interactive high-level object-o

python-pyside.qtgui recommends no packages.

python-pyside.qtgui suggests no packages.

-- no debconf information



--- End Message ---
--- Begin Message ---
Source: pyside
Source-Version: 0.4.0-1

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

libpyside-dev_0.4.0-1_amd64.deb
  to main/p/pyside/libpyside-dev_0.4.0-1_amd64.deb
libpyside0.4_0.4.0-1_amd64.deb
  to main/p/pyside/libpyside0.4_0.4.0-1_amd64.deb
pyside_0.4.0-1.debian.tar.gz
  to main/p/pyside/pyside_0.4.0-1.debian.tar.gz
pyside_0.4.0-1.dsc
  to main/p/pyside/pyside_0.4.0-1.dsc
pyside_0.4.0.orig.tar.bz2
  to main/p/pyside/pyside_0.4.0.orig.tar.bz2
python-pyside-dbg_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside-dbg_0.4.0-1_amd64.deb
python-pyside.phonon_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.phonon_0.4.0-1_amd64.deb
python-pyside.qtcore_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.qtcore_0.4.0-1_amd64.deb
python-pyside.qtgui_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.qtgui_0.4.0-1_amd64.deb
python-pyside.qthelp_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.qthelp_0.4.0-1_amd64.deb
python-pyside.qtmultimedia_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.qtmultimedia_0.4.0-1_amd64.deb
python-pyside.qtnetwork_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.qtnetwork_0.4.0-1_amd64.deb
python-pyside.qtopengl_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.qtopengl_0.4.0-1_amd64.deb
python-pyside.qtscript_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.qtscript_0.4.0-1_amd64.deb
python-pyside.qtsql_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.qtsql_0.4.0-1_amd64.deb
python-pyside.qtsvg_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.qtsvg_0.4.0-1_amd64.deb
python-pyside.qttest_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.qttest_0.4.0-1_amd64.deb
python-pyside.qtuitools_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.qtuitools_0.4.0-1_amd64.deb
python-pyside.qtwebkit_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.qtwebkit_0.4.0-1_amd64.deb
python-pyside.qtxml_0.4.0-1_amd64.deb
  to main/p/pyside/python-pyside.qtxml_0.4.0-1_amd64.deb
python-pyside_0.4.0-1_all.deb
  to main/p/pyside/python-pyside_0.4.0-1_all.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 588...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Didier Raboud <did...@raboud.com> (supplier of updated pyside 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: Tue, 17 Aug 2010 21:03:14 +0200
Source: pyside
Binary: python-pyside python-pyside-dbg libpyside0.4 libpyside-dev 
python-pyside.qtcore python-pyside.qtgui python-pyside.qthelp 
python-pyside.qtmultimedia python-pyside.qtnetwork python-pyside.qtopengl 
python-pyside.phonon python-pyside.qtscript python-pyside.qtsql 
python-pyside.qtsvg python-pyside.qttest python-pyside.qtuitools 
python-pyside.qtwebkit python-pyside.qtxml
Architecture: source all amd64
Version: 0.4.0-1
Distribution: experimental
Urgency: low
Maintainer: Debian Python Modules Team 
<python-modules-t...@lists.alioth.debian.org>
Changed-By: Didier Raboud <did...@raboud.com>
Description: 
 libpyside-dev - Python bindings for Qt 4 (development files)
 libpyside0.4 - Python bindings for Qt 4 (base files)
 python-pyside - Python bindings for Qt4 (big metapackage)
 python-pyside-dbg - Python bindings for Qt 4 (debug symbols)
 python-pyside.phonon - Qt 4 Phonon module - Python bindings
 python-pyside.qtcore - Qt 4 core module - Python bindings
 python-pyside.qtgui - Qt 4 GUI module - Python bindings
 python-pyside.qthelp - Qt 4 help module - Python bindings
 python-pyside.qtmultimedia - Qt 4 Multimedia module - Python bindings
 python-pyside.qtnetwork - Qt 4 network module - Python bindings
 python-pyside.qtopengl - Qt 4 OpenGL module - Python bindings
 python-pyside.qtscript - Qt 4 script module - Python bindings
 python-pyside.qtsql - Qt 4 SQL module - Python bindings
 python-pyside.qtsvg - Qt 4 SVG module - Python bindings
 python-pyside.qttest - Qt 4 test module - Python bindings
 python-pyside.qtuitools - Qt 4 UI tools module - Python bindings
 python-pyside.qtwebkit - Qt 4 WebKit module - Python bindings
 python-pyside.qtxml - Qt 4 XML module - Python bindings
Closes: 588556 588558 591981
Changes: 
 pyside (0.4.0-1) experimental; urgency=low
 .
   * New 0.4.0 upstream release (Closes: #591981)
     - Various QtGui fixes (Closes: #588556, #588558)
     - Bump generatorrunner B-D to 0.6.0
     - Bump shiboken B-D to 0.4.0
     - libpyside SONAME bumped to 0.4, update symbols file
 .
   * Patches:
     - u_5ce7c94_fix_qtnetwork_udpsocket_test.patch
        Drop, was from upstream
     - u_86d0f67_fix_debug_build.patch
        Drop, was from upstream
     - fixTests.patch
        Drop as upstream changed the tests handling completely
     + u_c130273_fix_py25_QtScript_property.patch
        Import from upstream to fix the QtScript_property test on python2.5
        (upstream bug #284)
     × Refresh the others
 .
   * Remove custom cmake files in favour of cmake-data's.
    - Remove debian/cmake/*.
    - Bump cmake B-D to 2.8.2
    - Bump libshiboken-dev B-D to 0.3.2-3
    - Adapt debian/rules.
    - Remove mentions of the BSD license of cmake in debian/copyright
   * Remove debian/pyversions, which duplicates information from
     debian/control.
   * Put the cmake config and pkg-config file in libpyside-dev, add necessary
     Breaks/Replaces.
   * Install the typesystem files in libpyside-dev.
   * Bump Standards to 3.9.1.0 without changes needed.
Checksums-Sha1: 
 132014c64efac01076b0881d53627a3bb5fa2e3f 1971 pyside_0.4.0-1.dsc
 9b250675897230360bbf50177e652a1bff2b994e 841155 pyside_0.4.0.orig.tar.bz2
 0e8c604a92b66c127961472e603a9f68ce53702a 10255 pyside_0.4.0-1.debian.tar.gz
 e2b7221a920a9a16bd07c9b7d377ad02d823df46 48054 python-pyside_0.4.0-1_all.deb
 eb62ad3bd190cacced51b4fcd3e7808e22371fdf 279087274 
python-pyside-dbg_0.4.0-1_amd64.deb
 130fef306603116f86b5dca096255c81b6404d35 129002 libpyside0.4_0.4.0-1_amd64.deb
 6f67dfad61295ee3872712bd3d91a1d657f9d47e 197036 libpyside-dev_0.4.0-1_amd64.deb
 d5419d70c74d029c1ea814ea5eb71c6a00030205 1899560 
python-pyside.qtcore_0.4.0-1_amd64.deb
 2fad9e494e74cf53fd4388feaa5490c8885b4976 7779438 
python-pyside.qtgui_0.4.0-1_amd64.deb
 dad627fed3fa0076f41d72b5ec782424a14aa4f3 334844 
python-pyside.qthelp_0.4.0-1_amd64.deb
 8dcbe3201eb635ff396efd428bb6a2129bb27cb1 273556 
python-pyside.qtmultimedia_0.4.0-1_amd64.deb
 5ebb5d03c1a6e07f69902f561e2b78345e87f7b5 623518 
python-pyside.qtnetwork_0.4.0-1_amd64.deb
 ee4d6247c9a2f42d7ce286bb274e3e19fb082bf0 303932 
python-pyside.qtopengl_0.4.0-1_amd64.deb
 a0deecf8582b8209acd7cbd1a5612888e3a1aa48 609930 
python-pyside.phonon_0.4.0-1_amd64.deb
 0687774eeca50c78ae85a01f83c06841021fa38f 304966 
python-pyside.qtscript_0.4.0-1_amd64.deb
 9d158815b4f7d1a91bb55714e995904d283bc9c6 449396 
python-pyside.qtsql_0.4.0-1_amd64.deb
 ae05f3cd971aa5090d48da93edb0ddd5dd383c7b 174388 
python-pyside.qtsvg_0.4.0-1_amd64.deb
 9833329269f7c62085704e9d9c7834bfa15b176b 105404 
python-pyside.qttest_0.4.0-1_amd64.deb
 e83637c4e4bf6a097fcac1aeaee6c693ee45a7d5 611980 
python-pyside.qtuitools_0.4.0-1_amd64.deb
 0392a853191e81c788324e87a60c8da358d61261 467840 
python-pyside.qtwebkit_0.4.0-1_amd64.deb
 aa0e7b0537a7a74866ffc1c41747e70de331f44a 567128 
python-pyside.qtxml_0.4.0-1_amd64.deb
Checksums-Sha256: 
 15b16cd82d1bf8d0c666c8e4692bd875bb63a8b3ab691b5db9fffa70d6c7a73c 1971 
pyside_0.4.0-1.dsc
 0668358963f335572752ffee112ad8d172c8683901d6db8eeb158c45bbb8dd4a 841155 
pyside_0.4.0.orig.tar.bz2
 702fd9240c8944512cfca27610f81dede89834092d52604dc1809a3c2d5db581 10255 
pyside_0.4.0-1.debian.tar.gz
 16fec4cd4b55980411b0e433184ea9d100592f4e79474362eb0d72e4863c629f 48054 
python-pyside_0.4.0-1_all.deb
 9bd2e5577ac304212a1ae6e2776d5e54abb8b6ad3f7e660b48355f9af42c287d 279087274 
python-pyside-dbg_0.4.0-1_amd64.deb
 75bc6f0e3512b7e1e72e1e711973f5f9be23d2540b7c1650af2586d22c5ac57e 129002 
libpyside0.4_0.4.0-1_amd64.deb
 6d9a467523bfab772d2bf6845a8127bffefdac41860ceec2c730c61f64d793c0 197036 
libpyside-dev_0.4.0-1_amd64.deb
 0eb2bee16a5c79cf24057cd77b94fe19857bdd0f261956f344eaac1ed4c8871e 1899560 
python-pyside.qtcore_0.4.0-1_amd64.deb
 a7e4d729cb7d5d6ae7f53d6b02c8e1d35fccc86f478c42b45de13a709e678593 7779438 
python-pyside.qtgui_0.4.0-1_amd64.deb
 916cfe5448366051865e592e28e4137bcbfef6cda6a9d1cefb15066d376540f4 334844 
python-pyside.qthelp_0.4.0-1_amd64.deb
 a6bf9c178f09bcd6aa0f7b2189997ceb4e63fbc94e1238d90f76cb4628c8e72b 273556 
python-pyside.qtmultimedia_0.4.0-1_amd64.deb
 a675ea01898072ad95e151accc7682c6d092e30e5c4bc8ba8671354ac484fda5 623518 
python-pyside.qtnetwork_0.4.0-1_amd64.deb
 28d91c93fc294023ef4a07e3dc4a72cb885d6648c34e01547fb1c18478346c79 303932 
python-pyside.qtopengl_0.4.0-1_amd64.deb
 87005ed62668b6a70d6883451d48da9517657ac1e50d701a0a95d28bad9e4514 609930 
python-pyside.phonon_0.4.0-1_amd64.deb
 56f97471df12e78ed5e23a9f43a73c9747f65d291c3c9c0b804e75d0067127c8 304966 
python-pyside.qtscript_0.4.0-1_amd64.deb
 1b344812880e3054ea4cd26f53ea0254985b8fa6a9f2ff450fd8572964db386e 449396 
python-pyside.qtsql_0.4.0-1_amd64.deb
 a2447fd11245b88851f8e84df209799fb3f75aaf134bee1aa5e0ace197938c5f 174388 
python-pyside.qtsvg_0.4.0-1_amd64.deb
 dd5c46fa6f5ae8e85d891440e9ca67e25e19d0fc310da1e7436f137ab9fad147 105404 
python-pyside.qttest_0.4.0-1_amd64.deb
 26e0fd718fd27c51838c05ef212a49a1060201468e86fb1a56e456276fa26f59 611980 
python-pyside.qtuitools_0.4.0-1_amd64.deb
 73cb10f6503f34926e22dea1104c795e6fe1ee2a63458de829ac77c3add978e4 467840 
python-pyside.qtwebkit_0.4.0-1_amd64.deb
 99766ca75d2d20d6a0bf8fd79f493010ae103eef3c3e1291779db93adda7bea0 567128 
python-pyside.qtxml_0.4.0-1_amd64.deb
Files: 
 425dd6b7906d3cc963977f20e4389880 1971 python optional pyside_0.4.0-1.dsc
 8b1ba0fa4f217401f9c8f0e6c62cde97 841155 python optional 
pyside_0.4.0.orig.tar.bz2
 0db26b5cec0c2392fa6fcd1abfef41a1 10255 python optional 
pyside_0.4.0-1.debian.tar.gz
 3d51ffc4b84bd7dcb15545127ab627fb 48054 python optional 
python-pyside_0.4.0-1_all.deb
 46593e3dea54348e2d40185d5b083c53 279087274 debug extra 
python-pyside-dbg_0.4.0-1_amd64.deb
 74775e1edcf37e398a1b17997f6d7b5d 129002 python optional 
libpyside0.4_0.4.0-1_amd64.deb
 e8a1540aea22770f8cc320ada0b3be99 197036 libdevel optional 
libpyside-dev_0.4.0-1_amd64.deb
 89f09214d3e6299d6fa1370c29b066fa 1899560 python optional 
python-pyside.qtcore_0.4.0-1_amd64.deb
 3be4226a431de43fbd287f8880139702 7779438 python optional 
python-pyside.qtgui_0.4.0-1_amd64.deb
 f083285aade34925ab4fbef9f76845ed 334844 python optional 
python-pyside.qthelp_0.4.0-1_amd64.deb
 54d5e82ecf9d17b94f5c8eb2f3acfb9c 273556 python optional 
python-pyside.qtmultimedia_0.4.0-1_amd64.deb
 e51fbfec596a7c52484bed1bf794df02 623518 python optional 
python-pyside.qtnetwork_0.4.0-1_amd64.deb
 44f8538a3e4f6078286b8b1e753cd3ee 303932 python optional 
python-pyside.qtopengl_0.4.0-1_amd64.deb
 777779d9b53aa604d89768fb9ff753f3 609930 python optional 
python-pyside.phonon_0.4.0-1_amd64.deb
 4acca57303359fe41d8d8623ef3efcf9 304966 python optional 
python-pyside.qtscript_0.4.0-1_amd64.deb
 1116fd2bfa5d0da3b8b9de129964dfa9 449396 python optional 
python-pyside.qtsql_0.4.0-1_amd64.deb
 605e7d20fad2004e5fad6d51ba15ec63 174388 python optional 
python-pyside.qtsvg_0.4.0-1_amd64.deb
 2ad78bb96c85a81b516a1d6919613509 105404 python optional 
python-pyside.qttest_0.4.0-1_amd64.deb
 b5955f325fd5ad91903af2591037a819 611980 python optional 
python-pyside.qtuitools_0.4.0-1_amd64.deb
 60df119d63b6f938b673633f79a5dc8b 467840 python optional 
python-pyside.qtwebkit_0.4.0-1_amd64.deb
 5bd6416b4223d7c20b8695b88b61dd6c 567128 python optional 
python-pyside.qtxml_0.4.0-1_amd64.deb

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

iEYEARECAAYFAkxtXZcACgkQB01zfu119ZkshwCgw1fvyIiieTyFqUYf3Lrp15Nj
bCgAoJUxOawLqJyyTSFNdgZX1lt/vjAX
=6Cv9
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to