Import from AlmaLinux stable repository
This commit is contained in:
parent
4ad9855835
commit
0b97281940
@ -1 +0,0 @@
|
||||
85025da5aeda52b9bb9506cb89c7985d1cb9083c SOURCES/evolution-data-server-3.28.5.tar.xz
|
53
SOURCES/0019-oauth2-enable-html5-features.patch
Normal file
53
SOURCES/0019-oauth2-enable-html5-features.patch
Normal file
@ -0,0 +1,53 @@
|
||||
diff -up evolution-data-server-3.28.5/src/libedataserverui/e-credentials-prompter-impl-oauth2.c.oauth2-enable-html5-features evolution-data-server-3.28.5/src/libedataserverui/e-credentials-prompter-impl-oauth2.c
|
||||
--- evolution-data-server-3.28.5/src/libedataserverui/e-credentials-prompter-impl-oauth2.c.oauth2-enable-html5-features 2018-07-30 15:17:06.000000000 +0200
|
||||
+++ evolution-data-server-3.28.5/src/libedataserverui/e-credentials-prompter-impl-oauth2.c 2024-01-11 16:00:50.316053801 +0100
|
||||
@@ -571,7 +571,9 @@ e_credentials_prompter_impl_oauth2_show_
|
||||
GtkScrolledWindow *scrolled_window;
|
||||
GtkWindow *dialog_parent;
|
||||
ECredentialsPrompter *prompter;
|
||||
+ WebKitCookieManager *cookie_manager;
|
||||
WebKitSettings *webkit_settings;
|
||||
+ WebKitWebContext *web_context;
|
||||
gchar *title, *uri;
|
||||
GString *info_markup;
|
||||
gint row = 0;
|
||||
@@ -670,16 +672,28 @@ e_credentials_prompter_impl_oauth2_show_
|
||||
webkit_settings = webkit_settings_new_with_settings (
|
||||
"auto-load-images", TRUE,
|
||||
"default-charset", "utf-8",
|
||||
- "enable-html5-database", FALSE,
|
||||
"enable-dns-prefetching", FALSE,
|
||||
- "enable-html5-local-storage", FALSE,
|
||||
+ "enable-html5-database", TRUE,
|
||||
+ "enable-html5-local-storage", TRUE,
|
||||
"enable-offline-web-application-cache", FALSE,
|
||||
"enable-page-cache", FALSE,
|
||||
"enable-plugins", FALSE,
|
||||
"media-playback-allows-inline", FALSE,
|
||||
NULL);
|
||||
|
||||
- widget = webkit_web_view_new_with_settings (webkit_settings);
|
||||
+ web_context = webkit_web_context_new ();
|
||||
+ #if WEBKIT_CHECK_VERSION(2, 40, 0)
|
||||
+ webkit_web_context_set_sandbox_enabled (web_context, TRUE);
|
||||
+ #endif
|
||||
+
|
||||
+ cookie_manager = webkit_web_context_get_cookie_manager (web_context);
|
||||
+ webkit_cookie_manager_set_accept_policy (cookie_manager, WEBKIT_COOKIE_POLICY_ACCEPT_ALWAYS);
|
||||
+
|
||||
+ widget = g_object_new (WEBKIT_TYPE_WEB_VIEW,
|
||||
+ "settings", webkit_settings,
|
||||
+ "web-context", web_context,
|
||||
+ NULL);
|
||||
+
|
||||
g_object_set (
|
||||
G_OBJECT (widget),
|
||||
"hexpand", TRUE,
|
||||
@@ -689,6 +703,7 @@ e_credentials_prompter_impl_oauth2_show_
|
||||
NULL);
|
||||
gtk_container_add (GTK_CONTAINER (scrolled_window), widget);
|
||||
g_object_unref (webkit_settings);
|
||||
+ g_object_unref (web_context);
|
||||
|
||||
prompter_oauth2->priv->web_view = WEBKIT_WEB_VIEW (widget);
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
Name: evolution-data-server
|
||||
Version: 3.28.5
|
||||
Release: 20%{?dist}
|
||||
Release: 24%{?dist}
|
||||
Group: System Environment/Libraries
|
||||
Summary: Backend data server for Evolution
|
||||
License: LGPLv2+
|
||||
@ -45,6 +45,8 @@ Obsoletes: evolution-webcal < 2.24.0
|
||||
# RH-bug #1362477
|
||||
Recommends: pinentry-gtk
|
||||
|
||||
Recommends: %{name}-ui
|
||||
|
||||
%if 0%{?fedora}
|
||||
# From rhughes-f20-gnome-3-12 copr
|
||||
Obsoletes: compat-evolution-data-server310-libcamel < 3.12
|
||||
@ -106,6 +108,8 @@ Patch17: evolution-data-server-3.28.5-secret-monitor-warnings.patch
|
||||
# RH bug #2081746
|
||||
Patch18: evolution-data-server-3.28.5-google-oauth2.patch
|
||||
|
||||
Patch19: 0019-oauth2-enable-html5-features.patch
|
||||
|
||||
### Dependencies ###
|
||||
|
||||
Requires: dconf
|
||||
@ -122,7 +126,7 @@ BuildRequires: gtk-doc >= %{gtk_doc_version}
|
||||
BuildRequires: intltool >= %{intltool_version}
|
||||
BuildRequires: libdb-devel
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: %{_bindir}/python3
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: vala
|
||||
BuildRequires: vala-tools
|
||||
BuildRequires: sendmail
|
||||
@ -178,12 +182,27 @@ 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(json-glib-1.0) >= %{json_glib_version}
|
||||
|
||||
%description devel
|
||||
Development files needed for building things which link against %{name}.
|
||||
|
||||
%package ui
|
||||
Summary: libedataserverui library from %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description ui
|
||||
libedataserverui library files from %{name}.
|
||||
|
||||
%package ui-devel
|
||||
Summary: Development files for building against libedataserverui from %{name}
|
||||
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
||||
Requires: %{name}-ui%{?_isa} = %{version}-%{release}
|
||||
Requires: pkgconfig(webkit2gtk-4.0) >= %{webkit2gtk_version}
|
||||
|
||||
%description ui-devel
|
||||
Development files needed for building things which link against libedataserverui from %{name}.
|
||||
|
||||
%package langpacks
|
||||
Summary: Translations for %{name}
|
||||
BuildArch: noarch
|
||||
@ -243,6 +262,7 @@ the functionality of the installed %{name} package.
|
||||
%patch16 -p1 -b .nonstandard-uuencode-encoding
|
||||
%patch17 -p1 -b .secret-monitor-warnings
|
||||
%patch18 -p1 -b .google-oauth2
|
||||
%patch19 -p1 -b .oauth2-enable-html5-features
|
||||
|
||||
%build
|
||||
|
||||
@ -354,13 +374,11 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || :
|
||||
%{_libdir}/libedata-book-1.2.so.*
|
||||
%{_libdir}/libedata-cal-1.2.so.*
|
||||
%{_libdir}/libedataserver-1.2.so.*
|
||||
%{_libdir}/libedataserverui-1.2.so.*
|
||||
|
||||
%{_libdir}/girepository-1.0/Camel-1.2.typelib
|
||||
%{_libdir}/girepository-1.0/EBook-1.2.typelib
|
||||
%{_libdir}/girepository-1.0/EBookContacts-1.2.typelib
|
||||
%{_libdir}/girepository-1.0/EDataServer-1.2.typelib
|
||||
%{_libdir}/girepository-1.0/EDataServerUI-1.2.typelib
|
||||
|
||||
%{_libexecdir}/camel-gpg-photo-saver
|
||||
%{_libexecdir}/camel-index-control-1.2
|
||||
@ -444,12 +462,18 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || :
|
||||
%{modules_dir}/module-oauth2-services.so
|
||||
%{modules_dir}/module-outlook-backend.so
|
||||
%{modules_dir}/module-secret-monitor.so
|
||||
%{modules_dir}/module-trust-prompt.so
|
||||
%{modules_dir}/module-webdav-backend.so
|
||||
%{modules_dir}/module-yahoo-backend.so
|
||||
|
||||
%files devel
|
||||
%{_includedir}/evolution-data-server
|
||||
%{_includedir}/evolution-data-server/camel
|
||||
%{_includedir}/evolution-data-server/libebackend
|
||||
%{_includedir}/evolution-data-server/libebook
|
||||
%{_includedir}/evolution-data-server/libebook-contacts
|
||||
%{_includedir}/evolution-data-server/libecal
|
||||
%{_includedir}/evolution-data-server/libedata-book
|
||||
%{_includedir}/evolution-data-server/libedata-cal
|
||||
%{_includedir}/evolution-data-server/libedataserver
|
||||
%{_libdir}/libcamel-1.2.so
|
||||
%{_libdir}/libebackend-1.2.so
|
||||
%{_libdir}/libebook-1.2.so
|
||||
@ -458,7 +482,6 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || :
|
||||
%{_libdir}/libedata-book-1.2.so
|
||||
%{_libdir}/libedata-cal-1.2.so
|
||||
%{_libdir}/libedataserver-1.2.so
|
||||
%{_libdir}/libedataserverui-1.2.so
|
||||
%{_libdir}/pkgconfig/camel-1.2.pc
|
||||
%{_libdir}/pkgconfig/evolution-data-server-1.2.pc
|
||||
%{_libdir}/pkgconfig/libebackend-1.2.pc
|
||||
@ -468,12 +491,10 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || :
|
||||
%{_libdir}/pkgconfig/libedata-book-1.2.pc
|
||||
%{_libdir}/pkgconfig/libedata-cal-1.2.pc
|
||||
%{_libdir}/pkgconfig/libedataserver-1.2.pc
|
||||
%{_libdir}/pkgconfig/libedataserverui-1.2.pc
|
||||
%{_datadir}/gir-1.0/Camel-1.2.gir
|
||||
%{_datadir}/gir-1.0/EBook-1.2.gir
|
||||
%{_datadir}/gir-1.0/EBookContacts-1.2.gir
|
||||
%{_datadir}/gir-1.0/EDataServer-1.2.gir
|
||||
%{_datadir}/gir-1.0/EDataServerUI-1.2.gir
|
||||
%{_datadir}/vala/vapi/camel-1.2.deps
|
||||
%{_datadir}/vala/vapi/camel-1.2.vapi
|
||||
%{_datadir}/vala/vapi/libebook-1.2.deps
|
||||
@ -482,6 +503,17 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || :
|
||||
%{_datadir}/vala/vapi/libebook-contacts-1.2.vapi
|
||||
%{_datadir}/vala/vapi/libedataserver-1.2.deps
|
||||
%{_datadir}/vala/vapi/libedataserver-1.2.vapi
|
||||
|
||||
%files ui
|
||||
%{_libdir}/libedataserverui-1.2.so.*
|
||||
%{_libdir}/girepository-1.0/EDataServerUI-1.2.typelib
|
||||
%{modules_dir}/module-trust-prompt.so
|
||||
|
||||
%files ui-devel
|
||||
%{_includedir}/evolution-data-server/libedataserverui
|
||||
%{_libdir}/libedataserverui-1.2.so
|
||||
%{_libdir}/pkgconfig/libedataserverui-1.2.pc
|
||||
%{_datadir}/gir-1.0/EDataServerUI-1.2.gir
|
||||
%{_datadir}/vala/vapi/libedataserverui-1.2.deps
|
||||
%{_datadir}/vala/vapi/libedataserverui-1.2.vapi
|
||||
|
||||
@ -504,6 +536,19 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || :
|
||||
%{_datadir}/installed-tests
|
||||
|
||||
%changelog
|
||||
* Thu Jan 11 2024 Milan Crha <mcrha@redhat.com> - 3.28.5-24
|
||||
- Resolves: RHEL-21362 (OAuth2: Enable HTML5 database and local storage features for web view)
|
||||
|
||||
* Wed Oct 11 2023 Milan Crha <mcrha@redhat.com> - 3.28.5-23
|
||||
- Resolves: RHEL-12398 (Move WebKitGTK parts in Evolution Data Server into optional subpackage)
|
||||
- Add requirement on ui subpackage into ui-devel subpackage
|
||||
|
||||
* Tue Oct 10 2023 Milan Crha <mcrha@redhat.com> - 3.28.5-22
|
||||
- Resolves: RHEL-12398 (Move WebKitGTK parts in Evolution Data Server into optional subpackage)
|
||||
|
||||
* Tue Sep 05 2023 Milan Crha <mcrha@redhat.com> - 3.28.5-21
|
||||
- Resolves: RHEL-2219 (Correct BuildRequires for python3)
|
||||
|
||||
* Wed May 04 2022 Milan Crha <mcrha@redhat.com> - 3.28.5-20
|
||||
- Resolves: #2081746 (Backport patch for Google OAuth2 change)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user