Compare commits

...
This repository has been archived on 2026-09-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.

21 commits

Author SHA1 Message Date
Tomas Popela
f8473e902e Update to 2.6.6 2015-04-07 11:29:44 +02:00
Michael Catanzaro
905a4aa857 Add patch for late certificate verification 2015-03-17 15:05:10 -05:00
Michael Catanzaro
8d1193c6fd Add patch for rbz#1156330 2015-03-16 19:22:20 -05:00
Tomas Popela
4cb159c89d Revert latest commit as it was intended for 2.7.3 (rawhide) 2015-01-19 13:55:43 +01:00
Tomas Popela
502b8462ff Fix compilation on second arches 2015-01-19 13:49:59 +01:00
Tomas Popela
d73294cbb1 Update to 2.6.5 2015-01-15 14:30:49 +01:00
Michael Catanzaro
283c62b8ce Disable the codec installer 2014-12-11 12:47:33 +01:00
Tomas Popela
25a2f361a3 Update to 2.6.4 2014-11-21 08:37:59 +01:00
Tomas Popela
e27e9d1390 Update to 2.6.3
Enable JIT where possible (accidentally turned off when updating to 2.5.90)
2014-11-12 10:51:22 +01:00
Kalev Lember
ebbccd362c Build developer documentation 2014-11-08 16:53:46 +01:00
Richard Hughes
af857da8fc Fix non-Fedora build 2014-11-04 16:39:36 +00:00
Michael Catanzaro
a5aecccfdf Obsolete libwebkit2gtk < 2.5.0 to be future-proof 2014-10-31 14:23:24 -05:00
Kalev Lember
ce49a8451e Bump libwebkit2gtk obsoletes version 2014-10-31 12:10:58 +01:00
Tomas Popela
37d7fef135 Update to 2.6.2 2014-10-22 10:41:23 +02:00
Tomas Popela
fd05532f6c Disable the SSLv3 to address the POODLE vulnerability 2014-10-21 10:37:00 +02:00
Tomas Popela
3a0f764f7e Update to 2.6.1 2014-10-14 09:26:11 +02:00
Tomas Popela
483d26901d Add the wrongly removed CLoop patch and remove the one that was upstreamed 2014-09-25 08:07:05 +02:00
Kalev Lember
a7cbac64a6 Update to 2.6.0 2014-09-24 18:17:45 +02:00
Tomas Popela
c7063288f0 Update to 2.5.90 2014-09-22 14:02:46 +02:00
Kalev Lember
878d8ca100 Obsolete libwebkit2gtk from the webkitgtk3 package 2014-08-26 19:02:29 +02:00
Tomas Popela
40af07adc4 Add support for secondary arches 2014-08-25 11:38:14 +02:00
8 changed files with 299 additions and 38 deletions

8
.gitignore vendored
View file

@ -1 +1,9 @@
/webkitgtk-2.5.3.tar.xz
/webkitgtk-2.5.90.tar.xz
/webkitgtk-2.6.0.tar.xz
/webkitgtk-2.6.1.tar.xz
/webkitgtk-2.6.2.tar.xz
/webkitgtk-2.6.3.tar.xz
/webkitgtk-2.6.4.tar.xz
/webkitgtk-2.6.5.tar.xz
/webkitgtk-2.6.6.tar.xz

View file

@ -1 +1 @@
fffbb1e327f6d57971de4de77bb52538 webkitgtk-2.5.3.tar.xz
3c8c2ec4e4070aae12e96a9e25f83edc webkitgtk-2.6.6.tar.xz

View file

@ -0,0 +1,12 @@
--- webkit-1.1.17/Source/WebCore/plugins/PluginDatabase.cpp.old 2009-12-01 15:22:10.000000000 +0000
+++ webkit-1.1.17/Source/WebCore/plugins/PluginDatabase.cpp 2009-12-01 15:22:21.000000000 +0000
@@ -357,6 +357,9 @@ Vector<String> PluginDatabase::defaultPl
paths.append("/usr/lib64/mozilla/plugins");
paths.append("/usr/lib/nsbrowser/plugins");
paths.append("/usr/lib64/nsbrowser/plugins");
+ /* And for nspluginwrapper */
+ paths.append("/usr/lib64/mozilla/plugins-wrapped");
+ paths.append("/usr/lib/mozilla/plugins-wrapped");
String mozHome(getenv("MOZILLA_HOME"));
mozHome.append("/plugins");

