From 45e6aa33eb741058054e29468ae34693db57d4fd Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Sat, 9 Apr 2016 14:42:24 +0000 Subject: [PATCH] extra/webkit2gtk to 2.12.0-2 --- extra/webkit2gtk/PKGBUILD | 6 +++--- extra/webkit2gtk/isnan.patch | 12 ------------ 2 files changed, 3 insertions(+), 15 deletions(-) delete mode 100644 extra/webkit2gtk/isnan.patch diff --git a/extra/webkit2gtk/PKGBUILD b/extra/webkit2gtk/PKGBUILD index ff423754a..938721e7c 100644 --- a/extra/webkit2gtk/PKGBUILD +++ b/extra/webkit2gtk/PKGBUILD @@ -8,13 +8,13 @@ highmem=1 pkgname=webkit2gtk -pkgver=2.10.9 +pkgver=2.12.0 pkgrel=2 pkgdesc="GTK+ Web content engine library" arch=('i686' 'x86_64') url="http://webkitgtk.org/" license=('custom') -depends=('libxt' 'libxslt' 'enchant' 'geoclue2' 'gst-plugins-base-libs' 'gst-plugins-bad' +depends=('libxt' 'libxslt' 'enchant' 'geoclue2' 'gst-plugins-base-libs' 'libsecret' 'libwebp' 'harfbuzz-icu' 'gtk3' 'libnotify' 'hyphen') makedepends=('gtk2' 'gperf' 'gobject-introspection' 'ruby' 'gtk-doc' 'cmake' 'python') optdepends=('gtk2: Netscape plugin support' @@ -23,7 +23,7 @@ optdepends=('gtk2: Netscape plugin support' 'gst-libav: nonfree media decoding') options=('!emptydirs') source=(http://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz) -sha256sums=('bbb18d741780b1b7fa284beb9a97361ac57cda2e42bad2ae2fcdbf797919e969') +sha256sums=('a68604f8fd1bcb247d647709290226289b90c16acb1f3730538b688db8df5ea6') prepare() { mkdir build diff --git a/extra/webkit2gtk/isnan.patch b/extra/webkit2gtk/isnan.patch deleted file mode 100644 index cafa89a0d..000000000 --- a/extra/webkit2gtk/isnan.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -u -r webkitgtk-2.10.8/Source/JavaScriptCore/runtime/Options.cpp webkitgtk-2.10.8-isnan/Source/JavaScriptCore/runtime/Options.cpp ---- webkitgtk-2.10.8/Source/JavaScriptCore/runtime/Options.cpp 2016-03-11 09:59:07.000000000 +0100 -+++ webkitgtk-2.10.8-isnan/Source/JavaScriptCore/runtime/Options.cpp 2016-03-13 13:51:55.114836547 +0100 -@@ -610,7 +610,7 @@ - case Options::Type::unsignedType: - return m_entry.unsignedVal == other.m_entry.unsignedVal; - case Options::Type::doubleType: -- return (m_entry.doubleVal == other.m_entry.doubleVal) || (isnan(m_entry.doubleVal) && isnan(other.m_entry.doubleVal)); -+ return (m_entry.doubleVal == other.m_entry.doubleVal) || (std::isnan(m_entry.doubleVal) && std::isnan(other.m_entry.doubleVal)); - case Options::Type::int32Type: - return m_entry.int32Val == other.m_entry.int32Val; - case Options::Type::optionRangeType: