Activity log for bug #695590

Date Who What changed Old value New value Message
2010-12-30 05:59:50 Alex Mayorga bug added bug
2010-12-30 17:30:08 Hans Joachim Desserud gally (Ubuntu): status New Confirmed
2011-01-03 21:29:20 Mackenzie Morgan bug added subscriber Mackenzie Morgan
2011-01-03 21:29:29 Mackenzie Morgan gally (Ubuntu): assignee Mackenzie Morgan (maco.m)
2011-01-03 21:29:33 Mackenzie Morgan gally (Ubuntu): importance Undecided Medium
2011-01-03 21:32:19 Mackenzie Morgan gally (Ubuntu): status Confirmed Triaged
2011-04-22 15:44:10 Mackenzie Morgan affects gally (Ubuntu) python-kde4 (Ubuntu)
2011-04-22 15:53:56 Mackenzie Morgan summary ImportError: cannot import name Ui_TwoPanes pykdeuic4's processUi() calls compileUi() with 3 args instead of the 4 required by PyQt4.uic.Compiler.compiler
2011-04-22 15:58:33 Mackenzie Morgan bug watch added http://bugs.kde.org/show_bug.cgi?id=269710
2011-04-22 16:14:48 Mackenzie Morgan description Binary package hint: gally Tried to launch Gally on Ubuntu 11.04 I get this error: alex-mayorga@VPCCW1FFXL:~$ gally Traceback (most recent call last): File "/usr/bin/gally", line 26, in <module> from gally.twoPanes import Ui_TwoPanes ImportError: cannot import name Ui_TwoPanes ProblemType: Bug DistroRelease: Ubuntu 11.04 Package: gally 0.5.1-1 ProcVersionSignature: Ubuntu 2.6.37-11.25-generic 2.6.37-rc7 Uname: Linux 2.6.37-11-generic x86_64 Architecture: amd64 CheckboxSubmission: ed5dbdfb54bf5043a043813a33527c9f CheckboxSystem: b633b4f40868d491c2ae5b50030ce6f3 Date: Wed Dec 29 23:56:46 2010 InstallationMedia: Ubuntu 10.04.1 LTS "Lucid Lynx" - Release amd64 (20100816.1) PackageArchitecture: all ProcEnviron: LANGUAGE=en_US:en LANG=en_US.UTF-8 LC_MESSAGES=en_US.utf8 SHELL=/bin/bash SourcePackage: gally Symptoms are the following in a build log: Traceback (most recent call last): File "/usr/bin/pykdeuic4", line 148, in <module> main() File "/usr/bin/pykdeuic4", line 145, in main processUI(args[0], output_filename, exe) File "/usr/bin/pykdeuic4", line 74, in processUI winfo = comp.compileUi(uifile, output) TypeError: compileUi() takes exactly 4 arguments (3 given) Followed by an ImportError when the application being built is eventually run. ==== Original report ==== Binary package hint: gally Tried to launch Gally on Ubuntu 11.04 I get this error: alex-mayorga@VPCCW1FFXL:~$ gally Traceback (most recent call last):   File "/usr/bin/gally", line 26, in <module>     from gally.twoPanes import Ui_TwoPanes ImportError: cannot import name Ui_TwoPanes ProblemType: Bug DistroRelease: Ubuntu 11.04 Package: gally 0.5.1-1 ProcVersionSignature: Ubuntu 2.6.37-11.25-generic 2.6.37-rc7 Uname: Linux 2.6.37-11-generic x86_64 Architecture: amd64 CheckboxSubmission: ed5dbdfb54bf5043a043813a33527c9f CheckboxSystem: b633b4f40868d491c2ae5b50030ce6f3 Date: Wed Dec 29 23:56:46 2010 InstallationMedia: Ubuntu 10.04.1 LTS "Lucid Lynx" - Release amd64 (20100816.1) PackageArchitecture: all ProcEnviron:  LANGUAGE=en_US:en  LANG=en_US.UTF-8  LC_MESSAGES=en_US.utf8  SHELL=/bin/bash SourcePackage: gally
2011-04-26 03:54:00 Mackenzie Morgan attachment added ui file https://bugs.launchpad.net/ubuntu/+source/python-kde4/+bug/695590/+attachment/2089322/+files/twoPanes.ui
2011-04-26 04:03:06 Mackenzie Morgan description Symptoms are the following in a build log: Traceback (most recent call last): File "/usr/bin/pykdeuic4", line 148, in <module> main() File "/usr/bin/pykdeuic4", line 145, in main processUI(args[0], output_filename, exe) File "/usr/bin/pykdeuic4", line 74, in processUI winfo = comp.compileUi(uifile, output) TypeError: compileUi() takes exactly 4 arguments (3 given) Followed by an ImportError when the application being built is eventually run. ==== Original report ==== Binary package hint: gally Tried to launch Gally on Ubuntu 11.04 I get this error: alex-mayorga@VPCCW1FFXL:~$ gally Traceback (most recent call last):   File "/usr/bin/gally", line 26, in <module>     from gally.twoPanes import Ui_TwoPanes ImportError: cannot import name Ui_TwoPanes ProblemType: Bug DistroRelease: Ubuntu 11.04 Package: gally 0.5.1-1 ProcVersionSignature: Ubuntu 2.6.37-11.25-generic 2.6.37-rc7 Uname: Linux 2.6.37-11-generic x86_64 Architecture: amd64 CheckboxSubmission: ed5dbdfb54bf5043a043813a33527c9f CheckboxSystem: b633b4f40868d491c2ae5b50030ce6f3 Date: Wed Dec 29 23:56:46 2010 InstallationMedia: Ubuntu 10.04.1 LTS "Lucid Lynx" - Release amd64 (20100816.1) PackageArchitecture: all ProcEnviron:  LANGUAGE=en_US:en  LANG=en_US.UTF-8  LC_MESSAGES=en_US.utf8  SHELL=/bin/bash SourcePackage: gally 1. Impact: .ui files are not compiled into .py files. Instead a Python traceback is output and the resulting .py file is mostly blank (a bit of explanatory "this file was generated" text is all that's there) 2. How it's fixed: Modify the compileUi() call to include an additional argument ("False") to satisfy the API change in Qt.Compiler 3. Patch: see http://people.ubuntu.com/~maco.m/needs_sponsorship/kdebindings_4.6.2b-0ubuntu2.dsc 4. TEST CASE 1. See attached .ui file 2. pykdeuic4 -o ui_twoPanes.py twoPanes.ui Expected result: - no traceback crashy Python output - ui_twoPanes.py has lots of Python inside (Bad result = crashy Python output and mostly blank ui_TwoPanes.py) 5. No known regression potential. Patch is coming from upstream. ===== Symptoms are the following in a build log: Traceback (most recent call last): File "/usr/bin/pykdeuic4", line 148, in <module> main() File "/usr/bin/pykdeuic4", line 145, in main processUI(args[0], output_filename, exe) File "/usr/bin/pykdeuic4", line 74, in processUI winfo = comp.compileUi(uifile, output) TypeError: compileUi() takes exactly 4 arguments (3 given) Followed by an ImportError when the application being built is eventually run.
2011-04-26 04:07:00 Scott Kitterman affects python-kde4 (Ubuntu) kdebindings (Ubuntu)
2011-04-26 04:07:26 Scott Kitterman bug task added kdebindings
2011-04-26 04:15:05 Scott Kitterman bug added subscriber Ubuntu Stable Release Updates Team
2011-04-26 04:15:11 Scott Kitterman kdebindings (Ubuntu): status Triaged Fix Committed
2011-04-26 20:45:39 Martin Pitt nominated for series Ubuntu Natty
2011-04-26 20:45:39 Martin Pitt bug task added kdebindings (Ubuntu Natty)
2011-04-26 20:46:31 Martin Pitt bug added subscriber SRU Verification
2011-04-26 20:46:35 Martin Pitt tags amd64 apport-bug natty amd64 apport-bug natty verification-needed
2011-04-26 22:31:57 Bug Watch Updater kdebindings: status Unknown Confirmed
2011-04-26 22:31:57 Bug Watch Updater kdebindings: importance Unknown High
2011-04-27 14:30:24 Felix Geyer tags amd64 apport-bug natty verification-needed amd64 apport-bug natty verification-done
2011-05-02 07:49:59 Launchpad Janitor kdebindings (Ubuntu Natty): status Fix Committed Fix Released
2011-05-02 07:54:42 Martin Pitt kdebindings (Ubuntu): status Fix Committed Fix Released
2011-08-31 18:02:24 Launchpad Janitor branch linked lp:ubuntu/kdebindings
2011-09-19 21:41:55 Ubuntu Foundations Team Bug Bot tags amd64 apport-bug natty verification-done amd64 apport-bug natty testcase verification-done
2013-08-12 14:40:18 Mackenzie Morgan removed subscriber Mackenzie Morgan
2013-08-12 14:40:36 Mackenzie Morgan kdebindings (Ubuntu): assignee Mackenzie Morgan (maco.m)
2013-08-12 14:40:38 Mackenzie Morgan kdebindings (Ubuntu Natty): assignee Mackenzie Morgan (maco.m)
2013-11-03 15:18:31 Bug Watch Updater kdebindings: status Confirmed Unknown
2013-11-03 15:18:34 Bug Watch Updater bug watch added https://bugzilla.redhat.com/show_bug.cgi?id=684419