View file

@ -0,0 +1,35 @@
diff -up webkitgtk-2.5.2/Source/JavaScriptCore/heap/CopiedBlock.h.ppc64_align webkitgtk-2.5.2/Source/JavaScriptCore/heap/CopiedBlock.h
--- webkitgtk-2.5.2/Source/JavaScriptCore/heap/CopiedBlock.h.ppc64_align 2014-07-08 06:17:14.000000000 -0600
+++ webkitgtk-2.5.2/Source/JavaScriptCore/heap/CopiedBlock.h 2014-08-12 05:38:47.752283561 -0600
@@ -81,7 +81,7 @@ public:
size_t size();
size_t capacity();
- static const size_t blockSize = 32 * KB;
+ static const size_t blockSize = 64 * KB;
bool hasWorkList();
CopyWorkList& workList();
diff -up webkitgtk-2.5.2/Source/JavaScriptCore/interpreter/JSStack.cpp.ppc64_align webkitgtk-2.5.2/Source/JavaScriptCore/interpreter/JSStack.cpp
--- webkitgtk-2.5.2/Source/JavaScriptCore/interpreter/JSStack.cpp.ppc64_align 2014-08-12 06:27:12.101177790 -0600
+++ webkitgtk-2.5.2/Source/JavaScriptCore/interpreter/JSStack.cpp 2014-08-12 06:32:01.252063281 -0600
@@ -58,7 +58,8 @@ JSStack::JSStack(VM& vm)
size_t capacity = Options::maxPerThreadStackUsage();
ASSERT(capacity && isPageAligned(capacity));
- m_reservation = PageReservation::reserve(WTF::roundUpToMultipleOf(commitSize, capacity), OSAllocator::JSVMStackPages);
+ size_t commitsize = pageSize();
+ m_reservation = PageReservation::reserve(WTF::roundUpToMultipleOf(commitsize, capacity), OSAllocator::JSVMStackPages);
setStackLimit(highAddress());
m_commitTop = highAddress();
@@ -92,7 +93,8 @@ bool JSStack::growSlowCase(Register* new
// have it is still within our budget. If not, we'll fail to grow and
// return false.
ptrdiff_t delta = reinterpret_cast<char*>(m_commitTop) - reinterpret_cast<char*>(newTopOfStackWithReservedZone);
- delta = WTF::roundUpToMultipleOf(commitSize, delta);
+ size_t commitsize = pageSize();
+ delta = WTF::roundUpToMultipleOf(commitsize, delta);
Register* newCommitTop = m_commitTop - (delta / sizeof(Register));
if (newCommitTop < reservationTop())
return false;

View file

@ -1,30 +0,0 @@
2014-08-21 Michael Catanzaro <mcatanzaro@igalia.com>
[GTK] Toggle buttons visually broken with GTK+ 3.13.7
https://bugs.webkit.org/show_bug.cgi?id=136130
Reviewed by NOBODY (OOPS!).
No new tests. Hopefully covered by existing tests, and our tests only
run with GTK+ 3.6 anyway.
* platform/gtk/RenderThemeGtk3.cpp:
(WebCore::paintToggle): use GTK_STATE_FLAG_CHECKED when compiling for
GTK+ 3.13.7 and above to ensure toggle buttons display as toggled.
diff --git a/Source/WebCore/platform/gtk/RenderThemeGtk3.cpp b/Source/WebCore/platform/gtk/RenderThemeGtk3.cpp
index 3630c43dffde59c6ea843c35a37e8e94611e4ae5..6d811a1747ac3ca7ff376bb6a0fcb02273c335d3 100644
--- a/Source/WebCore/platform/gtk/RenderThemeGtk3.cpp
+++ b/Source/WebCore/platform/gtk/RenderThemeGtk3.cpp
@@ -253,7 +253,11 @@ static void paintToggle(const RenderThemeGtk* theme, GType widgetType, const Ren
if (theme->isIndeterminate(renderObject))
flags |= GTK_STATE_FLAG_INCONSISTENT;
else if (theme->isChecked(renderObject))
+#if GTK_CHECK_VERSION(3, 13, 7)
+ flags |= GTK_STATE_FLAG_CHECKED;
+#else
flags |= GTK_STATE_FLAG_ACTIVE;
+#endif
if (theme->isPressed(renderObject))
flags |= GTK_STATE_FLAG_SELECTED;
gtk_style_context_set_state(context, static_cast<GtkStateFlags>(flags));

View file

@ -0,0 +1,99 @@
diff -up webkitgtk-2.5.90/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm.cloop_fix webkitgtk-2.5.90/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm
--- webkitgtk-2.5.90/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm.cloop_fix 2014-09-22 01:22:29.943407090 -0600
+++ webkitgtk-2.5.90/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm 2014-09-22 01:20:25.463025643 -0600
@@ -2094,7 +2094,7 @@ macro loadWithStructureCheck(operand, sl
end
macro getProperty()
- loadisFromInstruction(6, t1)
+ loadpFromInstruction(6, t1)
loadPropertyAtVariableOffset(t1, t0, t2)
valueProfile(t2, 7, t0)
loadisFromInstruction(1, t0)
@@ -2111,7 +2111,7 @@ end
macro getClosureVar()
loadp JSEnvironmentRecord::m_registers[t0], t0
- loadisFromInstruction(6, t1)
+ loadpFromInstruction(6, t1)
loadq [t0, t1, 8], t0
valueProfile(t0, 7, t1)
loadisFromInstruction(1, t1)
@@ -2168,7 +2168,7 @@ _llint_op_get_from_scope:
macro putProperty()
loadisFromInstruction(3, t1)
loadConstantOrVariable(t1, t2)
- loadisFromInstruction(6, t1)
+ loadpFromInstruction(6, t1)
storePropertyAtVariableOffset(t1, t0, t2)
end
@@ -2185,7 +2185,7 @@ macro putClosureVar()
loadisFromInstruction(3, t1)
loadConstantOrVariable(t1, t2)
loadp JSEnvironmentRecord::m_registers[t0], t0
- loadisFromInstruction(6, t1)
+ loadpFromInstruction(6, t1)
storeq t2, [t0, t1, 8]
end
diff -up webkitgtk-2.5.90/Source/JavaScriptCore/bytecode/CodeBlock.cpp.cloop_fix webkitgtk-2.5.90/Source/JavaScriptCore/bytecode/CodeBlock.cpp
--- webkitgtk-2.5.90/Source/JavaScriptCore/bytecode/CodeBlock.cpp.cloop_fix 2014-09-17 06:31:08.000000000 -0600
+++ webkitgtk-2.5.90/Source/JavaScriptCore/bytecode/CodeBlock.cpp 2014-09-24 06:00:21.573643180 -0600
@@ -1519,13 +1519,13 @@ void CodeBlock::dumpBytecode(
int id0 = (++it)->u.operand;
ResolveModeAndType modeAndType = ResolveModeAndType((++it)->u.operand);
++it; // Structure
- int operand = (++it)->u.operand; // Operand
+ void *operand = (++it)->u.pointer; // Operand
++it; // Skip value profile.
printLocationAndOp(out, exec, location, it, "get_from_scope");
- out.printf("%s, %s, %s, %u<%s|%s>, <structure>, %d",
+ out.printf("%s, %s, %s, %u<%s|%s>, <structure>, %lu",
registerName(r0).data(), registerName(r1).data(), idName(id0, identifier(id0)).data(),
modeAndType.operand(), resolveModeName(modeAndType.mode()), resolveTypeName(modeAndType.type()),
- operand);
+ reinterpret_cast<uintptr_t>(operand));
break;
}
case op_put_to_scope: {
@@ -1534,12 +1534,12 @@ void CodeBlock::dumpBytecode(
int r1 = (++it)->u.operand;
ResolveModeAndType modeAndType = ResolveModeAndType((++it)->u.operand);
++it; // Structure
- int operand = (++it)->u.operand; // Operand
+ void *operand = (++it)->u.pointer; // Operand
printLocationAndOp(out, exec, location, it, "put_to_scope");
- out.printf("%s, %s, %s, %u<%s|%s>, <structure>, %d",
+ out.printf("%s, %s, %s, %u<%s|%s>, <structure>, %lu",
registerName(r0).data(), idName(id0, identifier(id0)).data(), registerName(r1).data(),
modeAndType.operand(), resolveModeName(modeAndType.mode()), resolveTypeName(modeAndType.type()),
- operand);
+ reinterpret_cast<uintptr_t>(operand));
break;
}
default:
diff -up webkitgtk-2.5.90/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp.cloop_fix webkitgtk-2.5.90/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp
--- webkitgtk-2.5.90/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp.cloop_fix 2014-09-22 01:23:26.643580502 -0600
+++ webkitgtk-2.5.90/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp 2014-09-24 06:02:36.574037807 -0600
@@ -1392,7 +1396,7 @@ LLINT_SLOW_PATH_DECL(slow_path_get_from_
{
ConcurrentJITLocker locker(codeBlock->m_lock);
pc[5].u.structure.set(exec->vm(), codeBlock->ownerExecutable(), structure);
- pc[6].u.operand = slot.cachedOffset();
+ pc[6].u.pointer = reinterpret_cast<void*>(slot.cachedOffset());
}
structure->startWatchingPropertyForReplacements(vm, slot.cachedOffset());
}
diff -up webkitgtk-2.5.90/Source/JavaScriptCore/runtime/CommonSlowPaths.h.cloop_fix webkitgtk-2.5.90/Source/JavaScriptCore/runtime/CommonSlowPaths.h
--- webkitgtk-2.5.90/Source/JavaScriptCore/runtime/CommonSlowPaths.h.cloop_fix 2014-09-22 01:25:13.843908763 -0600
+++ webkitgtk-2.5.90/Source/JavaScriptCore/runtime/CommonSlowPaths.h 2014-09-24 06:03:23.834201352 -0600
@@ -115,7 +116,7 @@ inline void tryCachePutToScopeGlobal(
ConcurrentJITLocker locker(codeBlock->m_lock);
pc[5].u.structure.set(exec->vm(), codeBlock->ownerExecutable(), scope->structure());
- pc[6].u.operand = slot.cachedOffset();
+ pc[6].u.pointer = reinterpret_cast<void*>(slot.cachedOffset());
}
} // namespace CommonSlowPaths

View file

@ -0,0 +1,36 @@
From a15a3ac0571bc1e3a5fb9c62e5b19a1f005445fb Mon Sep 17 00:00:00 2001
From: Michael Catanzaro <mcatanzaro@igalia.com>
Date: Tue, 9 Dec 2014 18:34:31 +0100
Subject: [PATCH] Disable the PackageKit codec installer
This is a workaround, not suitable for upstream.
https://bugzilla.gnome.org/show_bug.cgi?id=726326
https://bugs.webkit.org/show_bug.cgi?id=135973
---
.../platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp b/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
index 8c9a637..55e0b8b 100644
--- a/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
+++ b/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
@@ -1009,15 +1009,8 @@ gboolean MediaPlayerPrivateGStreamer::handleMessage(GstMessage* message)
}
break;
case GST_MESSAGE_ELEMENT:
- if (gst_is_missing_plugin_message(message)) {
- gchar* detail = gst_missing_plugin_message_get_installer_detail(message);
- gchar* detailArray[2] = {detail, 0};
- GstInstallPluginsReturn result = gst_install_plugins_async(detailArray, 0, mediaPlayerPrivatePluginInstallerResultFunction, this);
- m_missingPlugins = result == GST_INSTALL_PLUGINS_STARTED_OK;
- g_free(detail);
- }
#if ENABLE(VIDEO_TRACK) && USE(GSTREAMER_MPEGTS)
- else {
+ if (!gst_is_missing_plugin_message(message)) {
GstMpegtsSection* section = gst_message_parse_mpegts_section(message);
if (section) {
processMpegTsSection(section);
--
2.1.0

View file

@ -1,3 +1,6 @@
# Fix rebuild on non-Fedora
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
## NOTE: Lots of files in various subdirectories have the same name (such as
## "LICENSE") so this short macro allows us to distinguish them by using their
## directory names (from the source tree) as prefixes for the files.
@ -6,16 +9,18 @@
cp -p %1 _license_files/$(echo '%1' | sed -e 's!/!.!g')
Name: webkitgtk4
Version: 2.5.3
Release: 4%{?dist}
Version: 2.6.6
Release: 1%{?dist}
Summary: GTK+ Web content engine library
License: LGPLv2
URL: http://www.webkitgtk.org/
Source0: http://webkitgtk.org/releases/webkitgtk-%{version}.tar.xz
# https://bugs.webkit.org/show_bug.cgi?id=136130
Patch0: webkitgtk-2.5.3-toggle-buttons.patch
Patch0: webkit-1.1.14-nspluginwrapper.patch
Patch1: webkitgtk-2.6.4-disable-codec-installer.patch
Patch2: webkitgtk-2.5.90-cloop_fix.patch
Patch3: webkitgtk-2.5.2-commit_align.patch
BuildRequires: at-spi2-core-devel
BuildRequires: bison
@ -34,6 +39,7 @@ BuildRequires: gstreamer1-devel
BuildRequires: gstreamer1-plugins-base-devel
BuildRequires: gtk2-devel
BuildRequires: gtk3-devel
BuildRequires: gtk-doc
BuildRequires: harfbuzz-devel
BuildRequires: libicu-devel
BuildRequires: libjpeg-devel
@ -48,8 +54,13 @@ BuildRequires: pcre-devel
BuildRequires: perl-Switch
BuildRequires: ruby
BuildRequires: sqlite-devel
Requires: geoclue2
# Obsolete libwebkit2gtk from the webkitgtk3 package
Obsoletes: libwebkit2gtk < 2.5.0
Provides: libwebkit2gtk = %{version}-%{release}
# Filter out provides for private libraries
%global __provides_exclude_from ^%{_libdir}/webkit2gtk-4\\.0/.*\\.so$
@ -67,9 +78,22 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
The %{name}-devel package contains libraries, build data, and header
files for developing applications that use %{name}.
%package doc
Summary: Documentation files for %{name}
BuildArch: noarch
Requires: %{name} = %{version}-%{release}
%description doc
This package contains developer documentation for %{name}.
%prep
%setup -q -n webkitgtk-%{version}
%patch0 -p1 -b .toggle-buttons
%patch0 -p1 -b .nspluginwrapper
%patch1 -p1 -b .disable_codec_installer
%patch2 -p1 -b .cloop_fix
%ifarch %{power64} aarch64 ppc
%patch3 -p1 -b .commit_align
%endif
# Remove bundled libraries
rm -rf Source/ThirdParty/leveldb/
@ -85,11 +109,25 @@ rm -rf Source/ThirdParty/qunit/
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
%endif
%ifarch ppc
# Use linker flag -relax to get WebKit build under ppc(32) with JIT disabled
%global optflags %{optflags} -Wl,-relax -latomic
%endif
%ifarch s390 s390x ppc %{power64} aarch64
%global optflags %{optflags} -DENABLE_YARR_JIT=0
%endif
mkdir -p %{_target_platform}
pushd %{_target_platform}
%cmake \
-DPORT=GTK \
-DCMAKE_BUILD_TYPE=Release \
-DENABLE_GTKDOC=ON \
%ifarch s390 s390x ppc %{power64} aarch64
-DENABLE_JIT=OFF \
-DENABLE_LLINT_C_LOOP=ON \
%endif
..
popd
@ -110,7 +148,6 @@ make %{?_smp_mflags} -C %{_target_platform}
%add_to_license_files Source/WebCore/LICENSE-APPLE
%add_to_license_files Source/WebCore/LICENSE-LGPL-2
%add_to_license_files Source/WebCore/LICENSE-LGPL-2.1
%add_to_license_files Source/WebInspectorUI/APPLE_IMAGES_LICENSE.rtf
%add_to_license_files Source/WebInspectorUI/UserInterface/External/CodeMirror/LICENSE
%add_to_license_files Source/WebInspectorUI/UserInterface/External/Esprima/LICENSE
%add_to_license_files Source/WTF/icu/LICENSE
@ -128,7 +165,7 @@ make %{?_smp_mflags} -C %{_target_platform}
%{_libdir}/girepository-1.0/WebKit2-4.0.typelib
%{_libdir}/girepository-1.0/WebKit2WebExtension-4.0.typelib
%{_libdir}/webkit2gtk-4.0/
%{_libexecdir}/webkitgtk-4.0/
%{_libexecdir}/webkit2gtk-4.0/
%files devel
%{_bindir}/jsc
@ -142,7 +179,71 @@ make %{?_smp_mflags} -C %{_target_platform}
%{_datadir}/gir-1.0/WebKit2-4.0.gir
%{_datadir}/gir-1.0/WebKit2WebExtension-4.0.gir
%files doc
%dir %{_datadir}/gtk-doc
%dir %{_datadir}/gtk-doc/html
%{_datadir}/gtk-doc/html/webkit2gtk-4.0/
%{_datadir}/gtk-doc/html/webkitdomgtk-4.0/
%changelog
* Tue Apr 07 2015 Tomas Popela <tpopela@redhat.com> - 2.6.6-1
- Update to 2.6.6
* Tue Mar 17 2015 Michael Catanzaro <mcatanzaro@gnome.org> - 2.6.5-3
- Add patch for late certificate verification
* Mon Mar 16 2015 Michael Catanzaro <mcatanzaro@gnome.org> - 2.6.5-2
- Add patch for rbz#1156330
* Thu Jan 15 2015 Tomas Popela <tpopela@redhat.com> - 2.6.5-1
- Update to 2.6.5
* Thu Dec 11 2014 Michael Catanzaro <mcatanzaro@gnome.org> - 2.6.4-2
- Disable the PackageKit codec installer
* Fri Nov 21 2014 Tomas Popela <tpopela@redhat.com> - 2.6.4-1
- Update to 2.6.4
* Wed Nov 12 2014 Tomas Popela <tpopela@redhat.com> - 2.6.3-1
- Update to 2.6.3
- Enable JIT where possible (accidentally turned off when updating to 2.5.90)
* Fri Nov 07 2014 Kalev Lember <kalevlember@gmail.com> - 2.6.2-5
- Build developer documentation
* Tue Nov 04 2014 Richard Hughes <richard@hughsie.com> - 2.6.2-4
- Fix non-Fedora build
* Fri Oct 31 2014 Michael Catanzaro <mcatanzaro@gnome.org> - 2.6.2-3
- Obsolete libwebkit2gtk < 2.5.0 to be future-proof
* Fri Oct 31 2014 Kalev Lember <kalevlember@gmail.com> - 2.6.2-2
- Bump libwebkit2gtk obsoletes version
* Wed Oct 22 2014 Tomas Popela <tpopela@redhat.com> - 2.6.2-1
- Update to 2.6.2
* Tue Oct 21 2014 Tomas Popela <tpopela@redhat.com> - 2.6.1-2
- Disable the SSLv3 to address the POODLE vulnerability
* Tue Oct 14 2014 Tomas Popela <tpopela@redhat.com> - 2.6.1-1
- Update to 2.6.1
* Thu Sep 25 2014 Tomas Popela <tpopela@redhat.com> - 2.6.0-1
- Add the wrongly removed CLoop patch and remove the one that was upstreamed
* Wed Sep 24 2014 Kalev Lember <kalevlember@gmail.com> - 2.6.0-1
- Update to 2.6.0
* Mon Sep 22 2014 Tomas Popela <tpopela@redhat.com> - 2.5.90-1
- Update to 2.5.90
* Tue Aug 26 2014 Kalev Lember <kalevlember@gmail.com> - 2.5.3-6
- Obsolete libwebkit2gtk from the webkitgtk3 package
* Mon Aug 25 2014 Tomas Popela <tpopela@redhat.com> - 2.5.3-5
- Add support for secondary arches
* Fri Aug 22 2014 Michael Catanzaro <mcatanzaro@gnome.org> - 2.5.3-4
- Add webkitgtk-2.5.3-toggle-buttons.patch