Hello community, here is the log from the commit of package libwebkit for openSUSE:Factory checked in at Mon Jan 18 13:57:01 CET 2010. -------- --- libwebkit/libwebkit.changes 2009-12-07 10:56:02.000000000 +0100 +++ /mounts/work_src_done/STABLE/libwebkit/libwebkit.changes 2010-01-15 02:53:52.000000000 +0100 @@ -1,0 +2,45 @@ +Fri Jan 15 02:54:59 CET 2010 - vuntz@opensuse.org + +- Drop libwebkit-ia64_s390x.patch: this should be fixed another way + upstream now. + +------------------------------------------------------------------- +Wed Jan 13 03:53:12 CET 2010 - captain.magnus@opensuse.org + +- Update to version 1.1.18: + - Add methods to set and get a cache model in WebKitGTK+. We + offer two possibilites: document viewer (no caches are used) + and browser (similar to the previous defaults). + - Add WebKitWebSettings::enable-page-cache. Controls whether the + Page Cache is enabled or not. For details about what the page + cache is and does see + http://webkit.org/blog/427/webkit-page-cache-i-the-basics/ + The page cache is disabled by default, since the gtk+ port + still presents some small bugs when it's enabled. + - Add WebKitWebSettings::enable-site-specific-quirks. Controls + whether a series of page-specific workarounds are used by + WebKit. + - Use Content-Encoding support available in recent libsoup. + - Add WebKitWebSettings::enable-default-context-menu. Controls + whether webkitgtk+ will show a default context menu on right + click in the view. Note that even with the property set to + FALSE right clicks can be handled by the page, either by + actions or by ad-hoc in-page context menus. + - Make the WebKitWebView::icon-loaded signal carry a string with + the favicon's URI. This is an API break, but the signal already + had a broken signature and was useless anyway, so it's + extremely unlikely that anybody was using it. Also, add the + 'icon-uri' property to the view, holding the URI for its + current favicon. + - Respect Content-Disposition header in downloads (fixes + downloads in gmail). + - Various accessibility improvements. + - Many bugfixes. +- Drop libwebkit-fix-introspection-build.patch: fixed upstream. +- Update libwebkit-ia64_s390x.patch to apply with fuzz=0 +- Add libwebkit-fix-gcc-warnings.patch to keep gcc happy. Reported + upstream (https://bugs.webkit.org/show_bug.cgi?id=33575) +- Remove workaround copy of JSCore-1.0.gir to fix introspection + build: fixed upstream. + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- libwebkit-fix-introspection-build.patch libwebkit-ia64_s390x.patch webkit-1.1.17.tar.bz2 New: ---- libwebkit-fix-gcc-warnings.patch webkit-1.1.18.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libwebkit.spec ++++++ --- /var/tmp/diff_new_pack.4NymsW/_old 2010-01-18 13:56:25.000000000 +0100 +++ /var/tmp/diff_new_pack.4NymsW/_new 2010-01-18 13:56:25.000000000 +0100 @@ -1,7 +1,7 @@ # -# spec file for package libwebkit (Version 1.1.17) +# spec file for package libwebkit (Version 1.1.18) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 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 @@ -38,13 +38,11 @@ Group: Development/Libraries/C and C++ Summary: Library for rendering web content, GTK+ Port BuildRoot: %{_tmppath}/%{name}-%{version}-build -Version: 1.1.17 +Version: 1.1.18 Release: 1 Source: webkit-%{version}.tar.bz2 -# PATCH-FIX-UPSTREAM libwebkit-fix-introspection-build.patch vuntz@opensuse.org -- Fix build with introspection, sent upstream by mail -Patch0: libwebkit-fix-introspection-build.patch -# PATCH-FIX-UPSTREAM libwebkit-ia64_s390x.patch ro@suse.de -- Fix build on some platforms, sent upstream by mail -Patch1: libwebkit-ia64_s390x.patch +# PATCH-FIX-UPSTREAM libwebkit-fix-gcc-warnings.patch captain.magnus@opensuse.org -- Fix gcc compiler warnings (https://bugs.webkit.org/show_bug.cgi?id=33575) +Patch2: libwebkit-fix-gcc-warnings.patch %define debug_package_requires libwebkit-1_0-2 = %{version}-%{release} %description @@ -113,9 +111,7 @@ %lang_package %prep %setup -q -n webkit-%{version} -%patch0 -p1 -%patch1 -cp JSCore-1.0.gir ./WebKit/gtk/ +%patch2 -p0 %build %ifarch ppc64 ++++++ libwebkit-fix-gcc-warnings.patch ++++++ Index: WebCore/platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp =================================================================== --- WebCore/platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp.orig 2010-01-05 08:53:00.000000000 +1100 +++ WebCore/platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp 2010-01-13 16:59:29.000000000 +1100 @@ -852,11 +852,11 @@ static HashSet<String> mimeTypeCache() if (G_VALUE_TYPE(layer) == GST_TYPE_INT_RANGE) { gint minLayer = gst_value_get_int_range_min(layer); gint maxLayer = gst_value_get_int_range_max(layer); - if (minLayer <= 1 <= maxLayer) + if (minLayer <= 1 && 1 <= maxLayer) cache.add(String("audio/mp1")); - if (minLayer <= 2 <= maxLayer) + if (minLayer <= 2 && 2 <= maxLayer) cache.add(String("audio/mp2")); - if (minLayer <= 3 <= maxLayer) + if (minLayer <= 3 && 3 <= maxLayer) cache.add(String("audio/mp3")); } } ++++++ webkit-1.1.17.tar.bz2 -> webkit-1.1.18.tar.bz2 ++++++ ++++ 87757 lines of diff (skipped) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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