commit kdebindings4 for openSUSE:Factory

Hello community, here is the log from the commit of package kdebindings4 for openSUSE:Factory checked in at Mon Jan 3 11:04:03 CET 2011. -------- --- KDE/kdebindings4/kdebindings4.changes 2010-12-03 17:11:17.000000000 +0100 +++ /mounts/work_src_done/STABLE/kdebindings4/kdebindings4.changes 2010-12-30 14:04:09.000000000 +0100 @@ -1,0 +2,15 @@ +Thu Dec 30 12:34:49 UTC 2010 - einar@heavensinferno.net + +- Added Patch1 + * Make pykdeuic4 work with recent python-qt4 and python-sip + (upstreamed in trunk) + +------------------------------------------------------------------- +Wed Dec 22 11:36:40 CET 2010 - dmueller@suse.de + +- update to 4.5.90 + * KDE 4.6 RC1 + * no upstream changelog available. + + +------------------------------------------------------------------- mono-kde4.changes: same change perl-kde4.changes: same change python-kde4.changes: same change ruby-kde4.changes: same change calling whatdependson for head-i586 Old: ---- kdebindings-4.5.85.tar.bz2 New: ---- kdebindings-4.5.90.tar.bz2 pykde4_fix_pykdeuic4.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdebindings4.spec ++++++ --- /var/tmp/diff_new_pack.WQxtBR/_old 2011-01-03 11:03:11.000000000 +0100 +++ /var/tmp/diff_new_pack.WQxtBR/_new 2011-01-03 11:03:11.000000000 +0100 @@ -1,7 +1,7 @@ # -# spec file for package kdebindings4 (Version 4.5.85) +# spec file for package kdebindings4 (Version 4.5.90) # -# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -44,10 +44,13 @@ %else Summary: Smoke stand-alone generator for bindings for KDE 4.x libraries %endif -Version: 4.5.85 +Version: 4.5.90 Release: 1 Source0: kdebindings-%version.tar.bz2 Patch0: 4_6_BRANCH.diff +%if %is_python +Patch1: pykde4_fix_pykdeuic4.patch +%endif BuildRoot: %{_tmppath}/%{name}-%{version}-build %if %is_base %define debug_package_requires libsmoke2 = %{version}-%{release} @@ -157,6 +160,9 @@ %prep %setup -q -n kdebindings-%version %patch0 -p0 +%if %is_python +%patch1 -p0 +%endif %build rm -rf xparts php mono-kde4.spec: same change perl-kde4.spec: same change python-kde4.spec: same change ruby-kde4.spec: same change ++++++ kdebindings-4.5.85.tar.bz2 -> kdebindings-4.5.90.tar.bz2 ++++++ KDE/kdebindings4/kdebindings-4.5.85.tar.bz2 /mounts/work_src_done/STABLE/kdebindings4/kdebindings-4.5.90.tar.bz2 differ: byte 11, line 1 ++++++ kdebindings4.spec.in ++++++ --- /var/tmp/diff_new_pack.WQxtBR/_old 2011-01-03 11:03:11.000000000 +0100 +++ /var/tmp/diff_new_pack.WQxtBR/_new 2011-01-03 11:03:11.000000000 +0100 @@ -44,10 +44,13 @@ %else Summary: Smoke stand-alone generator for bindings for KDE 4.x libraries %endif -Version: 4.5.85 +Version: 4.5.90 Release: 1 Source0: kdebindings-%version.tar.bz2 Patch0: 4_6_BRANCH.diff +%if %is_python +Patch1: pykde4_fix_pykdeuic4.patch +%endif BuildRoot: %{_tmppath}/%{name}-%{version}-build %if %is_base %define debug_package_requires libsmoke2 = %{version}-%{release} @@ -150,6 +153,9 @@ %prep %setup -q -n kdebindings-%version %patch0 -p0 +%if %is_python +%patch1 -p0 +%endif %build rm -rf xparts php ++++++ pykde4_fix_pykdeuic4.patch ++++++ Index: python/pykde4/tools/pykdeuic4/pykdeuic4.py =================================================================== --- python/pykde4/tools/pykdeuic4/pykdeuic4.py (revisione 1209674) +++ python/pykde4/tools/pykdeuic4/pykdeuic4.py (copia locale) @@ -39,7 +39,7 @@ def __init__(self,string): original_i18n_string.__init__(self,string) def __str__(self): - return "kdecore.i18n(\"%s\")" % (qtproxies.escape(self.string),) + return "kdecore.i18n(%s)" % (qtproxies.as_string(self.string),) qtproxies.i18n_string = kde_i18n_string def kdeFilter(): @@ -71,7 +71,7 @@ indenter.indentwidth = indent comp = compiler.UICompiler() comp.factory._cwFilters.append(kdeFilter()) - winfo = comp.compileUi(uifile, output) + winfo = comp.compileUi(uifile, output, None) if exe: output.write(""" @@ -104,7 +104,7 @@ app = kdeui.KApplication() mainWindow = MainWin(None, "main window") mainWindow.show() - app.connect (app, QtCore.SIGNAL ("lastWindowClosed ()"), app.quit) + app.lastWindowClosed.connect(app.quit) app.exec_ () """) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de