|
|
c21214 |
# Fix rebuild on non-Fedora
|
|
|
c21214 |
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
|
|
|
c21214 |
|
|
|
c21214 |
## NOTE: Lots of files in various subdirectories have the same name (such as
|
|
|
c21214 |
## "LICENSE") so this short macro allows us to distinguish them by using their
|
|
|
c21214 |
## directory names (from the source tree) as prefixes for the files.
|
|
|
c21214 |
%global add_to_doc_files() \
|
|
|
c21214 |
mkdir -p %{buildroot}%{_pkgdocdir} ||: ; \
|
|
|
c21214 |
cp -p %1 %{buildroot}%{_pkgdocdir}/$(echo '%1' | sed -e 's!/!.!g')
|
|
|
c21214 |
|
|
|
c21214 |
# Enable higher compression for output rpms
|
|
|
c21214 |
# https://bugzilla.redhat.com/show_bug.cgi?id=1039590
|
|
|
c21214 |
%define _binary_payload w8.xzdio
|
|
|
c21214 |
|
|
|
c21214 |
Name: webkitgtk3
|
|
|
c21214 |
Version: 2.4.11
|
|
|
c21214 |
Release: 2%{?dist}
|
|
|
c21214 |
Summary: GTK+ Web content engine library
|
|
|
c21214 |
|
|
|
c21214 |
Group: Development/Libraries
|
|
|
c21214 |
License: LGPLv2+ and BSD
|
|
|
c21214 |
URL: http://www.webkitgtk.org
|
|
|
c21214 |
|
|
|
c21214 |
Source0: http://webkitgtk.org/releases/webkitgtk-%{version}.tar.xz
|
|
|
c21214 |
|
|
|
c21214 |
Patch0: webkitgtk-2.4.9-disable_deprecated_get_set_id.patch
|
|
|
c21214 |
|
|
|
c21214 |
BuildRequires: at-spi2-core-devel
|
|
|
c21214 |
BuildRequires: bison
|
|
|
c21214 |
BuildRequires: cairo-devel
|
|
|
c21214 |
BuildRequires: chrpath
|
|
|
c21214 |
BuildRequires: enchant-devel
|
|
|
c21214 |
BuildRequires: flex
|
|
|
c21214 |
BuildRequires: fontconfig-devel >= 2.5
|
|
|
c21214 |
BuildRequires: freetype-devel
|
|
|
c21214 |
BuildRequires: geoclue2-devel
|
|
|
c21214 |
BuildRequires: gettext
|
|
|
c21214 |
BuildRequires: gperf
|
|
|
c21214 |
BuildRequires: gstreamer1-devel
|
|
|
c21214 |
BuildRequires: gstreamer1-plugins-base-devel
|
|
|
c21214 |
BuildRequires: gtk2-devel
|
|
|
c21214 |
BuildRequires: gtk3-devel >= 3.6
|
|
|
c21214 |
BuildRequires: gtk-doc
|
|
|
c21214 |
BuildRequires: glib2-devel >= 2.36.0
|
|
|
c21214 |
BuildRequires: harfbuzz-devel
|
|
|
c21214 |
BuildRequires: libsoup-devel >= 2.42.0
|
|
|
c21214 |
BuildRequires: libicu-devel
|
|
|
c21214 |
BuildRequires: libjpeg-devel
|
|
|
c21214 |
BuildRequires: libpng-devel
|
|
|
c21214 |
BuildRequires: libsecret-devel
|
|
|
c21214 |
BuildRequires: libwebp-devel
|
|
|
c21214 |
BuildRequires: libxslt-devel
|
|
|
c21214 |
BuildRequires: libXt-devel
|
|
|
c21214 |
BuildRequires: pcre-devel
|
|
|
c21214 |
BuildRequires: sqlite-devel
|
|
|
c21214 |
BuildRequires: gobject-introspection-devel >= 1.32.0
|
|
|
c21214 |
BuildRequires: perl-Switch
|
|
|
c21214 |
BuildRequires: ruby
|
|
|
c21214 |
BuildRequires: mesa-libGL-devel
|
|
|
c21214 |
%ifarch ppc
|
|
|
c21214 |
BuildRequires: libatomic
|
|
|
c21214 |
%endif
|
|
|
c21214 |
Requires: geoclue2
|
|
|
c21214 |
|
|
|
c21214 |
%description
|
|
|
c21214 |
WebKitGTK+ is the port of the portable web rendering engine WebKit to the
|
|
|
c21214 |
GTK+ platform.
|
|
|
c21214 |
|
|
|
c21214 |
This package contains WebKitGTK+ for GTK+ 3.
|
|
|
c21214 |
|
|
|
c21214 |
%package devel
|
|
|
c21214 |
Summary: Development files for %{name}
|
|
|
c21214 |
Group: Development/Libraries
|
|
|
c21214 |
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
c21214 |
Requires: pkgconfig
|
|
|
c21214 |
Requires: gtk3-devel
|
|
|
c21214 |
|
|
|
c21214 |
%description devel
|
|
|
c21214 |
The %{name}-devel package contains libraries, build data, and header
|
|
|
c21214 |
files for developing applications that use %{name}.
|
|
|
c21214 |
|
|
|
c21214 |
%package doc
|
|
|
c21214 |
Summary: Documentation files for %{name}
|
|
|
c21214 |
Group: Documentation
|
|
|
c21214 |
BuildArch: noarch
|
|
|
c21214 |
Requires: %{name} = %{version}-%{release}
|
|
|
c21214 |
|
|
|
c21214 |
%description doc
|
|
|
c21214 |
This package contains developer documentation for %{name}.
|
|
|
c21214 |
|
|
|
c21214 |
%prep
|
|
|
c21214 |
%setup -qn "webkitgtk-%{version}"
|
|
|
c21214 |
%patch0 -p1 -b .disable_deprecated_get_id
|
|
|
c21214 |
|
|
|
c21214 |
# Fix the permissions
|
|
|
c21214 |
chmod 644 Source/WebCore/html/canvas/CanvasRenderingContext2D.cpp
|
|
|
c21214 |
|
|
|
c21214 |
%build
|
|
|
c21214 |
%global optflags %{optflags} -fno-strict-aliasing
|
|
|
c21214 |
|
|
|
c21214 |
# Use linker flags to reduce memory consumption
|
|
|
c21214 |
%global optflags %{optflags} -Wl,--no-keep-memory -Wl,--reduce-memory-overheads
|
|
|
c21214 |
|
|
|
c21214 |
%ifarch s390 %{arm}
|
|
|
c21214 |
# Decrease debuginfo verbosity to reduce memory consumption even more
|
|
|
c21214 |
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
|
|
|
c21214 |
%endif
|
|
|
c21214 |
|
|
|
c21214 |
%ifarch ppc
|
|
|
c21214 |
# Use linker flag -relax to get WebKit build under ppc(32) with JIT disabled
|
|
|
c21214 |
%global optflags %{optflags} -Wl,-relax -latomic
|
|
|
c21214 |
%endif
|
|
|
c21214 |
|
|
|
c21214 |
%ifarch s390 s390x ppc %{power64} aarch64
|
|
|
c21214 |
%global optflags %{optflags} -DENABLE_YARR_JIT=0
|
|
|
c21214 |
%endif
|
|
|
c21214 |
|
|
|
c21214 |
%configure \
|
|
|
c21214 |
--with-gtk=3.0 \
|
|
|
c21214 |
--disable-webkit2 \
|
|
|
c21214 |
%ifarch s390 s390x ppc %{power64} aarch64
|
|
|
c21214 |
--disable-jit \
|
|
|
c21214 |
%else
|
|
|
c21214 |
--enable-jit \
|
|
|
c21214 |
%endif
|
|
|
c21214 |
--enable-introspection
|
|
|
c21214 |
|
|
|
c21214 |
mkdir -p DerivedSources/webkit
|
|
|
c21214 |
mkdir -p DerivedSources/WebCore
|
|
|
c21214 |
mkdir -p DerivedSources/ANGLE
|
|
|
c21214 |
mkdir -p DerivedSources/WebKit2
|
|
|
c21214 |
mkdir -p DerivedSources/webkitdom/
|
|
|
c21214 |
mkdir -p DerivedSources/InjectedBundle
|
|
|
c21214 |
mkdir -p DerivedSources/Platform
|
|
|
c21214 |
|
|
|
c21214 |
# Disable the parallel compilation as it fails to compile in brew.
|
|
|
c21214 |
# https://bugs.webkit.org/show_bug.cgi?id=34846
|
|
|
c21214 |
# make %{_smp_mflags} V=1
|
|
|
c21214 |
make -j1 V=1
|
|
|
c21214 |
|
|
|
c21214 |
%install
|
|
|
c21214 |
make install DESTDIR=%{buildroot}
|
|
|
c21214 |
|
|
|
c21214 |
install -d -m 755 %{buildroot}%{_libexecdir}/%{name}
|
|
|
c21214 |
install -m 755 Programs/GtkLauncher %{buildroot}%{_libexecdir}/%{name}
|
|
|
c21214 |
|
|
|
c21214 |
# Remove lib64 rpaths
|
|
|
c21214 |
chrpath --delete %{buildroot}%{_bindir}/jsc-3
|
|
|
c21214 |
chrpath --delete %{buildroot}%{_libdir}/libwebkitgtk-3.0.so
|
|
|
c21214 |
chrpath --delete %{buildroot}%{_libexecdir}/%{name}/GtkLauncher
|
|
|
c21214 |
|
|
|
c21214 |
# Remove .la files
|
|
|
c21214 |
find $RPM_BUILD_ROOT%{_libdir} -name "*.la" -delete
|
|
|
c21214 |
|
|
|
c21214 |
%find_lang WebKitGTK-3.0
|
|
|
c21214 |
|
|
|
c21214 |
## Finally, copy over and rename the various files for %%doc inclusion.
|
|
|
c21214 |
%add_to_doc_files Source/WebKit/LICENSE
|
|
|
c21214 |
%add_to_doc_files Source/WebKit/gtk/NEWS
|
|
|
c21214 |
%add_to_doc_files Source/WebCore/icu/LICENSE
|
|
|
c21214 |
%add_to_doc_files Source/WebCore/LICENSE-APPLE
|
|
|
c21214 |
%add_to_doc_files Source/WebCore/LICENSE-LGPL-2
|
|
|
c21214 |
%add_to_doc_files Source/WebCore/LICENSE-LGPL-2.1
|
|
|
c21214 |
%add_to_doc_files Source/JavaScriptCore/COPYING.LIB
|
|
|
c21214 |
%add_to_doc_files Source/JavaScriptCore/THANKS
|
|
|
c21214 |
%add_to_doc_files Source/JavaScriptCore/AUTHORS
|
|
|
c21214 |
%add_to_doc_files Source/JavaScriptCore/icu/README
|
|
|
c21214 |
%add_to_doc_files Source/JavaScriptCore/icu/LICENSE
|
|
|
c21214 |
|
|
|
c21214 |
%post -p /sbin/ldconfig
|
|
|
c21214 |
%postun -p /sbin/ldconfig
|
|
|
c21214 |
|
|
|
c21214 |
%files -f WebKitGTK-3.0.lang
|
|
|
c21214 |
%doc %{_pkgdocdir}/
|
|
|
c21214 |
%{_libdir}/libwebkitgtk-3.0.so.*
|
|
|
c21214 |
%{_libdir}/libjavascriptcoregtk-3.0.so.*
|
|
|
c21214 |
%{_libdir}/girepository-1.0/WebKit-3.0.typelib
|
|
|
c21214 |
%{_libdir}/girepository-1.0/JavaScriptCore-3.0.typelib
|
|
|
c21214 |
%dir %{_libexecdir}/%{name}
|
|
|
c21214 |
%{_libexecdir}/%{name}/GtkLauncher
|
|
|
c21214 |
%{_datadir}/webkitgtk-3.0
|
|
|
c21214 |
|
|
|
c21214 |
%files devel
|
|
|
c21214 |
%{_bindir}/jsc-3
|
|
|
c21214 |
%{_includedir}/webkitgtk-3.0
|
|
|
c21214 |
%{_libdir}/libwebkitgtk-3.0.so
|
|
|
c21214 |
%{_libdir}/libjavascriptcoregtk-3.0.so
|
|
|
c21214 |
%{_libdir}/pkgconfig/webkitgtk-3.0.pc
|
|
|
c21214 |
%{_libdir}/pkgconfig/javascriptcoregtk-3.0.pc
|
|
|
c21214 |
%{_datadir}/gir-1.0/WebKit-3.0.gir
|
|
|
c21214 |
%{_datadir}/gir-1.0/JavaScriptCore-3.0.gir
|
|
|
c21214 |
|
|
|
c21214 |
%files doc
|
|
|
c21214 |
%dir %{_datadir}/gtk-doc
|
|
|
c21214 |
%dir %{_datadir}/gtk-doc/html
|
|
|
c21214 |
%{_datadir}/gtk-doc/html/webkitgtk
|
|
|
c21214 |
%{_datadir}/gtk-doc/html/webkitdomgtk
|
|
|
c21214 |
|
|
|
c21214 |
%changelog
|
|
|
c21214 |
* Mon Feb 27 2017 Tomas Popela <tpopela@redhat.com> - 2.4.11-2
|
|
|
c21214 |
- Don't build WebKit2 as it's build in webkitgtk4 package
|
|
|
c21214 |
- Resolves: rhbz#1383614
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Feb 13 2017 Tomas Popela <tpopela@redhat.com> - 2.4.11-1
|
|
|
c21214 |
- Update to 2.4.11
|
|
|
c21214 |
- Resolves: rhbz#1326714
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Jun 23 2016 Tomas Popela <tpopela@redhat.com> - 2.4.9-6
|
|
|
c21214 |
- Update the translations
|
|
|
c21214 |
- Resolves: rhbz#1302692
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Sep 14 2015 Tomas Popela <tpopela@redhat.com> - 2.4.9-5
|
|
|
c21214 |
- Initialize string in SQLiteStatement before using it
|
|
|
c21214 |
- Resolves: rhbz#1259283
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Jun 22 2015 Tomas Popela <tpopela@redhat.com> - 2.4.9-4
|
|
|
c21214 |
- Remove deprecation from webkit_dom_html_element_get/set_id
|
|
|
c21214 |
- Resolves: rhbz#1174556
|
|
|
c21214 |
|
|
|
c21214 |
* Fri May 29 2015 Tomas Popela <tpopela@redhat.com> - 2.4.9-3
|
|
|
c21214 |
- Fix some of rpmdiff warnings
|
|
|
c21214 |
- Resolves: rhbz#1174556
|
|
|
c21214 |
|
|
|
c21214 |
* Thu May 21 2015 Tomas Popela <tpopela@redhat.com> - 2.4.9-2
|
|
|
c21214 |
- Compile with -fno-strict-aliasing
|
|
|
c21214 |
- Resolves: rhbz#1174556
|
|
|
c21214 |
- Update translations
|
|
|
c21214 |
- Resolves: rhbz#1223643
|
|
|
c21214 |
|
|
|
c21214 |
* Wed May 20 2015 Tomas Popela <tpopela@redhat.com> - 2.4.9-1
|
|
|
c21214 |
- Update to 2.4.9
|
|
|
c21214 |
- Resolves: rhbz#1174556
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Aug 20 2014 Dan Horák <dhorak@redhat.com> - 2.0.4-9
|
|
|
c21214 |
- refresh ppc64le patch, use %%{power64} for conditions in spec
|
|
|
c21214 |
- Resolves: rhbz#1125710
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Aug 04 2014 Tomas Popela <tpopela@redhat.com> - 2.0.4-8
|
|
|
c21214 |
- Add support for ppc64le
|
|
|
c21214 |
- Resolves: rhbz#1125710
|
|
|
c21214 |
|
|
|
c21214 |
* Mon May 12 2014 Tomas Popela <tpopela@redhat.com> - 2.0.4-7
|
|
|
c21214 |
- Fix memory align in JSC for ppc64
|
|
|
c21214 |
- Fix CLoop for ppc64 and s390x
|
|
|
c21214 |
- Resolves: rhbz#1019801
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Jan 28 2014 Tomas Popela <tpopela@redhat.com> - 2.0.4-6
|
|
|
c21214 |
- Enable higher compression for output rpms
|
|
|
c21214 |
- Resolves: rhbz#1039590
|
|
|
c21214 |
- Avoid video player to set system volume to 100%
|
|
|
c21214 |
- Resolves: rhbz#1029783
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Jan 28 2014 Tomas Popela <tpopela@redhat.com> - 2.0.4-5
|
|
|
c21214 |
- Update translations
|
|
|
c21214 |
- Resolves: rhbz#1030388
|
|
|
c21214 |
|
|
|
c21214 |
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.0.4-4
|
|
|
c21214 |
- Mass rebuild 2014-01-24
|
|
|
c21214 |
|
|
|
c21214 |
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.0.4-3
|
|
|
c21214 |
- Mass rebuild 2013-12-27
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Nov 5 2013 Tomas Popela <tpopela@redhat.com> - 2.0.4-2
|
|
|
c21214 |
- Let webkitgtk3 compile on aarch64
|
|
|
c21214 |
- Resolves: rhbz#1026479
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Oct 2 2013 Tomas Popela <tpopela@redhat.com> - 2.0.4-1
|
|
|
c21214 |
- Update to 2.0.4
|
|
|
c21214 |
- Resolves: rhbz#1013726
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Jun 11 2013 Kalev Lember <kalevlember@gmail.com> - 2.0.3-1
|
|
|
c21214 |
- Update to 2.0.3
|
|
|
c21214 |
|
|
|
c21214 |
* Fri Jun 07 2013 Kalev Lember <kalevlember@gmail.com> - 2.0.2-3
|
|
|
c21214 |
- Link with harfbuzz-icu (split into separate library in harfbuzz 0.9.18)
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Jun 03 2013 Kalev Lember <kalevlember@gmail.com> - 2.0.2-2
|
|
|
c21214 |
- Remove glib-compile-schemas scriptlets: the schemas are no longer installed
|
|
|
c21214 |
- Add ldconfig calls to the libwebkit2gtk subpackage
|
|
|
c21214 |
- Remove rpath from MiniBrowser
|
|
|
c21214 |
- Re-enable full debuginfo (#861452)
|
|
|
c21214 |
|
|
|
c21214 |
* Mon May 13 2013 Tomas Popela <tpopela@redhat.com> - 2.0.2-1
|
|
|
c21214 |
- Update to 2.0.2
|
|
|
c21214 |
|
|
|
c21214 |
* Mon May 6 2013 Matthias Clasen <mclasen@redhat.com> - 2.0.1-2
|
|
|
c21214 |
- Split libwebkit2gtk off into a subpackage to avoid
|
|
|
c21214 |
pulling this 35M behemoth of a library onto the livecd
|
|
|
c21214 |
needlessly
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Apr 16 2013 Tomas Popela <tpopela@redhat.com> - 2.0.1-1
|
|
|
c21214 |
- Update to 2.0.1
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Apr 11 2013 Tomas Popela <tpopela@redhat.com> - 2.0.0-3
|
|
|
c21214 |
- Add fix for broken GObject casting
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Apr 3 2013 Tomas Popela <tpopela@redhat.com> - 2.0.0-2
|
|
|
c21214 |
- Apply double2intsPPC32.patch also on s390
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Mar 27 2013 Tomas Popela <tpopela@redhat.com> - 2.0.0-1
|
|
|
c21214 |
- Update to 2.0.0
|
|
|
c21214 |
- Update BR versions
|
|
|
c21214 |
- Drop unused patches
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Mar 20 2013 Kalev Lember <kalevlember@gmail.com> - 1.11.92-1
|
|
|
c21214 |
- Update to 1.11.92
|
|
|
c21214 |
|
|
|
c21214 |
* Fri Mar 08 2013 Tomas Popela <tpopela@redhat.com> 1.11.91-1
|
|
|
c21214 |
- Update to 1.11.91
|
|
|
c21214 |
- Fix for RH bug #915990 - Seed segfaults in JSC::LLInt::CLoop::execute()
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Feb 25 2013 Tomas Popela <tpopela@redhat.com> 1.11.90-3
|
|
|
c21214 |
- Fix for not building on ppc32 with JIT disabled
|
|
|
c21214 |
|
|
|
c21214 |
* Sat Feb 23 2013 Kevin Fenzi <kevin@scrye.com> 1.11.90-2
|
|
|
c21214 |
- Add webkit2 MiniBrowser
|
|
|
c21214 |
|
|
|
c21214 |
* Fri Feb 22 2013 Kalev Lember <kalevlember@gmail.com> - 1.11.90-1
|
|
|
c21214 |
- Update to 1.11.90
|
|
|
c21214 |
|
|
|
c21214 |
* Fri Feb 22 2013 Tomas Popela <tpopela@redhat.com> 1.11.5-5
|
|
|
c21214 |
- Fix for not building on ppc32 with JIT disabled
|
|
|
c21214 |
- BR libatomic (needs gcc >= 4.8.0) for ppc32
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Feb 18 2013 Tomas Popela <tpopela@redhat.com> 1.11.5-4
|
|
|
c21214 |
- Backported fixes for not building with disabled JIT
|
|
|
c21214 |
|
|
|
c21214 |
* Sat Feb 16 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.11.5-3
|
|
|
c21214 |
- Re-enable JIT on ARM (hopefully the gmail crash is fixed)
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Feb 14 2013 Tomas Popela <tpopela@redhat.com> 1.11.5-2
|
|
|
c21214 |
- Add upstream patch for RH bug #908143 - AccessibilityTableRow::parentTable crash
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Feb 06 2013 Kalev Lember <kalevlember@gmail.com> - 1.11.5-1
|
|
|
c21214 |
- Update to 1.11.5
|
|
|
c21214 |
- Drop upstreamed patches
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Jan 30 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.11.4-5
|
|
|
c21214 |
- Rebuild against new icu again
|
|
|
c21214 |
|
|
|
c21214 |
* Sat Jan 26 2013 Kalev Lember <kalevlember@gmail.com> - 1.11.4-4
|
|
|
c21214 |
- Rebuilt for icu 50
|
|
|
c21214 |
|
|
|
c21214 |
* Fri Jan 25 2013 Kalev Lember <kalevlember@gmail.com> - 1.11.4-3
|
|
|
c21214 |
- Backport a fix for a crash in AccessibilityTableCell::parentTable()
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Jan 21 2013 Adam Tkac <atkac redhat com> - 1.11.4-2
|
|
|
c21214 |
- rebuild due to "jpeg8-ABI" feature drop
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Jan 16 2013 Kalev Lember <kalevlember@gmail.com> - 1.11.4-1
|
|
|
c21214 |
- Update to 1.11.4
|
|
|
c21214 |
- Remove conditional pango deps; the build now uses harfbuzz directly
|
|
|
c21214 |
- BR libwebp-devel
|
|
|
c21214 |
- Drop upstreamed librt linking patch
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Dec 18 2012 Dan Horák <dan[at]danny.cz> - 1.11.2-3
|
|
|
c21214 |
- fix 32-bit non-JIT arches
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Dec 18 2012 Dan Horák <dan[at]danny.cz> - 1.11.2-2
|
|
|
c21214 |
- fix build for non-JIT arches
|
|
|
c21214 |
|
|
|
c21214 |
* Sat Nov 24 2012 Kalev Lember <kalevlember@gmail.com> - 1.11.2-1
|
|
|
c21214 |
- Update to 1.11.2
|
|
|
c21214 |
- Add a patch to explicitly link with librt
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Oct 17 2012 Kalev Lember <kalevlember@gmail.com> - 1.10.1-1
|
|
|
c21214 |
- Update to 1.10.1
|
|
|
c21214 |
- Enable the parallel build
|
|
|
c21214 |
- Drop the upstreamed Geode-compatibility patch
|
|
|
c21214 |
|
|
|
c21214 |
* Fri Oct 5 2012 Daniel Drake <dsd@laptop.org> - 1.10.0-2
|
|
|
c21214 |
- Restore compatibility with AMD Geode processors
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Sep 24 2012 Kalev Lember <kalevlember@gmail.com> - 1.10.0-1
|
|
|
c21214 |
- Update to 1.10.0
|
|
|
c21214 |
- Adjust for webkit -> webkitgtk upstream tarball rename
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Sep 19 2012 Kalev Lember <kalevlember@gmail.com> - 1.9.92-2
|
|
|
c21214 |
- Build with gstreamer1
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Sep 19 2012 Kalev Lember <kalevlember@gmail.com> - 1.9.92-1
|
|
|
c21214 |
- Update to 1.9.92
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Sep 05 2012 Kalev Lember <kalevlember@gmail.com> - 1.9.91-1
|
|
|
c21214 |
- Update to 1.9.91
|
|
|
c21214 |
|
|
|
c21214 |
* Sun Sep 2 2012 Matthias Clasen <mclasen@redhat.com> - 1.9.90-2
|
|
|
c21214 |
- Rebuild
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Aug 29 2012 Daniel Drake <dsd@laptop.org> - 1.9.90-1
|
|
|
c21214 |
- Update to latest release (#850520)
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Aug 9 2012 Daniel Drake <dsd@laptop.org> - 1.9.5-2
|
|
|
c21214 |
- Add upstream patch to fix build without JIT (#843428)
|
|
|
c21214 |
- Add upstream patch to fix build with latest gcc/bison
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Jul 18 2012 Kalev Lember <kalevlember@gmail.com> - 1.9.5-1
|
|
|
c21214 |
- Update to 1.9.5
|
|
|
c21214 |
- Build with -g1 to avoid running into 4 GB ar format limit
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Jul 11 2012 Ville Skyttä <ville.skytta@iki.fi> - 1.9.4-3
|
|
|
c21214 |
- Fix %%post scriptlet dependencies.
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Jul 04 2012 Dan Horák <dan[at]danny.cz> - 1.9.4-2
|
|
|
c21214 |
- apply workaround for s390x until #835957 is resolved (static library archive > 4 GB)
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Jun 28 2012 Kalev Lember <kalevlember@gmail.com> - 1.9.4-1
|
|
|
c21214 |
- Update to 1.9.4
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Jun 07 2012 Kalev Lember <kalevlember@gmail.com> - 1.9.3-1
|
|
|
c21214 |
- Update to 1.9.3
|
|
|
c21214 |
- Build webkit2gtk and BR gtk2-devel for its plugin process
|
|
|
c21214 |
|
|
|
c21214 |
* Tue May 15 2012 Karsten Hopp <karsten@redhat.com> 1.8.1-3
|
|
|
c21214 |
- disable JIT on PPC(64) as the autodetection enables it even if not supported
|
|
|
c21214 |
|
|
|
c21214 |
* Mon May 14 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.8.1-2
|
|
|
c21214 |
- Explicitly disable JIT on ARM as it's not currently stable with JS heavy pages
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Apr 24 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.1-1
|
|
|
c21214 |
- Update to 1.8.1
|
|
|
c21214 |
- Dropped the backported patches
|
|
|
c21214 |
- Remove lib64 rpaths with chrpath
|
|
|
c21214 |
- Update gsettings rpm scriptlets
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Apr 18 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.8.0-3
|
|
|
c21214 |
- Add upstream patch to fix crash when SSE2 isn't present
|
|
|
c21214 |
- Add upstream patch to flickering when some widgets are drawn
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Apr 09 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.0-2
|
|
|
c21214 |
- Finish splitting out a -doc subpackage (#808917)
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Mar 28 2012 Richard Hughes <rhughes@redhat.com> - 1.8.0-1
|
|
|
c21214 |
- Update to 1.8.0.
|
|
|
c21214 |
|
|
|
c21214 |
* Sat Mar 24 2012 Dan Horák <dan[at]danny.cz> - 1.7.92-2
|
|
|
c21214 |
- add ppc to low mem arches
|
|
|
c21214 |
- decrease debuginfo verbosity on s390 to save memory
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Mar 21 2012 Kalev Lember <kalevlember@gmail.com> - 1.7.92-1
|
|
|
c21214 |
- Update to 1.7.92
|
|
|
c21214 |
- Don't pass --enable-geolocation to configure; it's now enabled by default
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Mar 15 2012 Karsten Hopp <karsten@redhat.com> 1.7.91-2
|
|
|
c21214 |
- disable jit on ppc(64)
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Mar 8 2012 Matthias Clasen <mclasen@redhat.com> - 1.7.91-1
|
|
|
c21214 |
- Update to 1.7.91
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Feb 28 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7.5-3
|
|
|
c21214 |
- Add ARM to and optimise compile flags for low mem arches
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Feb 20 2012 Dan Horák <dan[at]danny.cz> - 1.7.5-2
|
|
|
c21214 |
- don't enable jit on s390(x)
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Feb 7 2012 Matthias Clasen <mclasen@redhat.com> - 1.7.5-1
|
|
|
c21214 |
- Update to 1.7.5
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Jan 17 2012 Matthias Clasen <mclasen@redhat.com> - 1.7.4-1
|
|
|
c21214 |
- Update to 1.7.4
|
|
|
c21214 |
|
|
|
c21214 |
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.3-2
|
|
|
c21214 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Dec 20 2011 Matthias Clasen <mclasen@redhat.com> - 1.7.3-1
|
|
|
c21214 |
- Update to 1.7.3
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Nov 24 2011 Tomas Bzatek <tbzatek@redhat.com> - 1.7.2-1
|
|
|
c21214 |
- Update to 1.7.2
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Nov 7 2011 Matthias Clasen <mclasen@redhat.com> 1.7.1-2
|
|
|
c21214 |
- Rebuild against new libpng
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Nov 2 2011 Matthias Clasen <mclasen@redhat.com> 1.7.1-1
|
|
|
c21214 |
- Update to 1.7.1
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Oct 12 2011 Dan Horák <dan[at]danny.cz> 1.6.1-2
|
|
|
c21214 |
- fix build on s390(x)
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Sep 28 2011 Ray Strode <rstrode@redhat.com> 1.6.1-1
|
|
|
c21214 |
- Update to 1.6.1
|
|
|
c21214 |
|
|
|
c21214 |
* Fri Sep 09 2011 Caolán McNamara <caolanm@redhat.com> - 1.5.1-2
|
|
|
c21214 |
- rebuild for icu 4.8.1
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Jun 16 2011 Tomas Bzatek <tbzatek@redhat.com> - 1.5.1-1
|
|
|
c21214 |
- Update to 1.5.1
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Jun 14 2011 Bastien Nocera <bnocera@redhat.com> 1.4.0-3
|
|
|
c21214 |
- Rebuild against newer GTK+
|
|
|
c21214 |
|
|
|
c21214 |
* Wed May 11 2011 Cosimo Cecchi <cosimoc@redhat.com> 1.4.0-2
|
|
|
c21214 |
- Add a doc package for gtk-doc documentation
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> 1.4.0-1
|
|
|
c21214 |
- Update to 1.4.0
|
|
|
c21214 |
|
|
|
c21214 |
* Tue Mar 22 2011 Matthias Clasen <mclasen@redhat.com> 1.3.13-1
|
|
|
c21214 |
- Update to 1.3.13
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> 1.3.10-3
|
|
|
c21214 |
- Rebuild against newer gtk
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.11-2
|
|
|
c21214 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> 1.3.11-1
|
|
|
c21214 |
- 1.3.11
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> 1.3.10-2
|
|
|
c21214 |
- Rebuild against newer gtk
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> 1.3.10-1
|
|
|
c21214 |
- Update to 1.3.10
|
|
|
c21214 |
|
|
|
c21214 |
* Sun Jan 9 2011 Matthias Clasen <mclasen@redhat.com> 1.3.9-1
|
|
|
c21214 |
- Update to 1.3.9
|
|
|
c21214 |
|
|
|
c21214 |
* Fri Dec 3 2010 Matthias Clasen <mclasen@redhat.com> 1.3.7-2
|
|
|
c21214 |
- Rebuild against new gtk
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Dec 1 2010 Matthias Clasen <mclasen@redhat.com> 1.3.7-1
|
|
|
c21214 |
- Update to 1.3.7
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> 1.3.6-1
|
|
|
c21214 |
- Update to 1.3.6
|
|
|
c21214 |
- Disable the s390 patch again :-( Upstream it, maybe ?
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Nov 11 2010 Dan Horák <dan[at]danny.cz> - 1.3.5-2
|
|
|
c21214 |
- Updated and re-enabled the s390 patch
|
|
|
c21214 |
|
|
|
c21214 |
* Mon Nov 1 2010 Matthias Clasen <mclasen@redhat.com> 1.3.5-1
|
|
|
c21214 |
- Update to 1.3.5
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Sep 29 2010 jkeating - 1.3.4-3
|
|
|
c21214 |
- Rebuilt for gcc bug 634757
|
|
|
c21214 |
|
|
|
c21214 |
* Fri Sep 24 2010 Matthias Clasen <mclasen@redhat.com> 1.3.4-2
|
|
|
c21214 |
- Enable JIT/patch for execmem
|
|
|
c21214 |
- Move inspector to the main package
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Sep 23 2010 Matthias Clasen <mclasen@redhat.com> 1.3.4-1
|
|
|
c21214 |
- Update to 1.3.4
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Aug 25 2010 Dan Horák <dan[at]danny.cz> - 1.3.3-4
|
|
|
c21214 |
- Do not generate debug information to prevent linker memory exhaustion on s390 with its 2 GB address space
|
|
|
c21214 |
|
|
|
c21214 |
* Wed Jul 21 2010 Dan Horák <dan[at]danny.cz> - 1.3.3-3
|
|
|
c21214 |
- Fix build on s390(x)
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Jul 15 2010 Colin Walters <walters@verbum.org> - 1.3.3-2
|
|
|
c21214 |
- Rebuild with new gobject-introspection
|
|
|
c21214 |
|
|
|
c21214 |
* Fri Jul 9 2010 Matthias Clasen <mclasen@redhat.com> 1.3.2-2
|
|
|
c21214 |
- Fix conflicting gettext domain with webkitgtk
|
|
|
c21214 |
- Drop the -doc subpackage
|
|
|
c21214 |
|
|
|
c21214 |
* Thu Jul 1 2010 Matthias Clasen <mclasen@redhat.com> 1.3.2-1
|
|
|
c21214 |
- Initial packaging
|