From 4f2f2fee7e6bd8725894e82df6ecad79e80be057 Mon Sep 17 00:00:00 2001 From: guibuilder_pel7x64builder0 Date: Sun, 16 Dec 2018 14:36:06 +0100 Subject: [PATCH] all gui updates for now Signed-off-by: guibuilder_pel7x64builder0 --- SOURCES/cloop-big-endians.patch | 30 + SOURCES/fedora-crypto-policy.patch | 24 + SOURCES/python-xapp-1.0.1-setup_py_ver.patch | 22 + SOURCES/user-agent-branding.patch | 13 + ...-2.4.9-disable_deprecated_get_set_id.patch | 38 ++ SPECS/caribou.spec | 436 ++++++++++++++ SPECS/control-center.spec | 14 +- SPECS/evolution-data-server.spec | 18 +- SPECS/girara.spec | 9 +- SPECS/glade.spec | 4 +- SPECS/gnome-online-accounts.spec | 4 +- SPECS/gnome-shell.spec | 19 +- SPECS/gvfs.spec | 121 ++-- SPECS/llvm.spec | 5 +- SPECS/mupdf.spec | 3 + SPECS/openbox.spec | 7 +- SPECS/pyatspi.spec | 331 +++++++++++ SPECS/python-xapp.spec | 161 +++++ SPECS/webkit2gtk3.spec | 335 +++++++++++ SPECS/webkitgtk3.spec | 559 ++++++++++++++++++ SPECS/webkitgtk4.spec | 20 +- SPECS/xpdf.spec | 5 +- SPECS/zathura.spec | 2 +- 23 files changed, 2072 insertions(+), 108 deletions(-) create mode 100644 SOURCES/cloop-big-endians.patch create mode 100644 SOURCES/fedora-crypto-policy.patch create mode 100644 SOURCES/python-xapp-1.0.1-setup_py_ver.patch create mode 100644 SOURCES/user-agent-branding.patch create mode 100644 SOURCES/webkitgtk-2.4.9-disable_deprecated_get_set_id.patch create mode 100644 SPECS/caribou.spec create mode 100644 SPECS/pyatspi.spec create mode 100644 SPECS/python-xapp.spec create mode 100644 SPECS/webkit2gtk3.spec create mode 100644 SPECS/webkitgtk3.spec diff --git a/SOURCES/cloop-big-endians.patch b/SOURCES/cloop-big-endians.patch new file mode 100644 index 0000000..7bb12df --- /dev/null +++ b/SOURCES/cloop-big-endians.patch @@ -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(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(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(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(op.operand); + + break; + } diff --git a/SOURCES/fedora-crypto-policy.patch b/SOURCES/fedora-crypto-policy.patch new file mode 100644 index 0000000..8a317db --- /dev/null +++ b/SOURCES/fedora-crypto-policy.patch @@ -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(); diff --git a/SOURCES/python-xapp-1.0.1-setup_py_ver.patch b/SOURCES/python-xapp-1.0.1-setup_py_ver.patch new file mode 100644 index 0000000..0012c68 --- /dev/null +++ b/SOURCES/python-xapp-1.0.1-setup_py_ver.patch @@ -0,0 +1,22 @@ +From 858a9bdefa09b13721738a3f471bede13e91c5b8 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= +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", diff --git a/SOURCES/user-agent-branding.patch b/SOURCES/user-agent-branding.patch new file mode 100644 index 0000000..d87f3e7 --- /dev/null +++ b/SOURCES/user-agent-branding.patch @@ -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()); + } + diff --git a/SOURCES/webkitgtk-2.4.9-disable_deprecated_get_set_id.patch b/SOURCES/webkitgtk-2.4.9-disable_deprecated_get_set_id.patch new file mode 100644 index 0000000..dbab645 --- /dev/null +++ b/SOURCES/webkitgtk-2.4.9-disable_deprecated_get_set_id.patch @@ -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); + + /** diff --git a/SPECS/caribou.spec b/SPECS/caribou.spec new file mode 100644 index 0000000..97aa345 --- /dev/null +++ b/SPECS/caribou.spec @@ -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 - 0.4.21-9 +- Fix gnome missing schema issue + +* Sat Apr 28 2018 Leigh Scott - 0.4.21-8 +- Unretire +- Change autostart as gnome-shell has it's own builtin OSK application + +* Wed Feb 07 2018 Fedora Release Engineering - 0.4.21-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sat Feb 03 2018 Igor Gnatenko - 0.4.21-6 +- Switch to %%ldconfig_scriptlets + +* Wed Aug 02 2017 Fedora Release Engineering - 0.4.21-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 0.4.21-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 0.4.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Dec 19 2016 Miro Hrončok - 0.4.21-2 +- Rebuild for Python 3.6 + +* Sun Jul 24 2016 Parag Nemade - 0.4.21-1 +- Update to 0.4.21 + +* Tue Jul 19 2016 Fedora Release Engineering - 0.4.20-3 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Thu Jun 30 2016 Parag Nemade - 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 - 0.4.20-1 +- Update to 0.4.20 + +* Wed Feb 03 2016 Fedora Release Engineering - 0.4.19-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Nov 10 2015 Fedora Release Engineering - 0.4.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Wed Oct 14 2015 Parag Nemade - 0.4.19-1 +- Update to 0.4.19 + +* Fri Oct 09 2015 Parag Nemade - 0.4.18.1-3 +- Resolves:rh#1228935: gnome-shell: strlen(): gnome-shell killed by SIGSEGV + +* Wed Jun 17 2015 Fedora Release Engineering - 0.4.18.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Wed Apr 15 2015 Kalev Lember - 0.4.18.1-1 +- Update to 0.4.18.1 + +* Thu Apr 09 2015 Parag Nemade - 0.4.18-3 +- Resolves:rh#1210302: Fix dependencies for python{,3}-caribou + +* Thu Apr 02 2015 Parag Nemade - 0.4.18-2 +- Change Cariou to pull python3-caribou default in F23 + +* Mon Mar 23 2015 Kalev Lember - 0.4.18-1 +- Update to 0.4.18 + +* Fri Feb 20 2015 Parag Nemade - 0.4.17-2 +- Added python3 subpackage + +* Tue Feb 17 2015 Parag Nemade - 0.4.17-1 +- Update to 0.4.17 + +* Tue Nov 25 2014 Parag Nemade - 0.4.16-1 +- Update to 0.4.16 + +* Tue Sep 16 2014 Parag Nemade - 0.4.15-1 +- Update to 0.4.15 + +* Sun Sep 07 2014 Kalev Lember - 0.4.14-2 +- Fix a possible crash with new dbus activation code (#1138934) + +* Wed Sep 03 2014 Kalev Lember - 0.4.14-1 +- Update to 0.4.14 + +* Fri Aug 15 2014 Fedora Release Engineering - 0.4.13-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Tue Jul 22 2014 Kalev Lember - 0.4.13-6 +- Rebuilt for gobject-introspection 1.41.4 + +* Sat Jun 07 2014 Fedora Release Engineering - 0.4.13-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu Feb 20 2014 Kalev Lember - 0.4.13-4 +- Rebuilt for cogl soname bump + +* Mon Feb 10 2014 Peter Hutterer - 0.4.13-3 +- Rebuild for libevdev soname bump + +* Wed Feb 05 2014 Kalev Lember - 0.4.13-2 +- Rebuilt for cogl soname bump + +* Tue Nov 19 2013 Richard Hughes - 0.4.13-1 +- Update to 0.4.13 + +* Sat Aug 24 2013 Parag Nemade - 0.4.12-1 +- Update to 0.4.12 + +* Fri Aug 09 2013 Kalev Lember - 0.4.11-3 +- Rebuilt for cogl 1.15.4 soname bump + +* Sat Aug 03 2013 Fedora Release Engineering - 0.4.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Mon Jun 10 2013 Parag Nemade - 0.4.11-1 +- Update to 0.4.11 + +* Wed Mar 20 2013 Richard Hughes - 0.4.10-1 +- Update to 0.4.10 + +* Mon Mar 04 2013 Parag Nemade - 0.4.9-1 +- Update to 0.4.9 + +* Thu Feb 21 2013 Kalev Lember - 0.4.8-2 +- Rebuilt for cogl soname bump + +* Tue Feb 19 2013 Parag Nemade - 0.4.8-1 +- Update to 0.4.8 + +* Wed Feb 13 2013 Fedora Release Engineering - 0.4.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Jan 16 2013 Parag Nemade - 0.4.7-2 +- vala .vapi and .deps files should be installed by -devel + +* Wed Jan 16 2013 Parag Nemade - 0.4.7-1 +- Update to 0.4.7 + +* Thu Dec 20 2012 Parag Nemade - 0.4.6-1 +- Update to 0.4.6 + +* Tue Dec 18 2012 Parag Nemade - 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 - 0.4.4.2-6 +- Resolves:rh#878716 - need some spec cleanup + +* Thu Nov 15 2012 Parag Nemade - 0.4.4.2-5 +- Apply patch1 + +* Tue Nov 13 2012 Parag Nemade - 0.4.4.2-4 +- Patch from Rui Matos for exec python in shell shim scripts + +* Tue Nov 13 2012 Parag Nemade - 0.4.4.2-3 +- Fix multilib patch + +* Tue Nov 13 2012 Rui Matos - 0.4.4.2-2 +- Fix dependencies, caribou and antler both need python-caribou + +* Tue Nov 13 2012 Parag Nemade - 0.4.4.2-1 +- Update to 0.4.4.2 release + +* Thu Sep 06 2012 Richard Hughes - 0.4.4-1 +- Update to 0.4.4 + +* Wed Jul 25 2012 Kalev Lember - 0.4.3-3 +- Correct the obsoletes + +* Tue Jul 24 2012 Kalev Lember - 0.4.3-2 +- Obsolete gok + +* Thu Jul 19 2012 Parag Nemade - 0.4.3-1 +- Update to 0.4.3 release + +* Wed Jul 18 2012 Fedora Release Engineering - 0.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Mar 27 2012 Parag Nemade - 0.4.2-1 +- Update to 0.4.2 release + +* Tue Feb 07 2012 Parag Nemade - 0.4.1-5 +- Resolves:rh#768033 - Update Requires for caribou + +* Thu Jan 12 2012 Fedora Release Engineering - 0.4.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Fri Dec 09 2011 Parag Nemade - 0.4.1-3 +- split package to subpackages -gtk2-module, -gtk3-module, -antler and python-caribou + +* Thu Nov 17 2011 Parag Nemade - 0.4.1-2 +- Resolves:rh#753149 - Upgraded F15 -> F16 gnome fails - wrong version of caribou + +* Tue Oct 18 2011 Parag Nemade - 0.4.1-1 +- upstream release 0.4.1 + +* Tue Sep 27 2011 Parag Nemade - 0.4.0-1 +- upstream release 0.4.0 + +* Tue Sep 20 2011 Parag Nemade - 0.3.92-1 +- upstream release 0.3.92 + +* Tue Sep 06 2011 Parag Nemade - 0.3.91-1 +- Update to new upstream release 0.3.91 + +* Wed Aug 31 2011 Matthias Clasen - 0.3.5-2 +- Rebuild with pygobject3 + +* Thu Aug 18 2011 Matthias Clasen - 0.3.5-1 +- Update to 0.3.5 + +* Tue Jul 05 2011 Parag Nemade - 0.3.3-1 +- Update to new upstream release 0.3.3 + +* Thu Jun 16 2011 Tomas Bzatek - 0.3.2-2 +- Tweak BuildRequires + +* Tue Jun 14 2011 Parag Nemade - 0.3.2-1 +- Update to new upstream release 0.3.2 + +* Fri May 6 2011 Christopher Aillon - 0.2.00-3 +- Update scriptlets per packaging guidelines + +* Thu May 05 2011 Parag Nemade - 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 - 0.2.00-1 +- Update to 0.2.00 + +* Tue Mar 22 2011 Parag Nemade - 0.1.92-1 +- Update to 0.1.92 + +* Thu Mar 10 2011 Parag Nemade - 0.1.91-1 +- Update to 0.1.91 + +* Thu Mar 10 2011 Parag Nemade - 0.1.7-1 +- Update to 0.1.7 + +* Tue Feb 08 2011 Fedora Release Engineering - 0.1.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Jul 21 2010 David Malcolm - 0.1.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Mon Jul 12 2010 Matthias Clasen - 0.1.5-1 +- Update to 0.1.5 + +* Wed Jun 16 2010 Matthias Clasen - 0.1.2-3 +- Require pyatspi, not at-spi-python + +* Sat May 29 2010 Matthias Clasen - 0.1.2-2 +- Rewrite spec for autotools + +* Fri May 28 2010 Matthias Clasen - 0.1.2-1 +- Update to 0.1.2 + +* Wed Jan 21 2009 Ben Konrath - 0.0.2-1 +- Initial release. diff --git a/SPECS/control-center.spec b/SPECS/control-center.spec index 0f986aa..075574b 100644 --- a/SPECS/control-center.spec +++ b/SPECS/control-center.spec @@ -46,8 +46,8 @@ BuildRequires: pkgconfig(gdk-wayland-3.0) BuildRequires: pkgconfig(gio-2.0) >= %{glib2_version} BuildRequires: pkgconfig(gnome-desktop-3.0) >= %{gnome_desktop_version} BuildRequires: pkgconfig(gnome-settings-daemon) >= %{gsd_version} -BuildRequires: pkgconfig(goa-1.0) >= %{gnome_online_accounts_version} -BuildRequires: pkgconfig(goa-backend-1.0) +#BuildRequires: pkgconfig(goa-1.0) >= %{gnome_online_accounts_version} +#BuildRequires: pkgconfig(goa-backend-1.0) BuildRequires: pkgconfig(grilo-0.3) BuildRequires: pkgconfig(gsettings-desktop-schemas) >= %{gsettings_desktop_schemas_version} BuildRequires: pkgconfig(gtk+-3.0) >= %{gtk3_version} @@ -77,7 +77,7 @@ BuildRequires: pkgconfig(libwacom) Requires: cheese-libs%{?_isa} >= %{cheese_version} Requires: glib2%{?_isa} >= %{glib2_version} Requires: gnome-desktop3%{?_isa} >= %{gnome_desktop_version} -Requires: gnome-online-accounts%{?_isa} >= %{gnome_online_accounts_version} +#Requires: gnome-online-accounts%{?_isa} >= %{gnome_online_accounts_version} Requires: gnome-settings-daemon%{?_isa} >= %{gsd_version} Requires: gsettings-desktop-schemas%{?_isa} >= %{gsettings_desktop_schemas_version} Requires: gtk3%{?_isa} >= %{gtk3_version} @@ -144,7 +144,13 @@ utilities. %build #sed -e "/config_h.set('USER_DIR_MODE', 0700,/,+2d" -i meson.build -sed "s/config_h.set('USER_DIR_MODE', 0700,/config_h.set('USER_DIR_MODE', '0700',/" -i meson.build +sed "s/config_h.set('USER_DIR_MODE', 0700,/config_h.set('USER_DIR_MODE', '0700',/" -i meson.build +sed "/goa_dep = dependency('goa-1.0', version: goa_req_version)/d" -i meson.build +sed "/'online-accounts',/d" -i panels/meson.build +sed "/goa_dep,/d" -i panels/background/meson.build +sed "/'cc-background-grilo-miner.c',/d" -i panels/background/meson.build +sed '/"online-accounts",/d' -i shell/cc-panel-list.c +sed '/PANEL_TYPE("online-accounts", cc_goa_panel_get_type ),/d' -i shell/cc-panel-loader.c %meson -Ddocumentation=true %meson_build diff --git a/SPECS/evolution-data-server.spec b/SPECS/evolution-data-server.spec index c9e7f1b..09e7c04 100644 --- a/SPECS/evolution-data-server.spec +++ b/SPECS/evolution-data-server.spec @@ -84,7 +84,7 @@ BuildRequires: pkgconfig(gio-unix-2.0) >= %{glib2_version} BuildRequires: pkgconfig(gmodule-2.0) >= %{glib2_version} BuildRequires: pkgconfig(icu-i18n) BuildRequires: pkgconfig(gtk+-3.0) >= %{gtk3_version} -BuildRequires: pkgconfig(goa-1.0) >= %{goa_version} +#BuildRequires: pkgconfig(goa-1.0) >= %{goa_version} BuildRequires: pkgconfig(libgdata) >= %{libgdata_version} BuildRequires: pkgconfig(gweather-3.0) >= %{libgweather_version} BuildRequires: pkgconfig(libical) >= %{libical_version} @@ -94,7 +94,7 @@ BuildRequires: pkgconfig(libxml-2.0) BuildRequires: pkgconfig(nspr) BuildRequires: pkgconfig(nss) >= %{nss_version} BuildRequires: pkgconfig(sqlite3) >= %{sqlite_version} -BuildRequires: pkgconfig(webkit2gtk-4.0) >= %{webkit2gtk_version} +#BuildRequires: pkgconfig(webkit2gtk-4.0) >= %{webkit2gtk_version} BuildRequires: pkgconfig(json-glib-1.0) >= %{json_glib_version} %if %{ldap_support} @@ -120,14 +120,14 @@ Summary: Development files for building against %{name} Group: Development/Libraries Requires: %{name}%{?_isa} = %{version}-%{release} -Requires: pkgconfig(goa-1.0) >= %{goa_version} +#Requires: pkgconfig(goa-1.0) >= %{goa_version} Requires: pkgconfig(libgdata) >= %{libgdata_version} Requires: pkgconfig(gweather-3.0) >= %{libgweather_version} Requires: pkgconfig(libical) >= %{libical_version} Requires: pkgconfig(libsecret-unstable) >= %{libsecret_version} Requires: pkgconfig(libsoup-2.4) >= %{libsoup_version} Requires: pkgconfig(sqlite3) >= %{sqlite_version} -Requires: pkgconfig(webkit2gtk-4.0) >= %{webkit2gtk_version} +#Requires: pkgconfig(webkit2gtk-4.0) >= %{webkit2gtk_version} Requires: pkgconfig(json-glib-1.0) >= %{json_glib_version} %description devel @@ -241,6 +241,8 @@ export CFLAGS="$RPM_OPT_FLAGS -DLDAP_DEPRECATED -fPIC -I%{_includedir}/et -Wno-d %cmake -G "Unix Makefiles" \ -DENABLE_MAINTAINER_MODE=OFF \ + -DENABLE_GOA=OFF \ + -DENABLE_OAUTH2=OFF \ -DENABLE_UOA=OFF \ -DWITH_LIBDB=/usr \ -DENABLE_FILE_LOCKING=fcntl \ @@ -332,7 +334,7 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || : %{_userunitdir}/evolution-user-prompter.service %dir %{_libdir}/evolution-data-server -%dir %{credential_modules_dir} +#%dir %{credential_modules_dir} %dir %{camel_provider_dir} %dir %{ebook_backends_dir} %dir %{ecal_backends_dir} @@ -360,7 +362,7 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || : %{camel_provider_dir}/libcamelsmtp.urls # e-d-s extensions: -%{credential_modules_dir}/module-credentials-goa.so +#%{credential_modules_dir}/module-credentials-goa.so %{ebook_backends_dir}/libebookbackendfile.so %{ebook_backends_dir}/libebookbackendgoogle.so %{ebook_backends_dir}/libebookbackendldap.so @@ -373,8 +375,8 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || : %{ecal_backends_dir}/libecalbackendweather.so %{modules_dir}/module-cache-reaper.so %{modules_dir}/module-google-backend.so -%{modules_dir}/module-gnome-online-accounts.so -%{modules_dir}/module-oauth2-services.so +#%{modules_dir}/module-gnome-online-accounts.so +#%{modules_dir}/module-oauth2-services.so %{modules_dir}/module-outlook-backend.so %{modules_dir}/module-secret-monitor.so %{modules_dir}/module-trust-prompt.so diff --git a/SPECS/girara.spec b/SPECS/girara.spec index 4a79aef..ed62bc4 100644 --- a/SPECS/girara.spec +++ b/SPECS/girara.spec @@ -11,7 +11,7 @@ BuildRequires: gettext BuildRequires: glib2-devel >= 2.50 BuildRequires: gtk3-devel >= 3.20 BuildRequires: intltool -BuildRequires: json-c-devel +#BuildRequires: json-c-devel BuildRequires: libnotify-devel BuildRequires: meson >= 0.43 @@ -34,7 +34,6 @@ developing applications that use %{name}. sed -i "s/subdir('doc')//" meson.build sed -i "s/subdir('tests')//" meson.build - %build %meson %meson_build @@ -54,6 +53,12 @@ sed -i "s/subdir('tests')//" meson.build %{_libdir}/libgirara-gtk3.so %changelog +* Fri Nov 16 2018 Petr Šabata - 0.3.1-1 +- 0.3.1 bump + +* Fri Jul 13 2018 Fedora Release Engineering - 0.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri May 25 2018 Petr Šabata - 0.3.0-1 - 0.3.0 bump diff --git a/SPECS/glade.spec b/SPECS/glade.spec index 5aad1c1..46219da 100644 --- a/SPECS/glade.spec +++ b/SPECS/glade.spec @@ -21,7 +21,7 @@ BuildRequires: itstool BuildRequires: libxml2-devel BuildRequires: pygobject3-devel BuildRequires: python2-devel -BuildRequires: webkitgtk4-devel +#BuildRequires: webkitgtk4-devel BuildRequires: /usr/bin/appstream-util BuildRequires: /usr/bin/xsltproc @@ -129,7 +129,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %dir %{_libdir}/glade/modules/ %{_libdir}/glade/modules/libgladegtk.so %{_libdir}/glade/modules/libgladepython.so -%{_libdir}/glade/modules/libgladewebkit2gtk.so +#%{_libdir}/glade/modules/libgladewebkit2gtk.so %{_libdir}/libgladeui-2.so.* %{_datadir}/glade/ diff --git a/SPECS/gnome-online-accounts.spec b/SPECS/gnome-online-accounts.spec index 0a37a0f..ba3afea 100644 --- a/SPECS/gnome-online-accounts.spec +++ b/SPECS/gnome-online-accounts.spec @@ -23,7 +23,7 @@ BuildRequires: gettext >= %{gettext_version} BuildRequires: gtk-doc BuildRequires: intltool BuildRequires: krb5-devel -BuildRequires: pkgconfig(webkit2gtk-4.0) >= %{webkit2gtk3_version} +#BuildRequires: pkgconfig(webkit2gtk-4.0) >= %{webkit2gtk3_version} BuildRequires: pkgconfig(json-glib-1.0) BuildRequires: pkgconfig(libsecret-1) >= 0.7 BuildRequires: pkgconfig(libsoup-2.4) >= %{libsoup_version} @@ -38,7 +38,7 @@ Requires: gettext-libs%{?isa} >= %{gettext_version} Requires: glib2%{?_isa} >= %{glib2_version} Requires: gtk3%{?_isa} >= %{gtk3_version} Requires: libsoup%{?_isa} >= %{libsoup_version} -Requires: webkitgtk4%{?_isa} >= %{webkit2gtk3_version} +#Requires: webkitgtk4%{?_isa} >= %{webkit2gtk3_version} %description GNOME Online Accounts provides interfaces so that applications and libraries diff --git a/SPECS/gnome-shell.spec b/SPECS/gnome-shell.spec index e9c1898..323b9c5 100644 --- a/SPECS/gnome-shell.spec +++ b/SPECS/gnome-shell.spec @@ -67,7 +67,7 @@ BuildRequires: ibus-devel >= %{ibus_version} BuildRequires: chrpath BuildRequires: dbus-glib-devel BuildRequires: desktop-file-utils -BuildRequires: evolution-data-server-devel >= %{eds_version} +#BuildRequires: evolution-data-server-devel >= %{eds_version} BuildRequires: gcr-devel BuildRequires: gjs-devel >= %{gjs_version} BuildRequires: glib2-devel >= %{glib2_version} @@ -159,14 +159,15 @@ Requires: xdg-desktop-portal-gtk %if 0%{?rhel} # In Fedora, fedora-obsolete-packages obsoletes caribou -Obsoletes: caribou < 0.4.21-10 -Obsoletes: caribou-antler < 0.4.21-10 -Obsoletes: caribou-devel < 0.4.21-10 -Obsoletes: caribou-gtk2-module < 0.4.21-10 -Obsoletes: caribou-gtk3-module < 0.4.21-10 -Obsoletes: python-caribou < 0.4.21-10 -Obsoletes: python2-caribou < 0.4.21-10 -Obsoletes: python3-caribou < 0.4.21-10 +# We need caribou for cinnamon to work normally +#Obsoletes: caribou < 0.4.21-10 +#Obsoletes: caribou-antler < 0.4.21-10 +#Obsoletes: caribou-devel < 0.4.21-10 +#Obsoletes: caribou-gtk2-module < 0.4.21-10 +#Obsoletes: caribou-gtk3-module < 0.4.21-10 +#Obsoletes: python-caribou < 0.4.21-10 +#Obsoletes: python2-caribou < 0.4.21-10 +#Obsoletes: python3-caribou < 0.4.21-10 # Removed in RHEL 7.6 Obsoletes: gnome-shell-browser-plugin < 3.28.3-4 diff --git a/SPECS/gvfs.spec b/SPECS/gvfs.spec index 85fdfe1..dad76c9 100644 --- a/SPECS/gvfs.spec +++ b/SPECS/gvfs.spec @@ -1,50 +1,58 @@ %define with_nfs 0 -%global glib2_version 2.49.3 -%global libgdata_version 0.17.3 +%global avahi_version 0.6 +%global fuse_version 2.8.0 +%global gettext_version 0.19.4 +%global glib2_version 2.51.0 +%global goa_version 3.17.1 +%global gudev_version 147 +%global libarchive_version 3.0.22 +%global libcdio_paranoia_version 0.78.2 +%global libgcrypt_version 1.2.2 +%global libgdata_version 0.17.9 +%global libgphoto2_version 2.5.0 +%global libimobiledevice_version 1.2 +%global libmtp_version 1.1.12 +%global libnfs_version 1.9.8 +%global libplist_version 0.15 +%global libsmbclient_version 3.4.0 +%global libsoup_version 2.42.0 +%global libusb_version 1.0.21 +%global systemd_version 206 +%global talloc_version 1.3.0 +%global udisks2_version 1.97 Name: gvfs -Version: 1.30.4 -Release: 5%{?dist} +Version: 1.36.2 +Release: 1%{?dist} Summary: Backends for the gio framework in GLib License: GPLv3 and LGPLv2+ and BSD and MPLv2.0 URL: https://wiki.gnome.org/Projects/gvfs -Source0: https://download.gnome.org/sources/gvfs/1.30/gvfs-%{version}.tar.xz +Source0: https://download.gnome.org/sources/gvfs/1.36/gvfs-%{version}.tar.xz # http://bugzilla.gnome.org/show_bug.cgi?id=567235 Patch0: gvfs-archive-integration.patch -# https://bugzilla.redhat.com/show_bug.cgi?id=1440256 -Patch1: handle-securid-password-prompt.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=1465302 -Patch2: network-Do-not-spam-journal-by-useless-warnings.patch -Patch3: Add-missing-newline-characters-in-g_debug.patch -Patch4: network-Check-variable-before-dereferencing.patch -Patch5: client-Propagate-error-from-create_mount_tracker_pro.patch - BuildRequires: pkgconfig -BuildRequires: glib2-devel >= %{glib2_version} -# for post-install update-gio-modules and overall functionality -Requires: glib2%{?_isa} >= %{glib2_version} -BuildRequires: dbus-glib-devel -BuildRequires: gcr-devel +BuildRequires: pkgconfig(glib-2.0) >= %{glib2_version} +BuildRequires: pkgconfig(dbus-glib-1) +BuildRequires: pkgconfig(gcr-3) BuildRequires: /usr/bin/ssh -BuildRequires: libcdio-paranoia-devel -BuildRequires: libgudev1-devel -BuildRequires: libsoup-devel >= 2.34.0 -BuildRequires: pkgconfig(avahi-client) pkgconfig(avahi-glib) -BuildRequires: libsecret-devel -BuildRequires: gettext-devel -BuildRequires: libudisks2-devel -BuildRequires: libbluray-devel -BuildRequires: systemd-devel >= 44 -BuildRequires: libxslt-devel -BuildRequires: gtk3-devel +BuildRequires: pkgconfig(libcdio_paranoia) >= %{libcdio_paranoia_version} +BuildRequires: pkgconfig(gudev-1.0) >= %{gudev_version} +BuildRequires: pkgconfig(libsoup-2.4) >= %{libsoup_version} +BuildRequires: pkgconfig(avahi-client) >= %{avahi_version} +BuildRequires: pkgconfig(avahi-glib) >= %{avahi_version} +BuildRequires: pkgconfig(libsecret-1) +BuildRequires: gettext-devel >= %{gettext_version} +BuildRequires: pkgconfig(udisks2) >= %{udisks2_version} +BuildRequires: pkgconfig(libbluray) +BuildRequires: systemd-devel >= %{systemd_version} +BuildRequires: pkgconfig(libxslt) BuildRequires: docbook-style-xsl -BuildRequires: polkit-devel -BuildRequires: libcap-devel +BuildRequires: pkgconfig(polkit-gobject-1) +BuildRequires: pkgconfig(libcap) # The patch touches Makefile.am files: BuildRequires: automake autoconf @@ -52,14 +60,14 @@ BuildRequires: libtool Requires: %{name}-client%{?_isa} = %{version}-%{release} Requires: glib2%{?_isa} >= %{glib2_version} -Requires: udisks2 +Requires: udisks2 >= %{udisks2_version} Requires(post): desktop-file-utils Requires(postun): desktop-file-utils Obsoletes: gnome-mount <= 0.8 Obsoletes: gnome-mount-nautilus-properties <= 0.8 -Obsoletes: gvfs-obexftp < 1.16.3-3 +Obsoletes: gvfs-obexftp < 1.17.91-2 %description The gvfs package provides backend implementations for the gio @@ -88,8 +96,8 @@ required to develop applications using gvfs. Summary: FUSE support for gvfs Requires: %{name}%{?_isa} = %{version}-%{release} Requires: %{name}-client%{?_isa} = %{version}-%{release} -BuildRequires: fuse-devel -Requires: fuse +BuildRequires: pkgconfig(fuse) >= %{fuse_version} +Requires: fuse >= %{fuse_version} %description fuse This package provides support for applications not using gio @@ -100,8 +108,8 @@ to access the gvfs filesystems. Summary: Windows fileshare support for gvfs Requires: %{name}%{?_isa} = %{version}-%{release} Requires: %{name}-client%{?_isa} = %{version}-%{release} -BuildRequires: libsmbclient-devel >= 3.2.0-1.pre2.8 -BuildRequires: libtalloc-devel >= 1.3.0-0 +BuildRequires: libsmbclient-devel >= %{libsmbclient_version} +BuildRequires: pkgconfig(talloc) >= %{talloc_version} %description smb This package provides support for reading and writing files on windows @@ -112,7 +120,7 @@ shares (SMB) to applications using gvfs. Summary: Archiving support for gvfs Requires: %{name}%{?_isa} = %{version}-%{release} Requires: %{name}-client%{?_isa} = %{version}-%{release} -BuildRequires: libarchive-devel >= 2.7.1-1 +BuildRequires: pkgconfig(libarchive) >= %{libarchive_version} %description archive This package provides support for accessing files inside Zip and Tar archives, @@ -123,8 +131,8 @@ as well as ISO images, to applications using gvfs. Summary: gphoto2 support for gvfs Requires: %{name}%{?_isa} = %{version}-%{release} Requires: %{name}-client%{?_isa} = %{version}-%{release} -BuildRequires: libgphoto2-devel -BuildRequires: libusb-devel +BuildRequires: pkgconfig(libgphoto2) >= %{libgphoto2_version} +BuildRequires: libusb-devel >= %{libusb_version} BuildRequires: libexif-devel %description gphoto2 @@ -139,7 +147,8 @@ Summary: AFC support for gvfs Requires: %{name}%{?_isa} = %{version}-%{release} Requires: %{name}-client%{?_isa} = %{version}-%{release} Requires: usbmuxd -BuildRequires: libimobiledevice-devel >= 0.9.7 +BuildRequires: pkgconfig(libimobiledevice-1.0) >= %{libimobiledevice_version} +BuildRequires: pkgconfig(libplist) >= %{libplist_version} %description afc This package provides support for reading files on mobile devices @@ -151,7 +160,7 @@ including phones and music players to applications using gvfs. Summary: AFP support for gvfs Requires: %{name}%{?_isa} = %{version}-%{release} Requires: %{name}-client%{?_isa} = %{version}-%{release} -BuildRequires: libgcrypt-devel >= 1.2.2 +BuildRequires: libgcrypt-devel >= %{libgcrypt_version} # this should ensure having this new subpackage installed on upgrade from older versions Obsoletes: %{name} < 1.9.4-1 @@ -165,30 +174,32 @@ to applications using gvfs. Summary: MTP support for gvfs Requires: %{name}%{?_isa} = %{version}-%{release} Requires: %{name}-client%{?_isa} = %{version}-%{release} -BuildRequires: libmtp-devel >= 1.1.0 +BuildRequires: pkgconfig(libmtp) >= %{libmtp_version} %description mtp This package provides support for reading and writing files on MTP based devices (Media Transfer Protocol) to applications using gvfs. + %if 0%{?with_nfs} %package nfs Summary: NFS support for gvfs Requires: %{name}%{?_isa} = %{version}-%{release} Requires: %{name}-client%{?_isa} = %{version}-%{release} -BuildRequires: libnfs-devel >= 1.9.7 +BuildRequires: pkgconfig(libnfs) >= %{libnfs_version} %description nfs This package provides support for reading and writing files on NFS network shares (Network File System) to applications using gvfs. %endif + %package goa Summary: GOA support for gvfs Requires: %{name}%{?_isa} = %{version}-%{release} Requires: %{name}-client%{?_isa} = %{version}-%{release} -BuildRequires: gnome-online-accounts-devel >= 3.7.1 -BuildRequires: libgdata-devel >= %{libgdata_version} +BuildRequires: pkgconfig(goa-1.0) >= %{goa_version} +BuildRequires: pkgconfig(libgdata) >= %{libgdata_version} Requires: libgdata%{?_isa} >= %{libgdata_version} %description goa @@ -206,11 +217,6 @@ the functionality of the installed gvfs package. %prep %setup -q %patch0 -p1 -b .archive-integration -%patch1 -p1 -b .handle-securid-password-prompt -%patch2 -p1 -b .network-Do-not-spam-journal-by-useless-warnings.patch -%patch3 -p1 -b .Add-missing-newline-characters-in-g_debug -%patch4 -p1 -b .network-check-variable-before-dereferencing -%patch5 -p1 -b .client-Propagate-error-from-create_mount_tracker_pro # Needed for gvfs-0.2.1-archive-integration.patch autoreconf -fi @@ -220,7 +226,6 @@ autoreconf -fi %if ! 0%{?with_nfs} --disable-nfs \ %endif - --disable-hal \ --disable-gdu \ --enable-udisks2 \ --enable-keyring \ @@ -283,6 +288,9 @@ update-desktop-database >&/dev/null || : killall -USR1 gvfsd >&/dev/null || : %endif +%post afp +killall -USR1 gvfsd >&/dev/null || : + %files %dir %{_datadir}/gvfs @@ -338,9 +346,6 @@ killall -USR1 gvfsd >&/dev/null || : %{!?_licensedir:%global license %%doc} %license COPYING COPYING.GPL3 %doc AUTHORS NEWS README -%dir %{_datadir}/bash-completion -%dir %{_datadir}/bash-completion/completions -%{_datadir}/bash-completion/completions/gvfs* %dir %{_libdir}/gvfs %{_libdir}/gvfs/libgvfscommon.so %{_libdir}/gio/modules/libgioremote-volume-monitor.so @@ -428,6 +433,10 @@ killall -USR1 gvfsd >&/dev/null || : %{_datadir}/installed-tests %changelog +* Tue May 08 2018 Kalev Lember - 1.36.2-1 +- Update to 1.36.2 +- Resolves: #1569268 + * Fri Nov 10 2017 Ondrej Holy - 1.30.4-5 - Fix network backend crashes when creating proxy failed (#1465302) diff --git a/SPECS/llvm.spec b/SPECS/llvm.spec index 2b29f6b..2102ba6 100644 --- a/SPECS/llvm.spec +++ b/SPECS/llvm.spec @@ -39,7 +39,7 @@ ExcludeArch: ppc s390 %{?rhel6:s390x} %global amdgpu ;AMDGPU %endif -%global llvm_lib_suffix rhel +%global llvm_lib_suffix pel Name: llvm-private Version: %{maj_ver}.%{min_ver}.%{patch_ver} @@ -155,6 +155,7 @@ export PATH=$BUILD_DIR/bin:$PATH make %{?_smp_mflags} VERBOSE=1 LLVM llvm-config FileCheck not count gtest gtest_main + # Build clang separately, because we need to build with # -DBUILD_SHARED_LIBS:BOOL=ON for clang, but we don't want # this for LLVM. @@ -170,7 +171,7 @@ cd _build -DCLANG_ENABLE_ARCMT:BOOL=ON \ -DCLANG_ENABLE_STATIC_ANALYZER:BOOL=ON \ -DCLANG_INCLUDE_DOCS:BOOL=OFF \ - -DCLANG_INCLUDE_TESTS:BOOL=ON \ + -DCLANG_INCLUDE_TESTS:BOOL=OFF \ -DCLANG_PLUGIN_SUPPORT:BOOL=ON \ -DENABLE_LINKER_BUILD_ID:BOOL=ON \ \ diff --git a/SPECS/mupdf.spec b/SPECS/mupdf.spec index 1ab47ce..8b13828 100644 --- a/SPECS/mupdf.spec +++ b/SPECS/mupdf.spec @@ -21,6 +21,8 @@ Provides: bundled(freeglut)-devel) = 3.0.0 Patch0: %{name}-1.13-openjpeg.patch Patch1: 0001-fix-build-on-big-endian.patch Patch2: 0001-Fix-699271-skip-space-correctly.patch +# https://acidwords.com/posts/2016-07-26-hacking-mupdf-custom-background-colors.html +Patch3: mupdf-inverted-colors.patch %description MuPDF is a lightweight PDF viewer and toolkit written in portable C. @@ -56,6 +58,7 @@ done %patch0 -p1 %patch1 -p1 -d thirdparty/lcms2 %patch2 -p1 +%patch3 -p1 %build export XCFLAGS="%{optflags} -fPIC -DJBIG_NO_MEMENTO -DTOFU -DTOFU_CJK" diff --git a/SPECS/openbox.spec b/SPECS/openbox.spec index d036efa..db08387 100644 --- a/SPECS/openbox.spec +++ b/SPECS/openbox.spec @@ -18,9 +18,9 @@ Requires: %{name}-libs%{?_isa} = %{version}-%{release} # required by xdg-menu and xdg-autostart scripts Requires: python3-pyxdg # used by xdg-menu for icon support (optional) -Suggests: python3-gobject +Requires: python3-gobject # as discussed in https://bugzilla.redhat.com/860997 -Requires: redhat-menus +#Requires: redhat-menus BuildRequires: gcc BuildRequires: gettext @@ -174,7 +174,8 @@ rm -rf %{buildroot}%{_datadir}/doc/%{name} %{_datadir}/xsessions/%{name}-kde.desktop %{_mandir}/man1/%{name}-kde-session*.1* -%ldconfig_scriptlets libs +%post libs -p /sbin/ldconfig +%postun libs -p /sbin/ldconfig %changelog * Fri Jul 13 2018 Fedora Release Engineering - 3.6.1-10 diff --git a/SPECS/pyatspi.spec b/SPECS/pyatspi.spec new file mode 100644 index 0000000..e9b4e28 --- /dev/null +++ b/SPECS/pyatspi.spec @@ -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 - 2.20.3-1 +- Update to 2.20.3 + +* Tue Jul 19 2016 Fedora Release Engineering - 2.20.2-2 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Mon May 09 2016 Kalev Lember - 2.20.2-1 +- Update to 2.20.2 + +* Wed Apr 13 2016 Kalev Lember - 2.20.1-1 +- Update to 2.20.1 + +* Tue Mar 22 2016 Kalev Lember - 2.20.0-1 +- Update to 2.20.0 + +* Tue Mar 01 2016 Richard Hughes - 2.19.91-1 +- Update to 2.19.91 + +* Thu Feb 04 2016 Fedora Release Engineering - 2.18.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Nov 10 2015 Fedora Release Engineering - 2.18.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Mon Sep 21 2015 Kalev Lember - 2.18.0-1 +- Update to 2.18.0 + +* Mon Aug 17 2015 Kalev Lember - 2.17.90-1 +- Update to 2.17.90 +- Use make_install macro + +* Thu Jun 18 2015 Fedora Release Engineering - 2.16.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue Mar 24 2015 Kalev Lember - 2.16.0-1 +- Update to 2.16.0 +- Use license macro for the COPYING files + +* Tue Feb 17 2015 Richard Hughes - 2.15.90-1 +- Update to 2.15.90 + +* Tue Feb 03 2015 Richard Hughes - 2.15.4-1 +- Update to 2.15.4 + +* Fri Dec 19 2014 Richard Hughes - 2.15.3-1 +- Update to 2.15.3 + +* Mon Sep 22 2014 Kalev Lember - 2.14.0-1 +- Update to 2.14.0 + +* Sat Jun 07 2014 Fedora Release Engineering - 2.12.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Tue May 27 2014 Kalev Lember - 2.12.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Mon Mar 24 2014 Kalev Lember - 2.12.0-1 +- Update to 2.12.0 + +* Tue Mar 18 2014 Richard Hughes - 2.11.92-1 +- Update to 2.11.92 + +* Wed Feb 19 2014 Richard Hughes - 2.11.90-1 +- Update to 2.11.90 + +* Tue Dec 17 2013 Richard Hughes - 2.11.3-1 +- Update to 2.11.3 + +* Tue Nov 19 2013 Richard Hughes - 2.11.2-1 +- Update to 2.11.2 + +* Wed Sep 25 2013 Kalev Lember - 2.10.0-1 +- Update to 2.10.0 + +* Tue Sep 17 2013 Kalev Lember - 2.9.92-1 +- Update to 2.9.92 + +* Thu Aug 22 2013 Kalev Lember - 2.9.90-1 +- Update to 2.9.90 + +* Sun Aug 04 2013 Fedora Release Engineering - 2.9.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu Jun 20 2013 Kalev Lember - 2.9.3-1 +- Update to 2.9.3 + +* Sun Jun 02 2013 Kalev Lember - 2.9.2-1 +- Update to 2.9.2 + +* Mon Apr 15 2013 Rui Matos - 2.8.0-2 +- Don't depend on python3 in RHEL + +* Mon Mar 25 2013 Kalev Lember - 2.8.0-1 +- Update to 2.8.0 + +* Wed Mar 20 2013 Kalev Lember - 2.7.91-1 +- Update to 2.7.91 + +* Sat Feb 23 2013 Kalev Lember - 2.7.5-2 +- Build python3-pyatspi with Python 3 support + +* Wed Feb 06 2013 Kalev Lember - 2.7.5-1 +- Update to 2.7.5 + +* Fri Nov 09 2012 Kalev Lember - 2.7.1-1 +- Update to 2.7.1 +- Include magFocusTracker.py example in documentation + +* Wed Jul 18 2012 Kalev Lember - 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 - 2.5.3-1 +- Update to 2.5.3 + +* Sat May 05 2012 Kalev Lember - 2.5.1-1 +- Update to 2.5.1 + +* Wed Mar 28 2012 Richard Hughes - 2.4.0-1 +- Update to 2.4.0 + +* Wed Mar 21 2012 Kalev Lember - 2.3.92-1 +- Update to 2.3.92 + +* Mon Mar 5 2012 Matthias Clasen - 2.3.91-1 +- Update to 2.3.91 + +* Tue Feb 7 2012 Matthias Clasen - 2.3.5-1 +- Update to 2.3.5 + +* Tue Jan 17 2012 Matthias Clasen - 2.3.4-1 +- Update to 2.3.4 + +* Sat Jan 14 2012 Fedora Release Engineering - 2.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Oct 18 2011 Matthias Clasen - 2.2.1-1 +- Update to 2.2.1 + +* Wed Sep 28 2011 Matthias Clasen - 2.2.0-1 +- Update to 2.2.0 + +* Tue Sep 20 2011 Matthias Clasen - 2.1.91-1 +- Update to 2.1.91 + +* Mon Jul 25 2011 Matthias Clasen - 2.1.4-1 +- Update to 2.1.4 + +* Thu Jun 16 2011 Tomas Bzatek - 2.1.2-1 +- Update to 2.1.2 + +* Wed May 11 2011 Tomas Bzatek - 2.1.1-1 +- Update to 2.1.1 + +* Tue Apr 26 2011 Matthias Clasen - 2.0.1-1 +- Update to 2.0.1 + +* Mon Apr 4 2011 Matthias Clasen - 2.0.0-1 +- Update to 2.0.0 + +* Tue Mar 22 2011 Matthias Clasen - 1.91.92-1 +- Update to 1.91.92 + +* Mon Mar 7 2011 Matthias Clasen - 1.91.91-1 +- Update to 1.91.91 + +* Tue Feb 22 2011 Matthias Clasen - 1.91.90-1 +- Update to 1.91.90 + +* Tue Feb 08 2011 Fedora Release Engineering - 1.91.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 2 2011 Christopher Aillon - 1.91.6-1 +- Update to 1.91.6 + +* Tue Jan 11 2011 Matthias Clasen - 1.91.5-1 +- Update to 1.91.5 + +* Thu Dec 2 2010 Matthias Clasen - 1.91.3-1 +- Update to 1.91.3 + +* Tue Oct 5 2010 Matthias Clasen - 1.91.0-1 +- Update to 1.91.0 + +* Wed Sep 29 2010 Matthias Clasen - 0.4.0-1 +- Update to 0.4.0 + +* Mon Sep 20 2010 Matthias Clasen - 0.3.91-2 +- Require python-xlib and and gnome-python2-gconf (#635484) + +* Tue Aug 31 2010 Matthias Clasen - 0.3.91-1 +- Update to 0.3.91 + +* Wed Aug 18 2010 Matthias Clasen - 0.3.90-1 +- Update to 0.3.90 + +* Mon Aug 2 2010 Matthias Clasen - 0.3.6-1 +- Update to 0.3.6 + +* Wed Jul 21 2010 David Malcolm - 0.3.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Tue Jun 29 2010 Matthias Clasen - 0.3.4-1 +- Update to 0.3.4 + +* Tue Jun 8 2010 Matthias Clasen - 0.3.3-1 +- Update to 0.3.3 + +* Fri May 28 2010 Matthias Clasen - 0.3.2-1 +- Update to 0.3.2 + +* Sat May 15 2010 Matthias Clasen - 0.3.1.1-1 +- Update to 0.3.1.1 + +* Tue Mar 30 2010 Matthias Clasen - 0.1.8-1 +- Update to 0.1.8 + +* Sat Feb 20 2010 Matthias Clasen - 0.1.7-1 +- Update to 0.1.7 + +* Wed Feb 10 2010 Tomas Bzatek - 0.1.6-1 +- Update to 0.1.6 + +* Wed Feb 3 2010 Matthias Clasen - 0.1.5-2 +- Relocate + +* Sun Jan 17 2010 Matthias Clasen - 0.1.5-1 +- Update to 0.1.5 + +* Thu Jan 7 2010 Matthias Clasen - 0.1.4-3 +- Incorporate review feedback + +* Thu Jan 7 2010 Matthias Clasen - 0.1.4-2 +- Fix License field +- Change CORBA/DBus switching method + +* Tue Dec 22 2009 Matthias Clasen - 0.1.4-1 +- Update to 0.1.4 + +* Sat Dec 5 2009 Matthias Clasen - 0.1.3-1 +- Initial packaging diff --git a/SPECS/python-xapp.spec b/SPECS/python-xapp.spec new file mode 100644 index 0000000..58b62b0 --- /dev/null +++ b/SPECS/python-xapp.spec @@ -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 - 1.0.1-7 +- Use unified Provides for EPEL7 + +* Thu Nov 16 2017 Björn Esser - 1.0.1-6 +- Use unified macros for Python 3 + +* Thu Aug 31 2017 Björn Esser - 1.0.1-5 +- Build a Python3 compat pkg on RHEL7 + +* Tue Aug 29 2017 Björn Esser - 1.0.1-4 +- Fix for EPEL + +* Tue Aug 29 2017 Björn Esser - 1.0.1-3 +- Conditionalize Python3 for EPEL + +* Thu Jul 27 2017 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Tue Jun 13 2017 Björn Esser - 1.0.1-1 +- Update to 1.0.1 release (rhbz#1460408) + +* Mon May 01 2017 Leigh Scott - 1.0.0-1 +- Initial rpm-release (rhbz#1448559) diff --git a/SPECS/webkit2gtk3.spec b/SPECS/webkit2gtk3.spec new file mode 100644 index 0000000..44804e6 --- /dev/null +++ b/SPECS/webkit2gtk3.spec @@ -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 - 2.22.4-1 +- Update to 2.22.4 + +* Mon Oct 29 2018 Tomas Popela - 2.22.3-1 +- Update to 2.22.3 + +* Fri Oct 19 2018 Tomas Popela - 2.22.2-2 +- Fix WebProcess crash while printing +- Resolves: rhbz#1639754 + +* Sun Sep 23 2018 Tomas Popela - 2.22.2-1 +- Update to 2.22.2 + +* Thu Sep 20 2018 Tomas Popela - 2.22.1-1 +- Update to 2.22.1 + +* Tue Sep 04 2018 Tomas Popela - 2.22.0-1 +- Update to 2.22.0 + +* Tue Aug 14 2018 Tomas Popela - 2.20.5-1 +- Update to 2.20.5 + +* Mon Aug 06 2018 Tomas Popela - 2.20.4-1 +- Update to 2.20.4 + +* Mon Jun 11 2018 Tomas Popela - 2.20.3-1 +- Update to 2.20.3 + +* Wed May 09 2018 Tomas Popela - 2.20.2-1 +- Update to 2.20.2 + +* Tue Apr 10 2018 Tomas Popela - 2.20.1-1 +- Update to 2.20.1 + +* Mon Mar 12 2018 Kalev Lember - 2.20.0-2 +- Bump webkitgtk4 obsoletes versions + +* Mon Mar 12 2018 Tomas Popela - 2.20.0-1 +- Update to 2.20.0 + +* Tue Mar 06 2018 Tomas Popela - 2.19.92-1 +- Update to 2.19.92 + +* Wed Feb 21 2018 Tomas Popela - 2.19.91-1 +- Update to 2.19.91 + +* Fri Feb 09 2018 Fedora Release Engineering - 2.19.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Mon Feb 05 2018 Tomas Popela - 2.19.90-1 +- Update to 2.19.90 + +* Tue Jan 30 2018 Tomas Popela - 2.19.6-3 +- Remove obsoleted ldconfig scriptlets + +* Wed Jan 17 2018 Tomas Popela - 2.19.6-1 +- Update to 2.19.6 + +* Thu Jan 11 2018 Tomas Popela - 2.19.5-2 +- This package was formerly named webkitgtk4 diff --git a/SPECS/webkitgtk3.spec b/SPECS/webkitgtk3.spec new file mode 100644 index 0000000..2c9b331 --- /dev/null +++ b/SPECS/webkitgtk3.spec @@ -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 - 2.4.11-2 +- Don't build WebKit2 as it's build in webkitgtk4 package +- Resolves: rhbz#1383614 + +* Mon Feb 13 2017 Tomas Popela - 2.4.11-1 +- Update to 2.4.11 +- Resolves: rhbz#1326714 + +* Thu Jun 23 2016 Tomas Popela - 2.4.9-6 +- Update the translations +- Resolves: rhbz#1302692 + +* Mon Sep 14 2015 Tomas Popela - 2.4.9-5 +- Initialize string in SQLiteStatement before using it +- Resolves: rhbz#1259283 + +* Mon Jun 22 2015 Tomas Popela - 2.4.9-4 +- Remove deprecation from webkit_dom_html_element_get/set_id +- Resolves: rhbz#1174556 + +* Fri May 29 2015 Tomas Popela - 2.4.9-3 +- Fix some of rpmdiff warnings +- Resolves: rhbz#1174556 + +* Thu May 21 2015 Tomas Popela - 2.4.9-2 +- Compile with -fno-strict-aliasing +- Resolves: rhbz#1174556 +- Update translations +- Resolves: rhbz#1223643 + +* Wed May 20 2015 Tomas Popela - 2.4.9-1 +- Update to 2.4.9 +- Resolves: rhbz#1174556 + +* Wed Aug 20 2014 Dan Horák - 2.0.4-9 +- refresh ppc64le patch, use %%{power64} for conditions in spec +- Resolves: rhbz#1125710 + +* Mon Aug 04 2014 Tomas Popela - 2.0.4-8 +- Add support for ppc64le +- Resolves: rhbz#1125710 + +* Mon May 12 2014 Tomas Popela - 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 - 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 - 2.0.4-5 +- Update translations +- Resolves: rhbz#1030388 + +* Fri Jan 24 2014 Daniel Mach - 2.0.4-4 +- Mass rebuild 2014-01-24 + +* Fri Dec 27 2013 Daniel Mach - 2.0.4-3 +- Mass rebuild 2013-12-27 + +* Tue Nov 5 2013 Tomas Popela - 2.0.4-2 +- Let webkitgtk3 compile on aarch64 +- Resolves: rhbz#1026479 + +* Wed Oct 2 2013 Tomas Popela - 2.0.4-1 +- Update to 2.0.4 +- Resolves: rhbz#1013726 + +* Tue Jun 11 2013 Kalev Lember - 2.0.3-1 +- Update to 2.0.3 + +* Fri Jun 07 2013 Kalev Lember - 2.0.2-3 +- Link with harfbuzz-icu (split into separate library in harfbuzz 0.9.18) + +* Mon Jun 03 2013 Kalev Lember - 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 - 2.0.2-1 +- Update to 2.0.2 + +* Mon May 6 2013 Matthias Clasen - 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 - 2.0.1-1 +- Update to 2.0.1 + +* Thu Apr 11 2013 Tomas Popela - 2.0.0-3 +- Add fix for broken GObject casting + +* Wed Apr 3 2013 Tomas Popela - 2.0.0-2 +- Apply double2intsPPC32.patch also on s390 + +* Wed Mar 27 2013 Tomas Popela - 2.0.0-1 +- Update to 2.0.0 +- Update BR versions +- Drop unused patches + +* Wed Mar 20 2013 Kalev Lember - 1.11.92-1 +- Update to 1.11.92 + +* Fri Mar 08 2013 Tomas Popela 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 1.11.90-3 +- Fix for not building on ppc32 with JIT disabled + +* Sat Feb 23 2013 Kevin Fenzi 1.11.90-2 +- Add webkit2 MiniBrowser + +* Fri Feb 22 2013 Kalev Lember - 1.11.90-1 +- Update to 1.11.90 + +* Fri Feb 22 2013 Tomas Popela 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 1.11.5-4 +- Backported fixes for not building with disabled JIT + +* Sat Feb 16 2013 Peter Robinson 1.11.5-3 +- Re-enable JIT on ARM (hopefully the gmail crash is fixed) + +* Thu Feb 14 2013 Tomas Popela 1.11.5-2 +- Add upstream patch for RH bug #908143 - AccessibilityTableRow::parentTable crash + +* Wed Feb 06 2013 Kalev Lember - 1.11.5-1 +- Update to 1.11.5 +- Drop upstreamed patches + +* Wed Jan 30 2013 Mamoru TASAKA - 1.11.4-5 +- Rebuild against new icu again + +* Sat Jan 26 2013 Kalev Lember - 1.11.4-4 +- Rebuilt for icu 50 + +* Fri Jan 25 2013 Kalev Lember - 1.11.4-3 +- Backport a fix for a crash in AccessibilityTableCell::parentTable() + +* Mon Jan 21 2013 Adam Tkac - 1.11.4-2 +- rebuild due to "jpeg8-ABI" feature drop + +* Wed Jan 16 2013 Kalev Lember - 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 - 1.11.2-3 +- fix 32-bit non-JIT arches + +* Tue Dec 18 2012 Dan Horák - 1.11.2-2 +- fix build for non-JIT arches + +* Sat Nov 24 2012 Kalev Lember - 1.11.2-1 +- Update to 1.11.2 +- Add a patch to explicitly link with librt + +* Wed Oct 17 2012 Kalev Lember - 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 - 1.10.0-2 +- Restore compatibility with AMD Geode processors + +* Mon Sep 24 2012 Kalev Lember - 1.10.0-1 +- Update to 1.10.0 +- Adjust for webkit -> webkitgtk upstream tarball rename + +* Wed Sep 19 2012 Kalev Lember - 1.9.92-2 +- Build with gstreamer1 + +* Wed Sep 19 2012 Kalev Lember - 1.9.92-1 +- Update to 1.9.92 + +* Wed Sep 05 2012 Kalev Lember - 1.9.91-1 +- Update to 1.9.91 + +* Sun Sep 2 2012 Matthias Clasen - 1.9.90-2 +- Rebuild + +* Wed Aug 29 2012 Daniel Drake - 1.9.90-1 +- Update to latest release (#850520) + +* Thu Aug 9 2012 Daniel Drake - 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 - 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ä - 1.9.4-3 +- Fix %%post scriptlet dependencies. + +* Wed Jul 04 2012 Dan Horák - 1.9.4-2 +- apply workaround for s390x until #835957 is resolved (static library archive > 4 GB) + +* Thu Jun 28 2012 Kalev Lember - 1.9.4-1 +- Update to 1.9.4 + +* Thu Jun 07 2012 Kalev Lember - 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 1.8.1-3 +- disable JIT on PPC(64) as the autodetection enables it even if not supported + +* Mon May 14 2012 Peter Robinson - 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 - 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 - 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 - 1.8.0-2 +- Finish splitting out a -doc subpackage (#808917) + +* Wed Mar 28 2012 Richard Hughes - 1.8.0-1 +- Update to 1.8.0. + +* Sat Mar 24 2012 Dan Horák - 1.7.92-2 +- add ppc to low mem arches +- decrease debuginfo verbosity on s390 to save memory + +* Wed Mar 21 2012 Kalev Lember - 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 1.7.91-2 +- disable jit on ppc(64) + +* Thu Mar 8 2012 Matthias Clasen - 1.7.91-1 +- Update to 1.7.91 + +* Tue Feb 28 2012 Peter Robinson - 1.7.5-3 +- Add ARM to and optimise compile flags for low mem arches + +* Mon Feb 20 2012 Dan Horák - 1.7.5-2 +- don't enable jit on s390(x) + +* Tue Feb 7 2012 Matthias Clasen - 1.7.5-1 +- Update to 1.7.5 + +* Tue Jan 17 2012 Matthias Clasen - 1.7.4-1 +- Update to 1.7.4 + +* Sat Jan 14 2012 Fedora Release Engineering - 1.7.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Dec 20 2011 Matthias Clasen - 1.7.3-1 +- Update to 1.7.3 + +* Thu Nov 24 2011 Tomas Bzatek - 1.7.2-1 +- Update to 1.7.2 + +* Mon Nov 7 2011 Matthias Clasen 1.7.1-2 +- Rebuild against new libpng + +* Wed Nov 2 2011 Matthias Clasen 1.7.1-1 +- Update to 1.7.1 + +* Wed Oct 12 2011 Dan Horák 1.6.1-2 +- fix build on s390(x) + +* Wed Sep 28 2011 Ray Strode 1.6.1-1 +- Update to 1.6.1 + +* Fri Sep 09 2011 Caolán McNamara - 1.5.1-2 +- rebuild for icu 4.8.1 + +* Thu Jun 16 2011 Tomas Bzatek - 1.5.1-1 +- Update to 1.5.1 + +* Tue Jun 14 2011 Bastien Nocera 1.4.0-3 +- Rebuild against newer GTK+ + +* Wed May 11 2011 Cosimo Cecchi 1.4.0-2 +- Add a doc package for gtk-doc documentation + +* Tue Apr 26 2011 Matthias Clasen 1.4.0-1 +- Update to 1.4.0 + +* Tue Mar 22 2011 Matthias Clasen 1.3.13-1 +- Update to 1.3.13 + +* Thu Feb 10 2011 Matthias Clasen 1.3.10-3 +- Rebuild against newer gtk + +* Mon Feb 07 2011 Fedora Release Engineering - 1.3.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 2 2011 Matthias Clasen 1.3.11-1 +- 1.3.11 + +* Wed Feb 2 2011 Matthias Clasen 1.3.10-2 +- Rebuild against newer gtk + +* Mon Jan 10 2011 Matthias Clasen 1.3.10-1 +- Update to 1.3.10 + +* Sun Jan 9 2011 Matthias Clasen 1.3.9-1 +- Update to 1.3.9 + +* Fri Dec 3 2010 Matthias Clasen 1.3.7-2 +- Rebuild against new gtk + +* Wed Dec 1 2010 Matthias Clasen 1.3.7-1 +- Update to 1.3.7 + +* Thu Nov 11 2010 Matthias Clasen 1.3.6-1 +- Update to 1.3.6 +- Disable the s390 patch again :-( Upstream it, maybe ? + +* Thu Nov 11 2010 Dan Horák - 1.3.5-2 +- Updated and re-enabled the s390 patch + +* Mon Nov 1 2010 Matthias Clasen 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 1.3.4-2 +- Enable JIT/patch for execmem +- Move inspector to the main package + +* Thu Sep 23 2010 Matthias Clasen 1.3.4-1 +- Update to 1.3.4 + +* Wed Aug 25 2010 Dan Horák - 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 - 1.3.3-3 +- Fix build on s390(x) + +* Thu Jul 15 2010 Colin Walters - 1.3.3-2 +- Rebuild with new gobject-introspection + +* Fri Jul 9 2010 Matthias Clasen 1.3.2-2 +- Fix conflicting gettext domain with webkitgtk +- Drop the -doc subpackage + +* Thu Jul 1 2010 Matthias Clasen 1.3.2-1 +- Initial packaging diff --git a/SPECS/webkitgtk4.spec b/SPECS/webkitgtk4.spec index 0f5bc31..3e32d26 100644 --- a/SPECS/webkitgtk4.spec +++ b/SPECS/webkitgtk4.spec @@ -26,7 +26,7 @@ # rhpkg build --target rhel-7.6-devtoolset-7-candidate Name: webkitgtk4 -Version: 2.20.5 +Version: 2.14.2 Release: 1%{?dist} Summary: GTK+ Web content engine library @@ -143,16 +143,8 @@ BuildRequires: rubygems BuildRequires: sqlite-devel BuildRequires: hyphen-devel BuildRequires: gnutls-devel -%if 0%{?rhel} == 7 -BuildRequires: devtoolset-7-gcc -BuildRequires: devtoolset-7-gcc-c++ -BuildRequires: devtoolset-7-build -BuildRequires: devtoolset-7-libatomic-devel -BuildRequires: llvm-toolset-7-cmake -%else BuildRequires: libatomic BuildRequires: cmake -%endif Requires: geoclue2 @@ -338,19 +330,13 @@ make %{?_smp_mflags} -C source install DESTDIR=$BUNDLED_ICU_PATH popd %endif -# Enable DTS -%if 0%{?rhel} == 7 -source /opt/rh/devtoolset-7/enable -source /opt/rh/llvm-toolset-7/enable -%define __cmake /opt/rh/llvm-toolset-7/root/usr/bin/cmake -%endif - # Disable ld.gold on s390 as it does not have it. # Also for aarch64 as the support is in upstream, but not packaged in Fedora. # Disable subtle crypto as we have an old libgcrypt in RHEL 7 mkdir -p %{_target_platform} +sed '/if (${CMAKE_CXX_COMPILER_VERSION} VERSION_LESS "5.0.0")/,+2d' -i CMakeLists.txt pushd %{_target_platform} -%cmake \ +%cmake3 \ -DPORT=GTK \ -DCMAKE_BUILD_TYPE=Release \ %if 0%{bundle_icu} diff --git a/SPECS/xpdf.spec b/SPECS/xpdf.spec index 0ce82de..a946a36 100644 --- a/SPECS/xpdf.spec +++ b/SPECS/xpdf.spec @@ -67,9 +67,10 @@ Requires: xdg-utils Requires: poppler-utils Requires: xorg-x11-fonts-ISO8859-1-75dpi Requires: xorg-x11-fonts-ISO8859-1-100dpi -Requires: qt5-qtsvg +#Requires: qt5-qtsvg -BuildRequires: qt5-devel, cmake +#BuildRequires: qt5-devel +BuildRequires: cmake BuildRequires: freetype-devel >= 2.1.7 BuildRequires: desktop-file-utils BuildRequires: libpaper-devel diff --git a/SPECS/zathura.spec b/SPECS/zathura.spec index 8752947..a4cc654 100644 --- a/SPECS/zathura.spec +++ b/SPECS/zathura.spec @@ -1,5 +1,5 @@ Name: zathura -Version: 0.4.0 +Version: 0.4.1 Release: 1%{?dist} Summary: A lightweight document viewer Group: Applications/Publishing