guibuilder_pel7x64builder0
6 years ago
23 changed files with 2072 additions and 108 deletions
@ -0,0 +1,30 @@
@@ -0,0 +1,30 @@
|
||||
diff -up webkitgtk-2.14.7/Source/JavaScriptCore/bytecode/CodeBlock.cpp.b132333 webkitgtk-2.14.7/Source/JavaScriptCore/bytecode/CodeBlock.cpp |
||||
--- webkitgtk-2.14.7/Source/JavaScriptCore/bytecode/CodeBlock.cpp.b132333 2017-02-07 09:05:07.000000000 +0100 |
||||
+++ webkitgtk-2.14.7/Source/JavaScriptCore/bytecode/CodeBlock.cpp 2017-06-16 10:34:57.859748036 +0200 |
||||
@@ -2186,7 +2186,12 @@ void CodeBlock::finishCreation(VM& vm, S |
||||
instructions[i + 5].u.watchpointSet = op.watchpointSet; |
||||
else if (op.structure) |
||||
instructions[i + 5].u.structure.set(vm, this, op.structure); |
||||
- instructions[i + 6].u.pointer = reinterpret_cast<void*>(op.operand); |
||||
+ |
||||
+ if (op.type == ClosureVar || op.type == ClosureVarWithVarInjectionChecks || op.type == GlobalProperty || op.type == GlobalPropertyWithVarInjectionChecks || op.type == ModuleVar) |
||||
+ instructions[i + 6].u.operand = op.operand; |
||||
+ else |
||||
+ instructions[i + 6].u.pointer = reinterpret_cast<void*>(op.operand); |
||||
+ |
||||
break; |
||||
} |
||||
|
||||
@@ -2222,7 +2227,11 @@ void CodeBlock::finishCreation(VM& vm, S |
||||
op.watchpointSet->invalidate(vm, PutToScopeFireDetail(this, ident)); |
||||
} else if (op.structure) |
||||
instructions[i + 5].u.structure.set(vm, this, op.structure); |
||||
- instructions[i + 6].u.pointer = reinterpret_cast<void*>(op.operand); |
||||
+ |
||||
+ if (op.type == ClosureVar || op.type == ClosureVarWithVarInjectionChecks || op.type == GlobalProperty || op.type == GlobalPropertyWithVarInjectionChecks || op.type == ModuleVar) |
||||
+ instructions[i + 6].u.operand = op.operand; |
||||
+ else |
||||
+ instructions[i + 6].u.pointer = reinterpret_cast<void*>(op.operand); |
||||
|
||||
break; |
||||
} |
@ -0,0 +1,24 @@
@@ -0,0 +1,24 @@
|
||||
diff -up webkitgtk-2.17.92/Source/WebKit/NetworkProcess/EntryPoint/unix/NetworkProcessMain.cpp.fedora-crypto-policy webkitgtk-2.17.92/Source/WebKit/NetworkProcess/EntryPoint/unix/NetworkProcessMain.cpp |
||||
--- webkitgtk-2.17.92/Source/WebKit/NetworkProcess/EntryPoint/unix/NetworkProcessMain.cpp.fedora-crypto-policy 2017-09-05 13:39:59.294426661 +0200 |
||||
+++ webkitgtk-2.17.92/Source/WebKit/NetworkProcess/EntryPoint/unix/NetworkProcessMain.cpp 2017-09-05 13:40:09.144389997 +0200 |
||||
@@ -43,7 +43,7 @@ int main(int argc, char** argv) |
||||
// overwrite this priority string if it's already set by the user. |
||||
// https://bugzilla.gnome.org/show_bug.cgi?id=738633 |
||||
// WARNING: This needs to be KEPT IN SYNC with WebProcessMain.cpp. |
||||
- setenv("G_TLS_GNUTLS_PRIORITY", "NORMAL:%COMPAT:!VERS-SSL3.0:!ARCFOUR-128", 0); |
||||
+ setenv("G_TLS_GNUTLS_PRIORITY", "@SYSTEM:%COMPAT:!VERS-SSL3.0:!ARCFOUR-128", 0); |
||||
|
||||
#if USE(GCRYPT) |
||||
PAL::GCrypt::initialize(); |
||||
diff -up webkitgtk-2.17.92/Source/WebKit/WebProcess/EntryPoint/unix/WebProcessMain.cpp.fedora-crypto-policy webkitgtk-2.17.92/Source/WebKit/WebProcess/EntryPoint/unix/WebProcessMain.cpp |
||||
--- webkitgtk-2.17.92/Source/WebKit/WebProcess/EntryPoint/unix/WebProcessMain.cpp.fedora-crypto-policy 2017-09-05 13:40:28.558317735 +0200 |
||||
+++ webkitgtk-2.17.92/Source/WebKit/WebProcess/EntryPoint/unix/WebProcessMain.cpp 2017-09-05 13:40:56.057215378 +0200 |
||||
@@ -43,7 +43,7 @@ int main(int argc, char** argv) |
||||
// overwrite this priority string if it's already set by the user. |
||||
// https://bugzilla.gnome.org/show_bug.cgi?id=738633 |
||||
// WARNING: This needs to be KEPT IN SYNC with WebProcessMain.cpp. |
||||
- setenv("G_TLS_GNUTLS_PRIORITY", "NORMAL:%COMPAT:!VERS-SSL3.0:!ARCFOUR-128", 0); |
||||
+ setenv("G_TLS_GNUTLS_PRIORITY", "@SYSTEM:%COMPAT:!VERS-SSL3.0:!ARCFOUR-128", 0); |
||||
|
||||
#if USE(GCRYPT) |
||||
PAL::GCrypt::initialize(); |
@ -0,0 +1,22 @@
@@ -0,0 +1,22 @@
|
||||
From 858a9bdefa09b13721738a3f471bede13e91c5b8 Mon Sep 17 00:00:00 2001 |
||||
From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= <besser82@fedoraproject.org> |
||||
Date: Tue, 13 Jun 2017 15:25:34 +0200 |
||||
Subject: [PATCH] Properly bump version in setup.py |
||||
|
||||
--- |
||||
setup.py | 2 +- |
||||
1 file changed, 1 insertion(+), 1 deletion(-) |
||||
|
||||
diff --git a/setup.py b/setup.py |
||||
index 75c3970..339d090 100644 |
||||
--- a/setup.py |
||||
+++ b/setup.py |
||||
@@ -3,7 +3,7 @@ |
||||
from distutils.core import setup |
||||
|
||||
setup( name = "python-xapp", |
||||
- version = "1.0.0", |
||||
+ version = "1.0.1", |
||||
description = "Python Xapp Library.", |
||||
maintainer = "Linux Mint", |
||||
maintainer_email = "root@linuxmint.com", |
@ -0,0 +1,13 @@
@@ -0,0 +1,13 @@
|
||||
diff -up webkitglib-2.14.1/Source/WebCore/platform/glib/UserAgentGLib.cpp.orig webkitglib-2.14.1/Source/WebCore/platform/glib/UserAgentGLib.cpp |
||||
--- webkitglib-2.14.1/Source/WebCore/platform/glib/UserAgentGLib.cpp.orig 2016-10-12 07:59:25.670057792 +0200 |
||||
+++ webkitglib-2.14.1/Source/WebCore/platform/glib/UserAgentGLib.cpp 2016-10-12 08:01:06.251878684 +0200 |
||||
@@ -85,6 +85,9 @@ static String buildUserAgentString(const UserAgentQuirks& quirks) |
||||
else { |
||||
uaString.append(platformForUAString()); |
||||
uaString.appendLiteral("; "); |
||||
+#if defined(USER_AGENT_GTK_DISTRIBUTOR_NAME) |
||||
+ uaString.appendLiteral(USER_AGENT_GTK_DISTRIBUTOR_NAME "; "); |
||||
+#endif |
||||
uaString.append(platformVersionForUAString()); |
||||
} |
||||
|
@ -0,0 +1,38 @@
@@ -0,0 +1,38 @@
|
||||
diff -up webkitgtk-2.4.9/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.cpp.disable_deprecated_get_set_id webkitgtk-2.4.9/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.cpp |
||||
--- webkitgtk-2.4.9/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.cpp.disable_deprecated_get_set_id 2015-06-22 14:33:06.800967146 +0200 |
||||
+++ webkitgtk-2.4.9/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.cpp 2015-06-22 14:35:19.296072294 +0200 |
||||
@@ -39,13 +39,11 @@ WebKitDOMBlob* webkit_dom_blob_webkit_sl |
||||
|
||||
gchar* webkit_dom_html_element_get_id(WebKitDOMHTMLElement* element) |
||||
{ |
||||
- g_warning("The get_id method on WebKitDOMHTMLElement is deprecated. Use the one in WebKitDOMElement instead."); |
||||
return webkit_dom_element_get_id(WEBKIT_DOM_ELEMENT(element)); |
||||
} |
||||
|
||||
void webkit_dom_html_element_set_id(WebKitDOMHTMLElement* element, const gchar* value) |
||||
{ |
||||
- g_warning("The set_id method on WebKitDOMHTMLElement is deprecated. Use the one in WebKitDOMElement instead."); |
||||
webkit_dom_element_set_id(WEBKIT_DOM_ELEMENT(element), value); |
||||
} |
||||
|
||||
diff -up webkitgtk-2.4.9/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.h.disable_deprecated_get_set_id webkitgtk-2.4.9/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.h |
||||
--- webkitgtk-2.4.9/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.h.disable_deprecated_get_set_id 2015-06-22 14:33:12.813062669 +0200 |
||||
+++ webkitgtk-2.4.9/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.h 2015-06-22 14:34:00.548821118 +0200 |
||||
@@ -49,7 +49,7 @@ webkit_dom_blob_webkit_slice(WebKitDOMBl |
||||
* |
||||
* Deprecated: 2.2: Use webkit_dom_element_get_id() instead. |
||||
*/ |
||||
-WEBKIT_DEPRECATED_FOR(webkit_dom_element_get_id) gchar* |
||||
+WEBKIT_API gchar* |
||||
webkit_dom_html_element_get_id(WebKitDOMHTMLElement* self); |
||||
|
||||
/** |
||||
@@ -59,7 +59,7 @@ webkit_dom_html_element_get_id(WebKitDOM |
||||
* |
||||
* Deprecated: 2.2: Use webkit_dom_element_set_id() instead. |
||||
*/ |
||||
-WEBKIT_DEPRECATED_FOR(webkit_dom_element_set_id) void |
||||
+WEBKIT_API void |
||||
webkit_dom_html_element_set_id(WebKitDOMHTMLElement* self, const gchar* value); |
||||
|
||||
/** |
@ -0,0 +1,436 @@
@@ -0,0 +1,436 @@
|
||||
Name: caribou |
||||
Version: 0.4.21 |
||||
Release: 9%{?dist} |
||||
Summary: A simplified in-place on-screen keyboard |
||||
License: LGPLv2+ |
||||
URL: https://wiki.gnome.org/Projects/Caribou |
||||
Source0: http://download.gnome.org/sources/caribou/0.4/caribou-%{version}.tar.xz |
||||
Patch1: caribou-0.4.20-fix-python-exec.patch |
||||
Patch2: caribou-0.4.20-multilib.patch |
||||
# caribou isn't needed in gnome-shell so don't start there |
||||
Patch3: change_autostart_cinnamon.patch |
||||
|
||||
BuildRequires: gtk2-devel |
||||
BuildRequires: gtk3-devel |
||||
BuildRequires: pygobject3-devel |
||||
BuildRequires: intltool |
||||
BuildRequires: gnome-doc-utils |
||||
BuildRequires: desktop-file-utils |
||||
BuildRequires: gettext |
||||
BuildRequires: clutter-devel |
||||
BuildRequires: vala-devel |
||||
BuildRequires: libXtst-devel |
||||
BuildRequires: libxklavier-devel |
||||
BuildRequires: libgee-devel |
||||
BuildRequires: gobject-introspection-devel |
||||
BuildRequires: at-spi2-core-devel |
||||
|
||||
#Requires: python2-%{name} = %{version}-%{release} |
||||
Requires: python3-%{name} = %{version}-%{release} |
||||
Requires: gobject-introspection |
||||
Requires: caribou-gtk2-module |
||||
Requires: caribou-gtk3-module |
||||
|
||||
#Following is needed as package moved from noarch to arch |
||||
Obsoletes: caribou < 0.4.1-3 |
||||
# Obsolete retired 'gok' to make sure it gets removed with distro upgrade |
||||
Obsoletes: gok < 2.30.1-6 |
||||
|
||||
%description |
||||
Caribou is a text entry application that currently manifests itself as |
||||
a simplified in-place on-screen keyboard. |
||||
|
||||
%package devel |
||||
Summary: Development files for %{name} |
||||
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||
# Obsolete retired 'gok' to make sure it gets removed with distro upgrade |
||||
Obsoletes: gok-devel < 2.30.1-6 |
||||
|
||||
%description devel |
||||
The %{name}-devel package contains libraries and header files for |
||||
developing applications that use %{name}. |
||||
|
||||
%package -n python2-caribou |
||||
Summary: Keyboard UI for %{name} |
||||
BuildRequires: python2-devel |
||||
Requires: pygobject3 |
||||
Requires: pyatspi |
||||
Requires: %{name} = %{version}-%{release} |
||||
Obsoletes: caribou < 0.4.1-3 |
||||
Obsoletes: python-caribou < 0.4.20-2 |
||||
Provides: python-caribou = %{version} |
||||
BuildArch: noarch |
||||
|
||||
%description -n python2-caribou |
||||
This package contains caribou python GUI |
||||
|
||||
%package -n python3-caribou |
||||
Summary: Keyboard UI for %{name} |
||||
BuildRequires: python3-devel |
||||
BuildRequires: python3-gobject |
||||
Requires: python3-gobject |
||||
Requires: python3-pyatspi |
||||
Requires: %{name} = %{version}-%{release} |
||||
Obsoletes: caribou < 0.4.1-3 |
||||
BuildArch: noarch |
||||
|
||||
%description -n python3-caribou |
||||
This package contains caribou python3 GUI |
||||
|
||||
%package gtk2-module |
||||
Summary: Gtk2 module for %{name} |
||||
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||
Obsoletes: caribou < 0.4.1-3 |
||||
|
||||
%description gtk2-module |
||||
This package contains caribou module for gtk2 applications. |
||||
|
||||
%package gtk3-module |
||||
Summary: Gtk3 module for %{name} |
||||
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||
Obsoletes: caribou < 0.4.1-3 |
||||
|
||||
%description gtk3-module |
||||
This package contains caribou module for gtk3 applications. |
||||
|
||||
%package antler |
||||
Summary: Keyboard implementation for %{name} |
||||
#Requires: python2-%{name} = %{version}-%{release} |
||||
Requires: python3-%{name} = %{version}-%{release} |
||||
Obsoletes: caribou < 0.4.1-3 |
||||
|
||||
%description antler |
||||
This package contains caribou keyboard implementation for |
||||
non-gnome-shell sessions. |
||||
|
||||
%prep |
||||
%setup -q |
||||
%patch1 -p1 -b .fix-python-exec |
||||
%patch2 -p1 -b .multilib |
||||
%patch3 -p1 -b .cinnamon |
||||
|
||||
%build |
||||
%configure --disable-static |
||||
%make_build |
||||
|
||||
%install |
||||
%make_install |
||||
|
||||
# For Python3 |
||||
make clean |
||||
%configure --disable-static PYTHON=python3 |
||||
%make_install |
||||
|
||||
find %{buildroot} -name '*.la' -exec rm -f {} ';' |
||||
|
||||
desktop-file-validate %{buildroot}%{_sysconfdir}/xdg/autostart/caribou-autostart.desktop || : |
||||
desktop-file-validate %{buildroot}%{_libdir}/gnome-settings-daemon-3.0/gtk-modules/caribou-gtk-module.desktop || : |
||||
|
||||
%find_lang caribou |
||||
|
||||
%post -p /sbin/ldconfig |
||||
%postun -p /sbin/ldconfig |
||||
|
||||
%files -f caribou.lang |
||||
%doc NEWS README |
||||
%license COPYING |
||||
%{_bindir}/caribou-preferences |
||||
%{_datadir}/caribou |
||||
%{_libdir}/girepository-1.0/Caribou-1.0.typelib |
||||
%{_sysconfdir}/xdg/autostart/caribou-autostart.desktop |
||||
%{_datadir}/dbus-1/services/org.gnome.Caribou.Daemon.service |
||||
%{_datadir}/glib-2.0/schemas/org.gnome.caribou.gschema.xml |
||||
%{_libdir}/libcaribou.so.0* |
||||
%{_libdir}/gnome-settings-daemon-3.0/gtk-modules/caribou-gtk-module.desktop |
||||
%{_libexecdir}/caribou |
||||
|
||||
%files -n python2-caribou |
||||
%{python2_sitelib}/caribou |
||||
|
||||
%files -n python3-caribou |
||||
%{python3_sitelib}/caribou |
||||
|
||||
%files devel |
||||
%{_includedir}/* |
||||
%{_libdir}/*.so |
||||
%{_libdir}/pkgconfig/caribou-1.0.pc |
||||
%{_datadir}/gir-1.0/Caribou-1.0.gir |
||||
%{_datadir}/vala |
||||
|
||||
%files gtk2-module |
||||
%{_libdir}/gtk-2.0/modules/libcaribou-gtk-module.so |
||||
|
||||
%files gtk3-module |
||||
%{_libdir}/gtk-3.0/modules/libcaribou-gtk-module.so |
||||
|
||||
%files antler |
||||
%{_datadir}/antler |
||||
%{_datadir}/dbus-1/services/org.gnome.Caribou.Antler.service |
||||
%{_libexecdir}/antler-keyboard |
||||
%{_datadir}/glib-2.0/schemas/org.gnome.antler.gschema.xml |
||||
|
||||
|
||||
%changelog |
||||
* Tue May 01 2018 Leigh Scott <leigh123linux@googlemail.com> - 0.4.21-9 |
||||
- Fix gnome missing schema issue |
||||
|
||||
* Sat Apr 28 2018 Leigh Scott <leigh123linux@googlemail.com> - 0.4.21-8 |
||||
- Unretire |
||||
- Change autostart as gnome-shell has it's own builtin OSK application |
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.21-7 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
||||
|
||||
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.4.21-6 |
||||
- Switch to %%ldconfig_scriptlets |
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.21-5 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild |
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.21-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.21-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild |
||||
|
||||
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.4.21-2 |
||||
- Rebuild for Python 3.6 |
||||
|
||||
* Sun Jul 24 2016 Parag Nemade <pnemade AT redhat DOT com> - 0.4.21-1 |
||||
- Update to 0.4.21 |
||||
|
||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.20-3 |
||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages |
||||
|
||||
* Thu Jun 30 2016 Parag Nemade <pnemade AT redhat DOT com> - 0.4.20-2 |
||||
- Resolves:rh#1324995: caribou-preferences string import error |
||||
- Use %%license for COPYING |
||||
- move python-caribou to python2-caribou |
||||
- Add virtual provides for python packages |
||||
|
||||
* Tue Feb 16 2016 Richard Hughes <rhughes@redhat.com> - 0.4.20-1 |
||||
- Update to 0.4.20 |
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.19-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
||||
|
||||
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.19-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 |
||||
|
||||
* Wed Oct 14 2015 Parag Nemade <pnemade AT redhat DOT com> - 0.4.19-1 |
||||
- Update to 0.4.19 |
||||
|
||||
* Fri Oct 09 2015 Parag Nemade <pnemade AT redhat DOT com> - 0.4.18.1-3 |
||||
- Resolves:rh#1228935: gnome-shell: strlen(): gnome-shell killed by SIGSEGV |
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.18.1-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild |
||||
|
||||
* Wed Apr 15 2015 Kalev Lember <kalevlember@gmail.com> - 0.4.18.1-1 |
||||
- Update to 0.4.18.1 |
||||
|
||||
* Thu Apr 09 2015 Parag Nemade <pnemade AT redhat DOT com> - 0.4.18-3 |
||||
- Resolves:rh#1210302: Fix dependencies for python{,3}-caribou |
||||
|
||||
* Thu Apr 02 2015 Parag Nemade <pnemade AT redhat DOT com> - 0.4.18-2 |
||||
- Change Cariou to pull python3-caribou default in F23 |
||||
|
||||
* Mon Mar 23 2015 Kalev Lember <kalevlember@gmail.com> - 0.4.18-1 |
||||
- Update to 0.4.18 |
||||
|
||||
* Fri Feb 20 2015 Parag Nemade <pnemade AT redhat DOT com> - 0.4.17-2 |
||||
- Added python3 subpackage |
||||
|
||||
* Tue Feb 17 2015 Parag Nemade <pnemade AT redhat DOT com> - 0.4.17-1 |
||||
- Update to 0.4.17 |
||||
|
||||
* Tue Nov 25 2014 Parag Nemade <pnemade AT redhat DOT com> - 0.4.16-1 |
||||
- Update to 0.4.16 |
||||
|
||||
* Tue Sep 16 2014 Parag Nemade <pnemade AT redhat DOT com> - 0.4.15-1 |
||||
- Update to 0.4.15 |
||||
|
||||
* Sun Sep 07 2014 Kalev Lember <kalevlember@gmail.com> - 0.4.14-2 |
||||
- Fix a possible crash with new dbus activation code (#1138934) |
||||
|
||||
* Wed Sep 03 2014 Kalev Lember <kalevlember@gmail.com> - 0.4.14-1 |
||||
- Update to 0.4.14 |
||||
|
||||
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.13-7 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild |
||||
|
||||
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 0.4.13-6 |
||||
- Rebuilt for gobject-introspection 1.41.4 |
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.13-5 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild |
||||
|
||||
* Thu Feb 20 2014 Kalev Lember <kalevlember@gmail.com> - 0.4.13-4 |
||||
- Rebuilt for cogl soname bump |
||||
|
||||
* Mon Feb 10 2014 Peter Hutterer <peter.hutterer@redhat.com> - 0.4.13-3 |
||||
- Rebuild for libevdev soname bump |
||||
|
||||
* Wed Feb 05 2014 Kalev Lember <kalevlember@gmail.com> - 0.4.13-2 |
||||
- Rebuilt for cogl soname bump |
||||
|
||||
* Tue Nov 19 2013 Richard Hughes <rhughes@redhat.com> - 0.4.13-1 |
||||
- Update to 0.4.13 |
||||
|
||||
* Sat Aug 24 2013 Parag Nemade <pnemade AT redhat DOT com> - 0.4.12-1 |
||||
- Update to 0.4.12 |
||||
|
||||
* Fri Aug 09 2013 Kalev Lember <kalevlember@gmail.com> - 0.4.11-3 |
||||
- Rebuilt for cogl 1.15.4 soname bump |
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.11-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||
|
||||
* Mon Jun 10 2013 Parag Nemade <pnemade AT redhat DOT com> - 0.4.11-1 |
||||
- Update to 0.4.11 |
||||
|
||||
* Wed Mar 20 2013 Richard Hughes <rhughes@redhat.com> - 0.4.10-1 |
||||
- Update to 0.4.10 |
||||
|
||||
* Mon Mar 04 2013 Parag Nemade <pnemade AT redhat DOT com> - 0.4.9-1 |
||||
- Update to 0.4.9 |
||||
|
||||
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 0.4.8-2 |
||||
- Rebuilt for cogl soname bump |
||||
|
||||
* Tue Feb 19 2013 Parag Nemade <pnemade AT redhat DOT com> - 0.4.8-1 |
||||
- Update to 0.4.8 |
||||
|
||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.7-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Wed Jan 16 2013 Parag Nemade <pnemade AT redhat DOT com> - 0.4.7-2 |
||||
- vala .vapi and .deps files should be installed by -devel |
||||
|
||||
* Wed Jan 16 2013 Parag Nemade <pnemade AT redhat DOT com> - 0.4.7-1 |
||||
- Update to 0.4.7 |
||||
|
||||
* Thu Dec 20 2012 Parag Nemade <pnemade AT redhat DOT com> - 0.4.6-1 |
||||
- Update to 0.4.6 |
||||
|
||||
* Tue Dec 18 2012 Parag Nemade <pnemade AT redhat DOT com> - 0.4.5-1 |
||||
- Update to 0.4.5 |
||||
- Resolves:rh#744852 - Pressing | in on-screen keyboard produces < |
||||
- Resolves:rh#880379 - Another service acquired %%s, quitting.. |
||||
- Resolves:rh#880382 |
||||
|
||||
* Wed Nov 21 2012 Parag Nemade <pnemade AT redhat DOT com> - 0.4.4.2-6 |
||||
- Resolves:rh#878716 - need some spec cleanup |
||||
|
||||
* Thu Nov 15 2012 Parag Nemade <pnemade AT redhat.com> - 0.4.4.2-5 |
||||
- Apply patch1 |
||||
|
||||
* Tue Nov 13 2012 Parag Nemade <pnemade AT redhat.com> - 0.4.4.2-4 |
||||
- Patch from Rui Matos for exec python in shell shim scripts |
||||
|
||||
* Tue Nov 13 2012 Parag Nemade <pnemade AT redhat.com> - 0.4.4.2-3 |
||||
- Fix multilib patch |
||||
|
||||
* Tue Nov 13 2012 Rui Matos <tiagomatos@gmail.com> - 0.4.4.2-2 |
||||
- Fix dependencies, caribou and antler both need python-caribou |
||||
|
||||
* Tue Nov 13 2012 Parag Nemade <pnemade AT redhat.com> - 0.4.4.2-1 |
||||
- Update to 0.4.4.2 release |
||||
|
||||
* Thu Sep 06 2012 Richard Hughes <hughsient@gmail.com> - 0.4.4-1 |
||||
- Update to 0.4.4 |
||||
|
||||
* Wed Jul 25 2012 Kalev Lember <kalevlember@gmail.com> - 0.4.3-3 |
||||
- Correct the obsoletes |
||||
|
||||
* Tue Jul 24 2012 Kalev Lember <kalevlember@gmail.com> - 0.4.3-2 |
||||
- Obsolete gok |
||||
|
||||
* Thu Jul 19 2012 Parag Nemade <pnemade AT redhat.com> - 0.4.3-1 |
||||
- Update to 0.4.3 release |
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.2-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Tue Mar 27 2012 Parag Nemade <pnemade AT redhat.com> - 0.4.2-1 |
||||
- Update to 0.4.2 release |
||||
|
||||
* Tue Feb 07 2012 Parag Nemade <pnemade AT redhat.com> - 0.4.1-5 |
||||
- Resolves:rh#768033 - Update Requires for caribou |
||||
|
||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.1-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Fri Dec 09 2011 Parag Nemade <pnemade AT redhat.com> - 0.4.1-3 |
||||
- split package to subpackages -gtk2-module, -gtk3-module, -antler and python-caribou |
||||
|
||||
* Thu Nov 17 2011 Parag Nemade <pnemade AT redhat.com> - 0.4.1-2 |
||||
- Resolves:rh#753149 - Upgraded F15 -> F16 gnome fails - wrong version of caribou |
||||
|
||||
* Tue Oct 18 2011 Parag Nemade <pnemade AT redhat.com> - 0.4.1-1 |
||||
- upstream release 0.4.1 |
||||
|
||||
* Tue Sep 27 2011 Parag Nemade <pnemade AT redhat.com> - 0.4.0-1 |
||||
- upstream release 0.4.0 |
||||
|
||||
* Tue Sep 20 2011 Parag Nemade <pnemade AT redhat.com> - 0.3.92-1 |
||||
- upstream release 0.3.92 |
||||
|
||||
* Tue Sep 06 2011 Parag Nemade <pnemade AT redhat.com> - 0.3.91-1 |
||||
- Update to new upstream release 0.3.91 |
||||
|
||||
* Wed Aug 31 2011 Matthias Clasen <mclasen@redhat.com> - 0.3.5-2 |
||||
- Rebuild with pygobject3 |
||||
|
||||
* Thu Aug 18 2011 Matthias Clasen <mclasen@redhat.com> - 0.3.5-1 |
||||
- Update to 0.3.5 |
||||
|
||||
* Tue Jul 05 2011 Parag Nemade <pnemade AT redhat.com> - 0.3.3-1 |
||||
- Update to new upstream release 0.3.3 |
||||
|
||||
* Thu Jun 16 2011 Tomas Bzatek <tbzatek@redhat.com> - 0.3.2-2 |
||||
- Tweak BuildRequires |
||||
|
||||
* Tue Jun 14 2011 Parag Nemade <pnemade AT redhat.com> - 0.3.2-1 |
||||
- Update to new upstream release 0.3.2 |
||||
|
||||
* Fri May 6 2011 Christopher Aillon <caillon@redhat.com> - 0.2.00-3 |
||||
- Update scriptlets per packaging guidelines |
||||
|
||||
* Thu May 05 2011 Parag Nemade <pnemade AT redhat.com> - 0.2.00-2 |
||||
- Caribou now only be shown in GNOME. (rh#698603) |
||||
- Add desktop-file-validate for caribou-autostart.desktop |
||||
- Add ||: for caribou-autostart.desktop to skip the error. |
||||
|
||||
* Tue Apr 5 2011 Matthias Clasen <mclasen@redhat.com> - 0.2.00-1 |
||||
- Update to 0.2.00 |
||||
|
||||
* Tue Mar 22 2011 Parag Nemade <pnemade AT redhat.com> - 0.1.92-1 |
||||
- Update to 0.1.92 |
||||
|
||||
* Thu Mar 10 2011 Parag Nemade <pnemade AT redhat.com> - 0.1.91-1 |
||||
- Update to 0.1.91 |
||||
|
||||
* Thu Mar 10 2011 Parag Nemade <pnemade AT redhat.com> - 0.1.7-1 |
||||
- Update to 0.1.7 |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.5-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.1.5-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild |
||||
|
||||
* Mon Jul 12 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.5-1 |
||||
- Update to 0.1.5 |
||||
|
||||
* Wed Jun 16 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.2-3 |
||||
- Require pyatspi, not at-spi-python |
||||
|
||||
* Sat May 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.2-2 |
||||
- Rewrite spec for autotools |
||||
|
||||
* Fri May 28 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.2-1 |
||||
- Update to 0.1.2 |
||||
|
||||
* Wed Jan 21 2009 Ben Konrath <ben@bagu.org> - 0.0.2-1 |
||||
- Initial release. |
@ -0,0 +1,331 @@
@@ -0,0 +1,331 @@
|
||||
%global debug_package %{nil} |
||||
|
||||
Name: pyatspi |
||||
Version: 2.20.3 |
||||
Release: 1%{?dist} |
||||
Summary: Python bindings for at-spi |
||||
|
||||
Group: Development/Languages |
||||
License: LGPLv2 and GPLv2 |
||||
URL: http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus |
||||
#VCS: git:git://git.gnome.org/pyatspi |
||||
Source0: http://download.gnome.org/sources/pyatspi/2.20/%{name}-%{version}.tar.xz |
||||
|
||||
BuildRequires: python2-devel |
||||
BuildRequires: python3-devel |
||||
BuildRequires: pygobject3-devel >= 2.90.1 |
||||
|
||||
Requires: at-spi2-core >= 2.22.0 |
||||
Requires: pygobject3 |
||||
|
||||
BuildArch: noarch |
||||
|
||||
%description |
||||
at-spi allows assistive technologies to access GTK-based |
||||
applications. Essentially it exposes the internals of applications for |
||||
automation, so tools such as screen readers, magnifiers, or even |
||||
scripting interfaces can query and interact with GUI controls. |
||||
|
||||
This package includes a python2 client library for at-spi. |
||||
|
||||
|
||||
%package -n python3-pyatspi |
||||
Summary: Python3 bindings for at-spi |
||||
Requires: at-spi2-core |
||||
Requires: python3-gobject |
||||
|
||||
%description -n python3-pyatspi |
||||
at-spi allows assistive technologies to access GTK-based |
||||
applications. Essentially it exposes the internals of applications for |
||||
automation, so tools such as screen readers, magnifiers, or even |
||||
scripting interfaces can query and interact with GUI controls. |
||||
|
||||
This package includes a python3 client library for at-spi. |
||||
|
||||
|
||||
%prep |
||||
%setup -q |
||||
|
||||
# Make a copy of the source tree for building the python3 module |
||||
rm -rf %{py3dir} |
||||
cp -a . %{py3dir} |
||||
|
||||
|
||||
%build |
||||
# Build the python2 module |
||||
%configure --with-python=python2 |
||||
make |
||||
|
||||
# Build the python3 module |
||||
pushd %{py3dir} |
||||
%configure --with-python=python3 |
||||
make |
||||
popd |
||||
|
||||
|
||||
%install |
||||
%make_install |
||||
|
||||
pushd %{py3dir} |
||||
%make_install |
||||
|
||||
# Fix up the shebang for python3 example |
||||
cp -a examples python3-examples |
||||
sed -i '1s|^#!/usr/bin/python|#!%{__python3}|' python3-examples/magFocusTracker.py |
||||
|
||||
|
||||
%files |
||||
%license COPYING COPYING.GPL |
||||
%doc AUTHORS README |
||||
%doc examples/magFocusTracker.py |
||||
%{python_sitelib}/pyatspi/ |
||||
|
||||
%files -n python3-pyatspi |
||||
%license COPYING COPYING.GPL |
||||
%doc AUTHORS README |
||||
#%doc python3-examples/magFocusTracker.py |
||||
%{python3_sitelib}/pyatspi/ |
||||
|
||||
|
||||
%changelog |
||||
* Tue Jan 17 2017 Kalev Lember <klember@redhat.com> - 2.20.3-1 |
||||
- Update to 2.20.3 |
||||
|
||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.20.2-2 |
||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages |
||||
|
||||
* Mon May 09 2016 Kalev Lember <klember@redhat.com> - 2.20.2-1 |
||||
- Update to 2.20.2 |
||||
|
||||
* Wed Apr 13 2016 Kalev Lember <klember@redhat.com> - 2.20.1-1 |
||||
- Update to 2.20.1 |
||||
|
||||
* Tue Mar 22 2016 Kalev Lember <klember@redhat.com> - 2.20.0-1 |
||||
- Update to 2.20.0 |
||||
|
||||
* Tue Mar 01 2016 Richard Hughes <rhughes@redhat.com> - 2.19.91-1 |
||||
- Update to 2.19.91 |
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.18.0-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
||||
|
||||
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.18.0-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 |
||||
|
||||
* Mon Sep 21 2015 Kalev Lember <klember@redhat.com> - 2.18.0-1 |
||||
- Update to 2.18.0 |
||||
|
||||
* Mon Aug 17 2015 Kalev Lember <klember@redhat.com> - 2.17.90-1 |
||||
- Update to 2.17.90 |
||||
- Use make_install macro |
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.16.0-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild |
||||
|
||||
* Tue Mar 24 2015 Kalev Lember <kalevlember@gmail.com> - 2.16.0-1 |
||||
- Update to 2.16.0 |
||||
- Use license macro for the COPYING files |
||||
|
||||
* Tue Feb 17 2015 Richard Hughes <rhughes@redhat.com> - 2.15.90-1 |
||||
- Update to 2.15.90 |
||||
|
||||
* Tue Feb 03 2015 Richard Hughes <rhughes@redhat.com> - 2.15.4-1 |
||||
- Update to 2.15.4 |
||||
|
||||
* Fri Dec 19 2014 Richard Hughes <rhughes@redhat.com> - 2.15.3-1 |
||||
- Update to 2.15.3 |
||||
|
||||
* Mon Sep 22 2014 Kalev Lember <kalevlember@gmail.com> - 2.14.0-1 |
||||
- Update to 2.14.0 |
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.12.0-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild |
||||
|
||||
* Tue May 27 2014 Kalev Lember <kalevlember@gmail.com> - 2.12.0-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 |
||||
|
||||
* Mon Mar 24 2014 Kalev Lember <kalevlember@gmail.com> - 2.12.0-1 |
||||
- Update to 2.12.0 |
||||
|
||||
* Tue Mar 18 2014 Richard Hughes <rhughes@redhat.com> - 2.11.92-1 |
||||
- Update to 2.11.92 |
||||
|
||||
* Wed Feb 19 2014 Richard Hughes <rhughes@redhat.com> - 2.11.90-1 |
||||
- Update to 2.11.90 |
||||
|
||||
* Tue Dec 17 2013 Richard Hughes <rhughes@redhat.com> - 2.11.3-1 |
||||
- Update to 2.11.3 |
||||
|
||||
* Tue Nov 19 2013 Richard Hughes <rhughes@redhat.com> - 2.11.2-1 |
||||
- Update to 2.11.2 |
||||
|
||||
* Wed Sep 25 2013 Kalev Lember <kalevlember@gmail.com> - 2.10.0-1 |
||||
- Update to 2.10.0 |
||||
|
||||
* Tue Sep 17 2013 Kalev Lember <kalevlember@gmail.com> - 2.9.92-1 |
||||
- Update to 2.9.92 |
||||
|
||||
* Thu Aug 22 2013 Kalev Lember <kalevlember@gmail.com> - 2.9.90-1 |
||||
- Update to 2.9.90 |
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.3-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||
|
||||
* Thu Jun 20 2013 Kalev Lember <kalevlember@gmail.com> - 2.9.3-1 |
||||
- Update to 2.9.3 |
||||
|
||||
* Sun Jun 02 2013 Kalev Lember <kalevlember@gmail.com> - 2.9.2-1 |
||||
- Update to 2.9.2 |
||||
|
||||
* Mon Apr 15 2013 Rui Matos <rmatos@redhat.com> - 2.8.0-2 |
||||
- Don't depend on python3 in RHEL |
||||
|
||||
* Mon Mar 25 2013 Kalev Lember <kalevlember@gmail.com> - 2.8.0-1 |
||||
- Update to 2.8.0 |
||||
|
||||
* Wed Mar 20 2013 Kalev Lember <kalevlember@gmail.com> - 2.7.91-1 |
||||
- Update to 2.7.91 |
||||
|
||||
* Sat Feb 23 2013 Kalev Lember <kalevlember@gmail.com> - 2.7.5-2 |
||||
- Build python3-pyatspi with Python 3 support |
||||
|
||||
* Wed Feb 06 2013 Kalev Lember <kalevlember@gmail.com> - 2.7.5-1 |
||||
- Update to 2.7.5 |
||||
|
||||
* Fri Nov 09 2012 Kalev Lember <kalevlember@gmail.com> - 2.7.1-1 |
||||
- Update to 2.7.1 |
||||
- Include magFocusTracker.py example in documentation |
||||
|
||||
* Wed Jul 18 2012 Kalev Lember <kalevlember@gmail.com> - 2.5.4-1 |
||||
- Update to 2.5.4 |
||||
- Removed python_sitelib definition; no longer needed with recent rpmbuild |
||||
|
||||
* Thu Jun 28 2012 Kalev Lember <kalevlember@gmail.com> - 2.5.3-1 |
||||
- Update to 2.5.3 |
||||
|
||||
* Sat May 05 2012 Kalev Lember <kalevlember@gmail.com> - 2.5.1-1 |
||||
- Update to 2.5.1 |
||||
|
||||
* Wed Mar 28 2012 Richard Hughes <hughsient@gmail.com> - 2.4.0-1 |
||||
- Update to 2.4.0 |
||||
|
||||
* Wed Mar 21 2012 Kalev Lember <kalevlember@gmail.com> - 2.3.92-1 |
||||
- Update to 2.3.92 |
||||
|
||||
* Mon Mar 5 2012 Matthias Clasen <mclasen@redhat.com> - 2.3.91-1 |
||||
- Update to 2.3.91 |
||||
|
||||
* Tue Feb 7 2012 Matthias Clasen <mclasen@redhat.com> - 2.3.5-1 |
||||
- Update to 2.3.5 |
||||
|
||||
* Tue Jan 17 2012 Matthias Clasen <mclasen@redhat.com> - 2.3.4-1 |
||||
- Update to 2.3.4 |
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Tue Oct 18 2011 Matthias Clasen <mclasen@redhat.com> - 2.2.1-1 |
||||
- Update to 2.2.1 |
||||
|
||||
* Wed Sep 28 2011 Matthias Clasen <mclasen@redhat.com> - 2.2.0-1 |
||||
- Update to 2.2.0 |
||||
|
||||
* Tue Sep 20 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.91-1 |
||||
- Update to 2.1.91 |
||||
|
||||
* Mon Jul 25 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.4-1 |
||||
- Update to 2.1.4 |
||||
|
||||
* Thu Jun 16 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.1.2-1 |
||||
- Update to 2.1.2 |
||||
|
||||
* Wed May 11 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.1.1-1 |
||||
- Update to 2.1.1 |
||||
|
||||
* Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> - 2.0.1-1 |
||||
- Update to 2.0.1 |
||||
|
||||
* Mon Apr 4 2011 Matthias Clasen <mclasen@redhat.com> - 2.0.0-1 |
||||
- Update to 2.0.0 |
||||
|
||||
* Tue Mar 22 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.92-1 |
||||
- Update to 1.91.92 |
||||
|
||||
* Mon Mar 7 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.91-1 |
||||
- Update to 1.91.91 |
||||
|
||||
* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.90-1 |
||||
- Update to 1.91.90 |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.91.6-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Wed Feb 2 2011 Christopher Aillon <caillon@redhat.com> - 1.91.6-1 |
||||
- Update to 1.91.6 |
||||
|
||||
* Tue Jan 11 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.5-1 |
||||
- Update to 1.91.5 |
||||
|
||||
* Thu Dec 2 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.3-1 |
||||
- Update to 1.91.3 |
||||
|
||||
* Tue Oct 5 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.0-1 |
||||
- Update to 1.91.0 |
||||
|
||||
* Wed Sep 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.4.0-1 |
||||
- Update to 0.4.0 |
||||
|
||||
* Mon Sep 20 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.91-2 |
||||
- Require python-xlib and and gnome-python2-gconf (#635484) |
||||
|
||||
* Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.91-1 |
||||
- Update to 0.3.91 |
||||
|
||||
* Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.90-1 |
||||
- Update to 0.3.90 |
||||
|
||||
* Mon Aug 2 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.6-1 |
||||
- Update to 0.3.6 |
||||
|
||||
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.3.4-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild |
||||
|
||||
* Tue Jun 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.4-1 |
||||
- Update to 0.3.4 |
||||
|
||||
* Tue Jun 8 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.3-1 |
||||
- Update to 0.3.3 |
||||
|
||||
* Fri May 28 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-1 |
||||
- Update to 0.3.2 |
||||
|
||||
* Sat May 15 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.1.1-1 |
||||
- Update to 0.3.1.1 |
||||
|
||||
* Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.8-1 |
||||
- Update to 0.1.8 |
||||
|
||||
* Sat Feb 20 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.7-1 |
||||
- Update to 0.1.7 |
||||
|
||||
* Wed Feb 10 2010 Tomas Bzatek <tbzatek@redhat.com> - 0.1.6-1 |
||||
- Update to 0.1.6 |
||||
|
||||
* Wed Feb 3 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.5-2 |
||||
- Relocate |
||||
|
||||
* Sun Jan 17 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.5-1 |
||||
- Update to 0.1.5 |
||||
|
||||
* Thu Jan 7 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.4-3 |
||||
- Incorporate review feedback |
||||
|
||||
* Thu Jan 7 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.4-2 |
||||
- Fix License field |
||||
- Change CORBA/DBus switching method |
||||
|
||||
* Tue Dec 22 2009 Matthias Clasen <mclasen@redhat.com> - 0.1.4-1 |
||||
- Update to 0.1.4 |
||||
|
||||
* Sat Dec 5 2009 Matthias Clasen <mclasen@redhat.com> - 0.1.3-1 |
||||
- Initial packaging |
@ -0,0 +1,161 @@
@@ -0,0 +1,161 @@
|
||||
%if 0%{?fedora} || 0%{?rhel} >= 7 |
||||
%bcond_without python3 |
||||
%else # 0#{?fedora} || 0#{?rhel} >= 7 |
||||
%bcond_with python3 |
||||
%endif # 0#{?fedora} || 0#{?rhel} >= 7 |
||||
|
||||
# this is only turned on during transitional periods |
||||
%{?python3_next_pkgversion: %global with_python3_next 1} |
||||
|
||||
%global sum Python bindings for xapps |
||||
|
||||
|
||||
Name: python-xapp |
||||
Version: 1.0.1 |
||||
Release: 7%{?dist} |
||||
Summary: %{sum} |
||||
|
||||
License: LGPLv2 |
||||
URL: https://github.com/linuxmint/%{name} |
||||
Source0: %{url}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz |
||||
|
||||
Patch0: %{url}/pull/5.patch#/%{name}-1.0.1-setup_py_ver.patch |
||||
|
||||
BuildArch: noarch |
||||
|
||||
%description |
||||
%{sum}. |
||||
|
||||
|
||||
%package -n python2-xapp |
||||
Summary: %{sum} |
||||
|
||||
BuildRequires: python2-devel |
||||
|
||||
%if 0%{?fedora} || 0%{?rhel} >= 8 |
||||
BuildRequires: python2-setuptools |
||||
Requires: python2-psutil |
||||
%else # 0#{?fedora} || 0#{?rhel} >= 8 |
||||
BuildRequires: python-setuptools |
||||
Requires: python-psutil |
||||
%endif # 0#{?fedora} || 0#{?rhel} >= 8 |
||||
|
||||
%{?python_provide:%python_provide python2-xapp} |
||||
|
||||
%description -n python2-xapp |
||||
%{sum}. |
||||
|
||||
|
||||
%if %{with python3} |
||||
%package -n python%{python3_pkgversion}-xapp |
||||
Summary: %{sum} |
||||
|
||||
BuildRequires: python%{python3_pkgversion}-devel |
||||
BuildRequires: python%{python3_pkgversion}-setuptools |
||||
|
||||
Requires: python%{python3_pkgversion}-psutil |
||||
|
||||
%{?python_provide:%python_provide python%{python3_pkgversion}-xapp} |
||||
|
||||
%if ("python%{python3_pkgversion}-xapp" != "python3-xapp") && !0%{?with_python3_next} |
||||
Provides: python3-xapp = %{version}-%{release} |
||||
%endif |
||||
|
||||
%description -n python%{python3_pkgversion}-xapp |
||||
%{sum}. |
||||
%endif # with python3 |
||||
|
||||
|
||||
%if 0%{?with_python3_next} |
||||
%package -n python%{python3_next_pkgversion}-xapp |
||||
Summary: %{sum} |
||||
|
||||
BuildRequires: python%{python3_next_pkgversion}-devel |
||||
BuildRequires: python%{python3_next_pkgversion}-setuptools |
||||
|
||||
Requires: python%{python3_next_pkgversion}-psutil |
||||
|
||||
%{?python_provide:%python_provide python%{python3_next_pkgversion}-xapp} |
||||
|
||||
%if ("python%{python3_next_pkgversion}-xapp" != "python3-xapp") && 0%{?with_python3_next} |
||||
Provides: python3-xapp = %{version}-%{release} |
||||
%endif |
||||
|
||||
%description -n python%{python3_next_pkgversion}-xapp |
||||
%{sum}. |
||||
%endif # with_python3_next |
||||
|
||||
|
||||
%prep |
||||
%autosetup -p 1 |
||||
|
||||
|
||||
%build |
||||
%py2_build |
||||
%if %{with python3} |
||||
%py3_build |
||||
%endif # with python3 |
||||
%if 0%{?with_python3_next} |
||||
%py3_next_build |
||||
%endif # with_python3_next |
||||
|
||||
|
||||
%install |
||||
%py2_install |
||||
%if %{with python3} |
||||
%py3_install |
||||
%endif # with python3 |
||||
%if 0%{?with_python3_next} |
||||
%py3_next_install |
||||
%endif # with_python3_next |
||||
|
||||
|
||||
%files -n python2-xapp |
||||
%license COPYING debian/copyright |
||||
%doc AUTHORS PKG-INFO README TODO debian/changelog |
||||
%{python2_sitelib}/xapp |
||||
%{python2_sitelib}/python_xapp-%{version}-py%{python2_version}.egg-info |
||||
|
||||
|
||||
%if %{with python3} |
||||
%files -n python%{python3_pkgversion}-xapp |
||||
%license COPYING debian/copyright |
||||
%doc AUTHORS PKG-INFO README TODO debian/changelog |
||||
%{python3_sitelib}/xapp |
||||
%{python3_sitelib}/python_xapp-%{version}-py%{python3_version}.egg-info |
||||
%endif # with python3 |
||||
|
||||
|
||||
%if 0%{?with_python3_next} |
||||
%files -n python%{python3_next_pkgversion}-xapp |
||||
%license COPYING debian/copyright |
||||
%doc AUTHORS PKG-INFO README TODO debian/changelog |
||||
%{python3_next_sitelib}/xapp |
||||
%{python3_next_sitelib}/python_xapp-%{version}-py%{python3_next_version}.egg-info |
||||
%endif # with_python3_next |
||||
|
||||
|
||||
%changelog |
||||
* Thu Nov 16 2017 Björn Esser <besser82@fedoraproject.org> - 1.0.1-7 |
||||
- Use unified Provides for EPEL7 |
||||
|
||||
* Thu Nov 16 2017 Björn Esser <besser82@fedoraproject.org> - 1.0.1-6 |
||||
- Use unified macros for Python 3 |
||||
|
||||
* Thu Aug 31 2017 Björn Esser <besser82@fedoraproject.org> - 1.0.1-5 |
||||
- Build a Python3 compat pkg on RHEL7 |
||||
|
||||
* Tue Aug 29 2017 Björn Esser <besser82@fedoraproject.org> - 1.0.1-4 |
||||
- Fix for EPEL |
||||
|
||||
* Tue Aug 29 2017 Björn Esser <besser82@fedoraproject.org> - 1.0.1-3 |
||||
- Conditionalize Python3 for EPEL |
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
||||
|
||||
* Tue Jun 13 2017 Björn Esser <besser82@fedoraproject.org> - 1.0.1-1 |
||||
- Update to 1.0.1 release (rhbz#1460408) |
||||
|
||||
* Mon May 01 2017 Leigh Scott <leigh123linux@gmail.com> - 1.0.0-1 |
||||
- Initial rpm-release (rhbz#1448559) |
@ -0,0 +1,335 @@
@@ -0,0 +1,335 @@
|
||||
## 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. |
||||
%global add_to_license_files() \ |
||||
mkdir -p _license_files ; \ |
||||
cp -p %1 _license_files/$(echo '%1' | sed -e 's!/!.!g') |
||||
|
||||
Name: webkit2gtk3 |
||||
Version: 2.22.4 |
||||
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=162611 |
||||
Patch0: user-agent-branding.patch |
||||
# https://fedoraproject.org/wiki/Packaging:CryptoPolicies |
||||
# https://bugs.webkit.org/show_bug.cgi?id=158785 |
||||
Patch1: fedora-crypto-policy.patch |
||||
# https://bugs.webkit.org/show_bug.cgi?id=132333 |
||||
Patch2: cloop-big-endians.patch |
||||
|
||||
BuildRequires: at-spi2-core-devel |
||||
BuildRequires: bison |
||||
BuildRequires: brotli-devel |
||||
BuildRequires: cairo-devel |
||||
BuildRequires: cmake |
||||
BuildRequires: enchant-devel |
||||
BuildRequires: flex |
||||
BuildRequires: fontconfig-devel |
||||
BuildRequires: freetype-devel |
||||
BuildRequires: geoclue2-devel |
||||
BuildRequires: gettext |
||||
BuildRequires: glib2-devel |
||||
BuildRequires: gnutls-devel |
||||
BuildRequires: gobject-introspection-devel |
||||
BuildRequires: gperf |
||||
BuildRequires: gstreamer1-devel |
||||
BuildRequires: gstreamer1-plugins-base-devel |
||||
BuildRequires: gstreamer1-plugins-bad-free-devel |
||||
BuildRequires: gtk2-devel |
||||
BuildRequires: gtk3-devel |
||||
BuildRequires: gtk-doc |
||||
BuildRequires: harfbuzz-devel |
||||
BuildRequires: hyphen-devel |
||||
BuildRequires: libicu-devel |
||||
BuildRequires: libjpeg-devel |
||||
BuildRequires: libnotify-devel |
||||
BuildRequires: libpng-devel |
||||
BuildRequires: libsecret-devel |
||||
BuildRequires: libsoup-devel |
||||
BuildRequires: libwebp-devel |
||||
BuildRequires: libxslt-devel |
||||
BuildRequires: libXt-devel |
||||
BuildRequires: libwayland-client-devel |
||||
BuildRequires: libwayland-egl-devel |
||||
BuildRequires: libwayland-server-devel |
||||
BuildRequires: mesa-libEGL-devel |
||||
BuildRequires: mesa-libGL-devel |
||||
BuildRequires: mesa-libGLES-devel |
||||
BuildRequires: pcre-devel |
||||
BuildRequires: perl-File-Copy-Recursive |
||||
BuildRequires: perl-JSON-PP |
||||
BuildRequires: perl-Switch |
||||
BuildRequires: ruby |
||||
BuildRequires: rubygems |
||||
BuildRequires: sqlite-devel |
||||
BuildRequires: upower-devel |
||||
BuildRequires: woff2-devel |
||||
|
||||
Requires: geoclue2 |
||||
|
||||
# Obsolete libwebkit2gtk from the webkitgtk3 package |
||||
Obsoletes: libwebkit2gtk < 2.5.0 |
||||
Provides: libwebkit2gtk = %{version}-%{release} |
||||
|
||||
# This package was renamed, so obsolete the old webkitgtk4 package |
||||
Obsoletes: webkitgtk4 < %{version}-%{release} |
||||
Provides: webkitgtk4 = %{version}-%{release} |
||||
|
||||
# We're supposed to specify versions here, but these crap Google libs don't do |
||||
# normal releases. Accordingly, they're not suitable to be system libs. |
||||
Provides: bundled(angle) |
||||
|
||||
# Require the jsc subpackage |
||||
Requires: %{name}-jsc%{?_isa} = %{version}-%{release} |
||||
|
||||
# Recommend the support for the GTK+ 2 based NPAPI plugins |
||||
#Recommends: %{name}-plugin-process-gtk2%{?_isa} = %{version}-%{release} |
||||
|
||||
# Filter out provides for private libraries |
||||
%global __provides_exclude_from ^%{_libdir}/webkit2gtk-4\\.0/.*\\.so$ |
||||
|
||||
%description |
||||
WebKitGTK+ is the port of the portable web rendering engine WebKit to the |
||||
GTK+ platform. |
||||
|
||||
This package contains WebKit2 based WebKitGTK+ for GTK+ 3. |
||||
|
||||
%package devel |
||||
Summary: Development files for %{name} |
||||
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||
Requires: %{name}-jsc%{?_isa} = %{version}-%{release} |
||||
Requires: %{name}-jsc-devel%{?_isa} = %{version}-%{release} |
||||
Obsoletes: webkitgtk4-devel < %{version}-%{release} |
||||
Provides: webkitgtk4-devel = %{version}-%{release} |
||||
|
||||
%description devel |
||||
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} |
||||
Obsoletes: webkitgtk4-doc < %{version}-%{release} |
||||
Provides: webkitgtk4-doc = %{version}-%{release} |
||||
|
||||
%description doc |
||||
This package contains developer documentation for %{name}. |
||||
|
||||
%package jsc |
||||
Summary: JavaScript engine from %{name} |
||||
Obsoletes: webkitgtk4-jsc < %{version}-%{release} |
||||
Provides: webkitgtk4-jsc = %{version}-%{release} |
||||
|
||||
%description jsc |
||||
This package contains JavaScript engine from %{name}. |
||||
|
||||
%package jsc-devel |
||||
Summary: Development files for JavaScript engine from %{name} |
||||
Requires: %{name}-jsc%{?_isa} = %{version}-%{release} |
||||
Obsoletes: webkitgtk4-jsc-devel < %{version}-%{release} |
||||
Provides: webkitgtk4-jsc-devel = %{version}-%{release} |
||||
|
||||
%description jsc-devel |
||||
The %{name}-jsc-devel package contains libraries, build data, and header |
||||
files for developing applications that use JavaScript engine from %{name}. |
||||
|
||||
%package plugin-process-gtk2 |
||||
Summary: GTK+ 2 based NPAPI plugins support for %{name} |
||||
Requires: %{name}-jsc%{?_isa} = %{version}-%{release} |
||||
Obsoletes: %{name} < 2.12.0-3 |
||||
Obsoletes: webkitgtk4-plugin-process-gtk2 < %{version}-%{release} |
||||
Provides: webkitgtk4-plugin-process-gtk2 = %{version}-%{release} |
||||
|
||||
%description plugin-process-gtk2 |
||||
Support for the GTK+ 2 based NPAPI plugins (such as Adobe Flash) for %{name}. |
||||
|
||||
%prep |
||||
%setup -q -n webkitgtk-%{version} |
||||
%patch0 -p1 |
||||
%patch1 -p1 |
||||
%patch2 -p1 |
||||
|
||||
# Remove bundled libraries |
||||
rm -rf Source/ThirdParty/gtest/ |
||||
rm -rf Source/ThirdParty/qunit/ |
||||
|
||||
%build |
||||
# Increase the DIE limit so our debuginfo packages could be size optimized. |
||||
# Decreases the size for x86_64 from ~5G to ~1.1G. |
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1456261 |
||||
%global _dwz_max_die_limit 250000000 |
||||
# The _dwz_max_die_limit is being overridden by the arch specific ones from the |
||||
# redhat-rpm-config so we need to set the arch specific ones as well - now it |
||||
# is only needed for x86_64. |
||||
%global _dwz_max_die_limit_x86_64 250000000 |
||||
|
||||
# Decrease debuginfo even on ix86 because of: |
||||
# https://bugs.webkit.org/show_bug.cgi?id=140176 |
||||
%ifarch s390x %{arm} %{ix86} %{power64} %{mips} |
||||
# Decrease debuginfo verbosity to reduce memory consumption even more |
||||
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /') |
||||
%endif |
||||
|
||||
%global optflags %{optflags} -DUSER_AGENT_GTK_DISTRIBUTOR_NAME=\'\\"PowerEL\\"\' |
||||
|
||||
sed '/if (${CMAKE_CXX_COMPILER_VERSION} VERSION_LESS "6.0.0")/,+2d' -i CMakeLists.txt |
||||
sed 's/-std=c++14/-std=c++11/' -i Source/cmake/WebKitCompilerFlags.cmake |
||||
|
||||
|
||||
mkdir -p %{_target_platform} |
||||
pushd %{_target_platform} |
||||
%cmake3 \ |
||||
-DPORT=GTK \ |
||||
-DCMAKE_BUILD_TYPE=Release \ |
||||
-DENABLE_GTKDOC=ON \ |
||||
-DENABLE_MINIBROWSER=ON \ |
||||
%ifarch s390x %{power64} |
||||
-DENABLE_JIT=OFF \ |
||||
-DUSE_SYSTEM_MALLOC=ON \ |
||||
%endif |
||||
.. |
||||
popd |
||||
|
||||
make %{?_smp_mflags} -C %{_target_platform} |
||||
|
||||
%install |
||||
%make_install -C %{_target_platform} |
||||
|
||||
%find_lang WebKit2GTK-4.0 |
||||
|
||||
# Finally, copy over and rename various files for %%license inclusion |
||||
%add_to_license_files Source/JavaScriptCore/COPYING.LIB |
||||
%add_to_license_files Source/JavaScriptCore/icu/LICENSE |
||||
%add_to_license_files Source/ThirdParty/ANGLE/LICENSE |
||||
%add_to_license_files Source/ThirdParty/ANGLE/src/common/third_party/smhasher/LICENSE |
||||
%add_to_license_files Source/ThirdParty/ANGLE/src/third_party/compiler/LICENSE |
||||
%add_to_license_files Source/ThirdParty/ANGLE/src/third_party/libXNVCtrl/LICENSE |
||||
%add_to_license_files Source/WebCore/icu/LICENSE |
||||
%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/UserInterface/External/CodeMirror/LICENSE |
||||
%add_to_license_files Source/WebInspectorUI/UserInterface/External/ESLint/LICENSE |
||||
%add_to_license_files Source/WebInspectorUI/UserInterface/External/Esprima/LICENSE |
||||
%add_to_license_files Source/WebInspectorUI/UserInterface/External/three.js/LICENSE |
||||
%add_to_license_files Source/WTF/icu/LICENSE |
||||
%add_to_license_files Source/WTF/wtf/dtoa/COPYING |
||||
%add_to_license_files Source/WTF/wtf/dtoa/LICENSE |
||||
|
||||
%files -f WebKit2GTK-4.0.lang |
||||
%license _license_files/*ThirdParty* |
||||
%license _license_files/*WebCore* |
||||
%license _license_files/*WebInspectorUI* |
||||
%license _license_files/*WTF* |
||||
%{_libdir}/libwebkit2gtk-4.0.so.* |
||||
%dir %{_libdir}/girepository-1.0 |
||||
%{_libdir}/girepository-1.0/WebKit2-4.0.typelib |
||||
%{_libdir}/girepository-1.0/WebKit2WebExtension-4.0.typelib |
||||
%{_libdir}/webkit2gtk-4.0/ |
||||
%{_libexecdir}/webkit2gtk-4.0/ |
||||
%{_bindir}/WebKitWebDriver |
||||
%exclude %{_libexecdir}/webkit2gtk-4.0/WebKitPluginProcess2 |
||||
|
||||
%files devel |
||||
%{_libexecdir}/webkit2gtk-4.0/MiniBrowser |
||||
%{_includedir}/webkitgtk-4.0/ |
||||
%exclude %{_includedir}/webkitgtk-4.0/JavaScriptCore |
||||
%{_libdir}/libwebkit2gtk-4.0.so |
||||
%{_libdir}/pkgconfig/webkit2gtk-4.0.pc |
||||
%{_libdir}/pkgconfig/webkit2gtk-web-extension-4.0.pc |
||||
%dir %{_datadir}/gir-1.0 |
||||
%{_datadir}/gir-1.0/WebKit2-4.0.gir |
||||
%{_datadir}/gir-1.0/WebKit2WebExtension-4.0.gir |
||||
|
||||
%files jsc |
||||
%license _license_files/*JavaScriptCore* |
||||
%{_libdir}/libjavascriptcoregtk-4.0.so.* |
||||
%dir %{_libdir}/girepository-1.0 |
||||
%{_libdir}/girepository-1.0/JavaScriptCore-4.0.typelib |
||||
|
||||
%files jsc-devel |
||||
%{_libexecdir}/webkit2gtk-4.0/jsc |
||||
%dir %{_includedir}/webkitgtk-4.0 |
||||
%{_includedir}/webkitgtk-4.0/JavaScriptCore/ |
||||
%{_libdir}/libjavascriptcoregtk-4.0.so |
||||
%{_libdir}/pkgconfig/javascriptcoregtk-4.0.pc |
||||
%dir %{_datadir}/gir-1.0 |
||||
%{_datadir}/gir-1.0/JavaScriptCore-4.0.gir |
||||
|
||||
%files plugin-process-gtk2 |
||||
%{_libexecdir}/webkit2gtk-4.0/WebKitPluginProcess2 |
||||
|
||||
%files doc |
||||
%dir %{_datadir}/gtk-doc |
||||
%dir %{_datadir}/gtk-doc/html |
||||
%{_datadir}/gtk-doc/html/jsc-glib-4.0/ |
||||
%{_datadir}/gtk-doc/html/webkit2gtk-4.0/ |
||||
%{_datadir}/gtk-doc/html/webkitdomgtk-4.0/ |
||||
|
||||
%changelog |
||||
* Thu Nov 22 2018 Tomáš Popela <tpopela@redhat.com> - 2.22.4-1 |
||||
- Update to 2.22.4 |
||||
|
||||
* Mon Oct 29 2018 Tomas Popela <tpopela@redhat.com> - 2.22.3-1 |
||||
- Update to 2.22.3 |
||||
|
||||
* Fri Oct 19 2018 Tomas Popela <tpopela@redhat.com> - 2.22.2-2 |
||||
- Fix WebProcess crash while printing |
||||
- Resolves: rhbz#1639754 |
||||
|
||||
* Sun Sep 23 2018 Tomas Popela <tpopela@redhat.com> - 2.22.2-1 |
||||
- Update to 2.22.2 |
||||
|
||||
* Thu Sep 20 2018 Tomas Popela <tpopela@redhat.com> - 2.22.1-1 |
||||
- Update to 2.22.1 |
||||
|
||||
* Tue Sep 04 2018 Tomas Popela <tpopela@redhat.com> - 2.22.0-1 |
||||
- Update to 2.22.0 |
||||
|
||||
* Tue Aug 14 2018 Tomas Popela <tpopela@redhat.com> - 2.20.5-1 |
||||
- Update to 2.20.5 |
||||
|
||||
* Mon Aug 06 2018 Tomas Popela <tpopela@redhat.com> - 2.20.4-1 |
||||
- Update to 2.20.4 |
||||
|
||||
* Mon Jun 11 2018 Tomas Popela <tpopela@redhat.com> - 2.20.3-1 |
||||
- Update to 2.20.3 |
||||
|
||||
* Wed May 09 2018 Tomas Popela <tpopela@redhat.com> - 2.20.2-1 |
||||
- Update to 2.20.2 |
||||
|
||||
* Tue Apr 10 2018 Tomas Popela <tpopela@redhat.com> - 2.20.1-1 |
||||
- Update to 2.20.1 |
||||
|
||||
* Mon Mar 12 2018 Kalev Lember <klember@redhat.com> - 2.20.0-2 |
||||
- Bump webkitgtk4 obsoletes versions |
||||
|
||||
* Mon Mar 12 2018 Tomas Popela <tpopela@redhat.com> - 2.20.0-1 |
||||
- Update to 2.20.0 |
||||
|
||||
* Tue Mar 06 2018 Tomas Popela <tpopela@redhat.com> - 2.19.92-1 |
||||
- Update to 2.19.92 |
||||
|
||||
* Wed Feb 21 2018 Tomas Popela <tpopela@redhat.com> - 2.19.91-1 |
||||
- Update to 2.19.91 |
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.19.90-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
||||
|
||||
* Mon Feb 05 2018 Tomas Popela <tpopela@redhat.com> - 2.19.90-1 |
||||
- Update to 2.19.90 |
||||
|
||||
* Tue Jan 30 2018 Tomas Popela <tpopela@redhat.com> - 2.19.6-3 |
||||
- Remove obsoleted ldconfig scriptlets |
||||
|
||||
* Wed Jan 17 2018 Tomas Popela <tpopela@redhat.com> - 2.19.6-1 |
||||
- Update to 2.19.6 |
||||
|
||||
* Thu Jan 11 2018 Tomas Popela <tpopela@redhat.com> - 2.19.5-2 |
||||
- This package was formerly named webkitgtk4 |
@ -0,0 +1,559 @@
@@ -0,0 +1,559 @@
|
||||
# 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. |
||||
%global add_to_doc_files() \ |
||||
mkdir -p %{buildroot}%{_pkgdocdir} ||: ; \ |
||||
cp -p %1 %{buildroot}%{_pkgdocdir}/$(echo '%1' | sed -e 's!/!.!g') |
||||
|
||||
# Enable higher compression for output rpms |
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1039590 |
||||
%define _binary_payload w8.xzdio |
||||
|
||||
Name: webkitgtk3 |
||||
Version: 2.4.11 |
||||
Release: 2%{?dist} |
||||
Summary: GTK+ Web content engine library |
||||
|
||||
Group: Development/Libraries |
||||
License: LGPLv2+ and BSD |
||||
URL: http://www.webkitgtk.org |
||||
|
||||
Source0: http://webkitgtk.org/releases/webkitgtk-%{version}.tar.xz |
||||
|
||||
Patch0: webkitgtk-2.4.9-disable_deprecated_get_set_id.patch |
||||
|
||||
BuildRequires: at-spi2-core-devel |
||||
BuildRequires: bison |
||||
BuildRequires: cairo-devel |
||||
BuildRequires: chrpath |
||||
BuildRequires: enchant-devel |
||||
BuildRequires: flex |
||||
BuildRequires: fontconfig-devel >= 2.5 |
||||
BuildRequires: freetype-devel |
||||
BuildRequires: geoclue2-devel |
||||
BuildRequires: gettext |
||||
BuildRequires: gperf |
||||
BuildRequires: gstreamer1-devel |
||||
BuildRequires: gstreamer1-plugins-base-devel |
||||
BuildRequires: gtk2-devel |
||||
BuildRequires: gtk3-devel >= 3.6 |
||||
BuildRequires: gtk-doc |
||||
BuildRequires: glib2-devel >= 2.36.0 |
||||
BuildRequires: harfbuzz-devel |
||||
BuildRequires: libsoup-devel >= 2.42.0 |
||||
BuildRequires: libicu-devel |
||||
BuildRequires: libjpeg-devel |
||||
BuildRequires: libpng-devel |
||||
BuildRequires: libsecret-devel |
||||
BuildRequires: libwebp-devel |
||||
BuildRequires: libxslt-devel |
||||
BuildRequires: libXt-devel |
||||
BuildRequires: pcre-devel |
||||
BuildRequires: sqlite-devel |
||||
BuildRequires: gobject-introspection-devel >= 1.32.0 |
||||
BuildRequires: perl-Switch |
||||
BuildRequires: ruby |
||||
BuildRequires: mesa-libGL-devel |
||||
%ifarch ppc |
||||
BuildRequires: libatomic |
||||
%endif |
||||
Requires: geoclue2 |
||||
|
||||
%description |
||||
WebKitGTK+ is the port of the portable web rendering engine WebKit to the |
||||
GTK+ platform. |
||||
|
||||
This package contains WebKitGTK+ for GTK+ 3. |
||||
|
||||
%package devel |
||||
Summary: Development files for %{name} |
||||
Group: Development/Libraries |
||||
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||
Requires: pkgconfig |
||||
Requires: gtk3-devel |
||||
|
||||
%description devel |
||||
The %{name}-devel package contains libraries, build data, and header |
||||
files for developing applications that use %{name}. |
||||
|
||||
%package doc |
||||
Summary: Documentation files for %{name} |
||||
Group: Documentation |
||||
BuildArch: noarch |
||||
Requires: %{name} = %{version}-%{release} |
||||
|
||||
%description doc |
||||
This package contains developer documentation for %{name}. |
||||
|
||||
%prep |
||||
%setup -qn "webkitgtk-%{version}" |
||||
%patch0 -p1 -b .disable_deprecated_get_id |
||||
|
||||
# Fix the permissions |
||||
chmod 644 Source/WebCore/html/canvas/CanvasRenderingContext2D.cpp |
||||
|
||||
%build |
||||
%global optflags %{optflags} -fno-strict-aliasing |
||||
|
||||
# Use linker flags to reduce memory consumption |
||||
%global optflags %{optflags} -Wl,--no-keep-memory -Wl,--reduce-memory-overheads |
||||
|
||||
%ifarch s390 %{arm} |
||||
# Decrease debuginfo verbosity to reduce memory consumption even more |
||||
%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 |
||||
|
||||
%configure \ |
||||
--with-gtk=3.0 \ |
||||
--disable-webkit2 \ |
||||
%ifarch s390 s390x ppc %{power64} aarch64 |
||||
--disable-jit \ |
||||
%else |
||||
--enable-jit \ |
||||
%endif |
||||
--enable-introspection |
||||
|
||||
mkdir -p DerivedSources/webkit |
||||
mkdir -p DerivedSources/WebCore |
||||
mkdir -p DerivedSources/ANGLE |
||||
mkdir -p DerivedSources/WebKit2 |
||||
mkdir -p DerivedSources/webkitdom/ |
||||
mkdir -p DerivedSources/InjectedBundle |
||||
mkdir -p DerivedSources/Platform |
||||
|
||||
# Disable the parallel compilation as it fails to compile in brew. |
||||
# https://bugs.webkit.org/show_bug.cgi?id=34846 |
||||
# make %{_smp_mflags} V=1 |
||||
make -j1 V=1 |
||||
|
||||
%install |
||||
make install DESTDIR=%{buildroot} |
||||
|
||||
install -d -m 755 %{buildroot}%{_libexecdir}/%{name} |
||||
install -m 755 Programs/GtkLauncher %{buildroot}%{_libexecdir}/%{name} |
||||
|
||||
# Remove lib64 rpaths |
||||
chrpath --delete %{buildroot}%{_bindir}/jsc-3 |
||||
chrpath --delete %{buildroot}%{_libdir}/libwebkitgtk-3.0.so |
||||
chrpath --delete %{buildroot}%{_libexecdir}/%{name}/GtkLauncher |
||||
|
||||
# Remove .la files |
||||
find $RPM_BUILD_ROOT%{_libdir} -name "*.la" -delete |
||||
|
||||
%find_lang WebKitGTK-3.0 |
||||
|
||||
## Finally, copy over and rename the various files for %%doc inclusion. |
||||
%add_to_doc_files Source/WebKit/LICENSE |
||||
%add_to_doc_files Source/WebKit/gtk/NEWS |
||||
%add_to_doc_files Source/WebCore/icu/LICENSE |
||||
%add_to_doc_files Source/WebCore/LICENSE-APPLE |
||||
%add_to_doc_files Source/WebCore/LICENSE-LGPL-2 |
||||
%add_to_doc_files Source/WebCore/LICENSE-LGPL-2.1 |
||||
%add_to_doc_files Source/JavaScriptCore/COPYING.LIB |
||||
%add_to_doc_files Source/JavaScriptCore/THANKS |
||||
%add_to_doc_files Source/JavaScriptCore/AUTHORS |
||||
%add_to_doc_files Source/JavaScriptCore/icu/README |
||||
%add_to_doc_files Source/JavaScriptCore/icu/LICENSE |
||||
|
||||
%post -p /sbin/ldconfig |
||||
%postun -p /sbin/ldconfig |
||||
|
||||
%files -f WebKitGTK-3.0.lang |
||||
%doc %{_pkgdocdir}/ |
||||
%{_libdir}/libwebkitgtk-3.0.so.* |
||||
%{_libdir}/libjavascriptcoregtk-3.0.so.* |
||||
%{_libdir}/girepository-1.0/WebKit-3.0.typelib |
||||
%{_libdir}/girepository-1.0/JavaScriptCore-3.0.typelib |
||||
%dir %{_libexecdir}/%{name} |
||||
%{_libexecdir}/%{name}/GtkLauncher |
||||
%{_datadir}/webkitgtk-3.0 |
||||
|
||||
%files devel |
||||
%{_bindir}/jsc-3 |
||||
%{_includedir}/webkitgtk-3.0 |
||||
%{_libdir}/libwebkitgtk-3.0.so |
||||
%{_libdir}/libjavascriptcoregtk-3.0.so |
||||
%{_libdir}/pkgconfig/webkitgtk-3.0.pc |
||||
%{_libdir}/pkgconfig/javascriptcoregtk-3.0.pc |
||||
%{_datadir}/gir-1.0/WebKit-3.0.gir |
||||
%{_datadir}/gir-1.0/JavaScriptCore-3.0.gir |
||||
|
||||
%files doc |
||||
%dir %{_datadir}/gtk-doc |
||||
%dir %{_datadir}/gtk-doc/html |
||||
%{_datadir}/gtk-doc/html/webkitgtk |
||||
%{_datadir}/gtk-doc/html/webkitdomgtk |
||||
|
||||
%changelog |
||||
* Mon Feb 27 2017 Tomas Popela <tpopela@redhat.com> - 2.4.11-2 |
||||
- Don't build WebKit2 as it's build in webkitgtk4 package |
||||
- Resolves: rhbz#1383614 |
||||
|
||||
* Mon Feb 13 2017 Tomas Popela <tpopela@redhat.com> - 2.4.11-1 |
||||
- Update to 2.4.11 |
||||
- Resolves: rhbz#1326714 |
||||
|
||||
* Thu Jun 23 2016 Tomas Popela <tpopela@redhat.com> - 2.4.9-6 |
||||
- Update the translations |
||||
- Resolves: rhbz#1302692 |
||||
|
||||
* Mon Sep 14 2015 Tomas Popela <tpopela@redhat.com> - 2.4.9-5 |
||||
- Initialize string in SQLiteStatement before using it |
||||
- Resolves: rhbz#1259283 |
||||
|
||||
* Mon Jun 22 2015 Tomas Popela <tpopela@redhat.com> - 2.4.9-4 |
||||
- Remove deprecation from webkit_dom_html_element_get/set_id |
||||
- Resolves: rhbz#1174556 |
||||
|
||||
* Fri May 29 2015 Tomas Popela <tpopela@redhat.com> - 2.4.9-3 |
||||
- Fix some of rpmdiff warnings |
||||
- Resolves: rhbz#1174556 |
||||
|
||||
* Thu May 21 2015 Tomas Popela <tpopela@redhat.com> - 2.4.9-2 |
||||
- Compile with -fno-strict-aliasing |
||||
- Resolves: rhbz#1174556 |
||||
- Update translations |
||||
- Resolves: rhbz#1223643 |
||||
|
||||
* Wed May 20 2015 Tomas Popela <tpopela@redhat.com> - 2.4.9-1 |
||||
- Update to 2.4.9 |
||||
- Resolves: rhbz#1174556 |
||||
|
||||
* Wed Aug 20 2014 Dan Horák <dhorak@redhat.com> - 2.0.4-9 |
||||
- refresh ppc64le patch, use %%{power64} for conditions in spec |
||||
- Resolves: rhbz#1125710 |
||||
|
||||
* Mon Aug 04 2014 Tomas Popela <tpopela@redhat.com> - 2.0.4-8 |
||||
- Add support for ppc64le |
||||
- Resolves: rhbz#1125710 |
||||
|
||||
* Mon May 12 2014 Tomas Popela <tpopela@redhat.com> - 2.0.4-7 |
||||
- Fix memory align in JSC for ppc64 |
||||
- Fix CLoop for ppc64 and s390x |
||||
- Resolves: rhbz#1019801 |
||||
|
||||
* Tue Jan 28 2014 Tomas Popela <tpopela@redhat.com> - 2.0.4-6 |
||||
- Enable higher compression for output rpms |
||||
- Resolves: rhbz#1039590 |
||||
- Avoid video player to set system volume to 100% |
||||
- Resolves: rhbz#1029783 |
||||
|
||||
* Tue Jan 28 2014 Tomas Popela <tpopela@redhat.com> - 2.0.4-5 |
||||
- Update translations |
||||
- Resolves: rhbz#1030388 |
||||
|
||||
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.0.4-4 |
||||
- Mass rebuild 2014-01-24 |
||||
|
||||
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.0.4-3 |
||||
- Mass rebuild 2013-12-27 |
||||
|
||||
* Tue Nov 5 2013 Tomas Popela <tpopela@redhat.com> - 2.0.4-2 |
||||
- Let webkitgtk3 compile on aarch64 |
||||
- Resolves: rhbz#1026479 |
||||
|
||||
* Wed Oct 2 2013 Tomas Popela <tpopela@redhat.com> - 2.0.4-1 |
||||
- Update to 2.0.4 |
||||
- Resolves: rhbz#1013726 |
||||
|
||||
* Tue Jun 11 2013 Kalev Lember <kalevlember@gmail.com> - 2.0.3-1 |
||||
- Update to 2.0.3 |
||||
|
||||
* Fri Jun 07 2013 Kalev Lember <kalevlember@gmail.com> - 2.0.2-3 |
||||
- Link with harfbuzz-icu (split into separate library in harfbuzz 0.9.18) |
||||
|
||||
* Mon Jun 03 2013 Kalev Lember <kalevlember@gmail.com> - 2.0.2-2 |
||||
- Remove glib-compile-schemas scriptlets: the schemas are no longer installed |
||||
- Add ldconfig calls to the libwebkit2gtk subpackage |
||||
- Remove rpath from MiniBrowser |
||||
- Re-enable full debuginfo (#861452) |
||||
|
||||
* Mon May 13 2013 Tomas Popela <tpopela@redhat.com> - 2.0.2-1 |
||||
- Update to 2.0.2 |
||||
|
||||
* Mon May 6 2013 Matthias Clasen <mclasen@redhat.com> - 2.0.1-2 |
||||
- Split libwebkit2gtk off into a subpackage to avoid |
||||
pulling this 35M behemoth of a library onto the livecd |
||||
needlessly |
||||
|
||||
* Tue Apr 16 2013 Tomas Popela <tpopela@redhat.com> - 2.0.1-1 |
||||
- Update to 2.0.1 |
||||
|
||||
* Thu Apr 11 2013 Tomas Popela <tpopela@redhat.com> - 2.0.0-3 |
||||
- Add fix for broken GObject casting |
||||
|
||||
* Wed Apr 3 2013 Tomas Popela <tpopela@redhat.com> - 2.0.0-2 |
||||
- Apply double2intsPPC32.patch also on s390 |
||||
|
||||
* Wed Mar 27 2013 Tomas Popela <tpopela@redhat.com> - 2.0.0-1 |
||||
- Update to 2.0.0 |
||||
- Update BR versions |
||||
- Drop unused patches |
||||
|
||||
* Wed Mar 20 2013 Kalev Lember <kalevlember@gmail.com> - 1.11.92-1 |
||||
- Update to 1.11.92 |
||||
|
||||
* Fri Mar 08 2013 Tomas Popela <tpopela@redhat.com> 1.11.91-1 |
||||
- Update to 1.11.91 |
||||
- Fix for RH bug #915990 - Seed segfaults in JSC::LLInt::CLoop::execute() |
||||
|
||||
* Mon Feb 25 2013 Tomas Popela <tpopela@redhat.com> 1.11.90-3 |
||||
- Fix for not building on ppc32 with JIT disabled |
||||
|
||||
* Sat Feb 23 2013 Kevin Fenzi <kevin@scrye.com> 1.11.90-2 |
||||
- Add webkit2 MiniBrowser |
||||
|
||||
* Fri Feb 22 2013 Kalev Lember <kalevlember@gmail.com> - 1.11.90-1 |
||||
- Update to 1.11.90 |
||||
|
||||
* Fri Feb 22 2013 Tomas Popela <tpopela@redhat.com> 1.11.5-5 |
||||
- Fix for not building on ppc32 with JIT disabled |
||||
- BR libatomic (needs gcc >= 4.8.0) for ppc32 |
||||
|
||||
* Mon Feb 18 2013 Tomas Popela <tpopela@redhat.com> 1.11.5-4 |
||||
- Backported fixes for not building with disabled JIT |
||||
|
||||
* Sat Feb 16 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.11.5-3 |
||||
- Re-enable JIT on ARM (hopefully the gmail crash is fixed) |
||||
|
||||
* Thu Feb 14 2013 Tomas Popela <tpopela@redhat.com> 1.11.5-2 |
||||
- Add upstream patch for RH bug #908143 - AccessibilityTableRow::parentTable crash |
||||
|
||||
* Wed Feb 06 2013 Kalev Lember <kalevlember@gmail.com> - 1.11.5-1 |
||||
- Update to 1.11.5 |
||||
- Drop upstreamed patches |
||||
|
||||
* Wed Jan 30 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.11.4-5 |
||||
- Rebuild against new icu again |
||||
|
||||
* Sat Jan 26 2013 Kalev Lember <kalevlember@gmail.com> - 1.11.4-4 |
||||
- Rebuilt for icu 50 |
||||
|
||||
* Fri Jan 25 2013 Kalev Lember <kalevlember@gmail.com> - 1.11.4-3 |
||||
- Backport a fix for a crash in AccessibilityTableCell::parentTable() |
||||
|
||||
* Mon Jan 21 2013 Adam Tkac <atkac redhat com> - 1.11.4-2 |
||||
- rebuild due to "jpeg8-ABI" feature drop |
||||
|
||||
* Wed Jan 16 2013 Kalev Lember <kalevlember@gmail.com> - 1.11.4-1 |
||||
- Update to 1.11.4 |
||||
- Remove conditional pango deps; the build now uses harfbuzz directly |
||||
- BR libwebp-devel |
||||
- Drop upstreamed librt linking patch |
||||
|
||||
* Tue Dec 18 2012 Dan Horák <dan[at]danny.cz> - 1.11.2-3 |
||||
- fix 32-bit non-JIT arches |
||||
|
||||
* Tue Dec 18 2012 Dan Horák <dan[at]danny.cz> - 1.11.2-2 |
||||
- fix build for non-JIT arches |
||||
|
||||
* Sat Nov 24 2012 Kalev Lember <kalevlember@gmail.com> - 1.11.2-1 |
||||
- Update to 1.11.2 |
||||
- Add a patch to explicitly link with librt |
||||
|
||||
* Wed Oct 17 2012 Kalev Lember <kalevlember@gmail.com> - 1.10.1-1 |
||||
- Update to 1.10.1 |
||||
- Enable the parallel build |
||||
- Drop the upstreamed Geode-compatibility patch |
||||
|
||||
* Fri Oct 5 2012 Daniel Drake <dsd@laptop.org> - 1.10.0-2 |
||||
- Restore compatibility with AMD Geode processors |
||||
|
||||
* Mon Sep 24 2012 Kalev Lember <kalevlember@gmail.com> - 1.10.0-1 |
||||
- Update to 1.10.0 |
||||
- Adjust for webkit -> webkitgtk upstream tarball rename |
||||
|
||||
* Wed Sep 19 2012 Kalev Lember <kalevlember@gmail.com> - 1.9.92-2 |
||||
- Build with gstreamer1 |
||||
|
||||
* Wed Sep 19 2012 Kalev Lember <kalevlember@gmail.com> - 1.9.92-1 |
||||
- Update to 1.9.92 |
||||
|
||||
* Wed Sep 05 2012 Kalev Lember <kalevlember@gmail.com> - 1.9.91-1 |
||||
- Update to 1.9.91 |
||||
|
||||
* Sun Sep 2 2012 Matthias Clasen <mclasen@redhat.com> - 1.9.90-2 |
||||
- Rebuild |
||||
|
||||
* Wed Aug 29 2012 Daniel Drake <dsd@laptop.org> - 1.9.90-1 |
||||
- Update to latest release (#850520) |
||||
|
||||
* Thu Aug 9 2012 Daniel Drake <dsd@laptop.org> - 1.9.5-2 |
||||
- Add upstream patch to fix build without JIT (#843428) |
||||
- Add upstream patch to fix build with latest gcc/bison |
||||
|
||||
* Wed Jul 18 2012 Kalev Lember <kalevlember@gmail.com> - 1.9.5-1 |
||||
- Update to 1.9.5 |
||||
- Build with -g1 to avoid running into 4 GB ar format limit |
||||
|
||||
* Wed Jul 11 2012 Ville Skyttä <ville.skytta@iki.fi> - 1.9.4-3 |
||||
- Fix %%post scriptlet dependencies. |
||||
|
||||
* Wed Jul 04 2012 Dan Horák <dan[at]danny.cz> - 1.9.4-2 |
||||
- apply workaround for s390x until #835957 is resolved (static library archive > 4 GB) |
||||
|
||||
* Thu Jun 28 2012 Kalev Lember <kalevlember@gmail.com> - 1.9.4-1 |
||||
- Update to 1.9.4 |
||||
|
||||
* Thu Jun 07 2012 Kalev Lember <kalevlember@gmail.com> - 1.9.3-1 |
||||
- Update to 1.9.3 |
||||
- Build webkit2gtk and BR gtk2-devel for its plugin process |
||||
|
||||
* Tue May 15 2012 Karsten Hopp <karsten@redhat.com> 1.8.1-3 |
||||
- disable JIT on PPC(64) as the autodetection enables it even if not supported |
||||
|
||||
* Mon May 14 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.8.1-2 |
||||
- Explicitly disable JIT on ARM as it's not currently stable with JS heavy pages |
||||
|
||||
* Tue Apr 24 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.1-1 |
||||
- Update to 1.8.1 |
||||
- Dropped the backported patches |
||||
- Remove lib64 rpaths with chrpath |
||||
- Update gsettings rpm scriptlets |
||||
|
||||
* Wed Apr 18 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.8.0-3 |
||||
- Add upstream patch to fix crash when SSE2 isn't present |
||||
- Add upstream patch to flickering when some widgets are drawn |
||||
|
||||
* Mon Apr 09 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.0-2 |
||||
- Finish splitting out a -doc subpackage (#808917) |
||||
|
||||
* Wed Mar 28 2012 Richard Hughes <rhughes@redhat.com> - 1.8.0-1 |
||||
- Update to 1.8.0. |
||||
|
||||
* Sat Mar 24 2012 Dan Horák <dan[at]danny.cz> - 1.7.92-2 |
||||
- add ppc to low mem arches |
||||
- decrease debuginfo verbosity on s390 to save memory |
||||
|
||||
* Wed Mar 21 2012 Kalev Lember <kalevlember@gmail.com> - 1.7.92-1 |
||||
- Update to 1.7.92 |
||||
- Don't pass --enable-geolocation to configure; it's now enabled by default |
||||
|
||||
* Thu Mar 15 2012 Karsten Hopp <karsten@redhat.com> 1.7.91-2 |
||||
- disable jit on ppc(64) |
||||
|
||||
* Thu Mar 8 2012 Matthias Clasen <mclasen@redhat.com> - 1.7.91-1 |
||||
- Update to 1.7.91 |
||||
|
||||
* Tue Feb 28 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7.5-3 |
||||
- Add ARM to and optimise compile flags for low mem arches |
||||
|
||||
* Mon Feb 20 2012 Dan Horák <dan[at]danny.cz> - 1.7.5-2 |
||||
- don't enable jit on s390(x) |
||||
|
||||
* Tue Feb 7 2012 Matthias Clasen <mclasen@redhat.com> - 1.7.5-1 |
||||
- Update to 1.7.5 |
||||
|
||||
* Tue Jan 17 2012 Matthias Clasen <mclasen@redhat.com> - 1.7.4-1 |
||||
- Update to 1.7.4 |
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.3-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Tue Dec 20 2011 Matthias Clasen <mclasen@redhat.com> - 1.7.3-1 |
||||
- Update to 1.7.3 |
||||
|
||||
* Thu Nov 24 2011 Tomas Bzatek <tbzatek@redhat.com> - 1.7.2-1 |
||||
- Update to 1.7.2 |
||||
|
||||
* Mon Nov 7 2011 Matthias Clasen <mclasen@redhat.com> 1.7.1-2 |
||||
- Rebuild against new libpng |
||||
|
||||
* Wed Nov 2 2011 Matthias Clasen <mclasen@redhat.com> 1.7.1-1 |
||||
- Update to 1.7.1 |
||||
|
||||
* Wed Oct 12 2011 Dan Horák <dan[at]danny.cz> 1.6.1-2 |
||||
- fix build on s390(x) |
||||
|
||||
* Wed Sep 28 2011 Ray Strode <rstrode@redhat.com> 1.6.1-1 |
||||
- Update to 1.6.1 |
||||
|
||||
* Fri Sep 09 2011 Caolán McNamara <caolanm@redhat.com> - 1.5.1-2 |
||||
- rebuild for icu 4.8.1 |
||||
|
||||
* Thu Jun 16 2011 Tomas Bzatek <tbzatek@redhat.com> - 1.5.1-1 |
||||
- Update to 1.5.1 |
||||
|
||||
* Tue Jun 14 2011 Bastien Nocera <bnocera@redhat.com> 1.4.0-3 |
||||
- Rebuild against newer GTK+ |
||||
|
||||
* Wed May 11 2011 Cosimo Cecchi <cosimoc@redhat.com> 1.4.0-2 |
||||
- Add a doc package for gtk-doc documentation |
||||
|
||||
* Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> 1.4.0-1 |
||||
- Update to 1.4.0 |
||||
|
||||
* Tue Mar 22 2011 Matthias Clasen <mclasen@redhat.com> 1.3.13-1 |
||||
- Update to 1.3.13 |
||||
|
||||
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> 1.3.10-3 |
||||
- Rebuild against newer gtk |
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.11-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> 1.3.11-1 |
||||
- 1.3.11 |
||||
|
||||
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> 1.3.10-2 |
||||
- Rebuild against newer gtk |
||||
|
||||
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> 1.3.10-1 |
||||
- Update to 1.3.10 |
||||
|
||||
* Sun Jan 9 2011 Matthias Clasen <mclasen@redhat.com> 1.3.9-1 |
||||
- Update to 1.3.9 |
||||
|
||||
* Fri Dec 3 2010 Matthias Clasen <mclasen@redhat.com> 1.3.7-2 |
||||
- Rebuild against new gtk |
||||
|
||||
* Wed Dec 1 2010 Matthias Clasen <mclasen@redhat.com> 1.3.7-1 |
||||
- Update to 1.3.7 |
||||
|
||||
* Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> 1.3.6-1 |
||||
- Update to 1.3.6 |
||||
- Disable the s390 patch again :-( Upstream it, maybe ? |
||||
|
||||
* Thu Nov 11 2010 Dan Horák <dan[at]danny.cz> - 1.3.5-2 |
||||
- Updated and re-enabled the s390 patch |
||||
|
||||
* Mon Nov 1 2010 Matthias Clasen <mclasen@redhat.com> 1.3.5-1 |
||||
- Update to 1.3.5 |
||||
|
||||
* Wed Sep 29 2010 jkeating - 1.3.4-3 |
||||
- Rebuilt for gcc bug 634757 |
||||
|
||||
* Fri Sep 24 2010 Matthias Clasen <mclasen@redhat.com> 1.3.4-2 |
||||
- Enable JIT/patch for execmem |
||||
- Move inspector to the main package |
||||
|
||||
* Thu Sep 23 2010 Matthias Clasen <mclasen@redhat.com> 1.3.4-1 |
||||
- Update to 1.3.4 |
||||
|
||||
* Wed Aug 25 2010 Dan Horák <dan[at]danny.cz> - 1.3.3-4 |
||||
- Do not generate debug information to prevent linker memory exhaustion on s390 with its 2 GB address space |
||||
|
||||
* Wed Jul 21 2010 Dan Horák <dan[at]danny.cz> - 1.3.3-3 |
||||
- Fix build on s390(x) |
||||
|
||||
* Thu Jul 15 2010 Colin Walters <walters@verbum.org> - 1.3.3-2 |
||||
- Rebuild with new gobject-introspection |
||||
|
||||
* Fri Jul 9 2010 Matthias Clasen <mclasen@redhat.com> 1.3.2-2 |
||||
- Fix conflicting gettext domain with webkitgtk |
||||
- Drop the -doc subpackage |
||||
|
||||
* Thu Jul 1 2010 Matthias Clasen <mclasen@redhat.com> 1.3.2-1 |
||||
- Initial packaging |
Loading…
Reference in new issue