4 Commits

Author SHA256 Message Date
b5b4ba7c68 Accepting request 1191745 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/1191745
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/evolution?expand=0&rev=280
2024-08-07 04:09:34 +00:00
16095d12af Accepting request 1191599 from GNOME:Next
- Update to version 3.52.4:
  + Bug Fixes:
    - Tooltips in Month view not always shown.
    - Mail: Print to File keeps previous file name.
    - Tooltips only sometimes displayed in Task and Memos Pane.
  + Miscellaneous: EWebView: Just loaded remote images may be left
    invisible.
  + Updated translations.

OBS-URL: https://build.opensuse.org/request/show/1191599
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/evolution?expand=0&rev=505
2024-08-05 17:15:12 +00:00
dc495c9408 Accepting request 1184253 from GNOME:Factory
- Update to version 3.52.3:
  + Bug Fixes:
    - Speed up startup - lots of local folders
    - Composer:
      . Wrap search by default
      . Text out of <div> can break Undo
      . Crash when opening spellcheck dialog
    - Forwarded e-mails don't have a filename extension
    - Composer: Crash when opening spellcheck dialog
    - Unable to drag'n'drop attachments between attachment bars
    - Crash under gtk_clutter_init_internal()
  + Miscellaneous:
    - Misc: Replace XPM images with SVG images
    - EAttachment: Check file_info contains display-name before
      accessing it
    - CI: Workaround broken git clone for libcanberra
  + Updated translations. (forwarded request 1183901 from iznogood)

OBS-URL: https://build.opensuse.org/request/show/1184253
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/evolution?expand=0&rev=279
2024-07-02 16:15:57 +00:00
5d5181a004 Accepting request 1183901 from GNOME:Next
- Update to version 3.52.3:
  + Bug Fixes:
    - Speed up startup - lots of local folders
    - Composer:
      . Wrap search by default
      . Text out of <div> can break Undo
      . Crash when opening spellcheck dialog
    - Forwarded e-mails don't have a filename extension
    - Composer: Crash when opening spellcheck dialog
    - Unable to drag'n'drop attachments between attachment bars
    - Crash under gtk_clutter_init_internal()
  + Miscellaneous:
    - Misc: Replace XPM images with SVG images
    - EAttachment: Check file_info contains display-name before
      accessing it
    - CI: Workaround broken git clone for libcanberra
  + Updated translations.

OBS-URL: https://build.opensuse.org/request/show/1183901
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/evolution?expand=0&rev=503
2024-07-01 08:59:08 +00:00
7 changed files with 39 additions and 411 deletions

View File

@@ -3,7 +3,7 @@
<service name="obs_scm" mode="manual">
<param name="scm">git</param>
<param name="url">https://gitlab.gnome.org/GNOME/evolution.git</param>
<param name="revision">3.58.3</param>
<param name="revision">3.52.4</param>
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
<param name="versionrewrite-pattern">(.*)\+0</param>
<param name="versionrewrite-replacement">\1</param>

3
evolution-3.52.4.obscpio Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:82a8974d2d24bad9c7ac28b07ec43823261e80e6f574aee39a9ecbd936314ac8
size 129916430

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8e493d26c308a03f26d433706b2b4b0521fcc7b0ffb4db93c4f8caf4e436f65b
size 132198414

View File

@@ -1,53 +0,0 @@
From 4af3f6833b252f713fe19a531008d6451064701b Mon Sep 17 00:00:00 2001
From: Milan Crha <mcrha@redhat.com>
Date: Wed, 4 Feb 2026 08:35:22 +0100
Subject: [PATCH] I#3238 - Calendar: Year view shows incorrect week number
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/3238
---
src/e-util/e-month-widget.c | 16 +++-------------
1 file changed, 3 insertions(+), 13 deletions(-)
diff --git a/src/e-util/e-month-widget.c b/src/e-util/e-month-widget.c
index ed8ecf6b8f..12d765c2e1 100644
--- a/src/e-util/e-month-widget.c
+++ b/src/e-util/e-month-widget.c
@@ -161,32 +161,22 @@ e_month_widget_update (EMonthWidget *self)
GDate *date, tmp_date;
GtkWidget *widget;
gchar buffer[128];
- guint week_of_year, week_of_last_year = 0;
guint ii, jj, month_day, max_month_days;
if (!digit_format)
digit_format = get_digit_format ();
date = g_date_new_dmy (1, self->priv->month, self->priv->year);
-
- if (self->priv->week_start_day == G_DATE_SUNDAY) {
- week_of_year = g_date_get_sunday_week_of_year (date);
- if (!week_of_year)
- week_of_last_year = g_date_get_sunday_weeks_in_year (self->priv->year - 1);
- } else {
- week_of_year = g_date_get_monday_week_of_year (date);
- if (!week_of_year)
- week_of_last_year = g_date_get_monday_weeks_in_year (self->priv->year - 1);
- }
+ tmp_date = *date;
/* Update week numbers */
for (ii = 0; ii < MAX_WEEKS; ii++) {
- g_snprintf (buffer, sizeof (buffer), digit_format, !week_of_year ? week_of_last_year : week_of_year);
+ g_snprintf (buffer, sizeof (buffer), digit_format, g_date_get_iso8601_week_of_year (&tmp_date));
widget = gtk_grid_get_child_at (self->priv->grid, 0, ii + 1);
gtk_label_set_text (GTK_LABEL (widget), buffer);
- week_of_year++;
+ g_date_add_days (&tmp_date, 7);
}
/* Update day names */
--
2.52.0

View File

@@ -1,344 +1,3 @@
-------------------------------------------------------------------
Wed Feb 4 14:31:12 UTC 2026 - Michael Gorse <mgorse@suse.com>
- Add evolution-year-view-week-number.patch: fix incorrect week
numbers in calendar year view (bsc#1256465
glgo#GNOME/evolution#3238).
-------------------------------------------------------------------
Fri Jan 30 15:13:45 UTC 2026 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 3.58.3:
+ Bug Fixes:
- Hides .p7m attachments
- Mail: Crash with invalid UTF-8 folder name
- Mail: Reply with selected text can preserve also original
body
+ Miscellaneous: flatpak: Add gettext ACLOCAL workaround
+ Updated translations.
-------------------------------------------------------------------
Fri Nov 21 11:12:39 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 3.58.2:
+ Bug Fixes:
- mail-vfolder: Correct and speed up setup and update of search
folders
- Crash when copying multiple lines from “Markdown as HTML”
composer
+ Miscellaneous: shell: Fix a crash on start when app
initialization fails
+ Updated translations.
-------------------------------------------------------------------
Fri Oct 10 07:45:21 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 3.58.1:
+ Bug Fixes:
- Subject not decrypted in GPG encrypted mail
- EWebView: Draw symbolic icons with theme foreground color
- Missing "search type" drop-down menu on Calendar window
- shell: Connect the shell window delete-event handler using
_after
+ Miscellaneous:
- Composer: Broken letters with reopened message in other than
UTF-8 charset
- data: Round down icon height of evolution-symbolic.svg
+ Updated translations.
-------------------------------------------------------------------
Fri Sep 12 14:57:39 UTC 2025 - Dominique Leuenberger <dimstar@opensuse.org>
- Update to version 3.58.0:
+ Bug Fixes:
- Partially quoting HTML email drops embedded pictures
- itip-formatter: Show attendee mail according to user
preference
- EWebView: Set "unicode-bidi" style only in Evolution's
iframe-s
+ Miscellaneous: test-web-view-jsc: Correct JavaScript dictionary
object creation (WebKitGTK 2.49.4)
+ Updated translations
-------------------------------------------------------------------
Sat Aug 30 09:56:57 UTC 2025 - Dominique Leuenberger <dimstar@opensuse.org>
- Update to version 3.57.3:
+ Zoom email editor
+ MessageList: Ellipsize column 'Location' in the middle
+ Fix "Crash after saving advanced search"
- Changes from version 3.57.2:
+ Mail Folders in Dark Blue Colour have low Contrast in Dark Mode
+ text-highlight: Use dark style for dark theme
+ Mail: Add "Go to Containing Folder" action in search folders
- Changes from version 3.57.1:
+ Change folder color when new messages are added
+ Calendar: Change organizer in 'Edit as New'
+ Some images do not display within RSS/ATOM feed articles
+ Ensure "New" button action in Calendar view
+ Open a new window: Two windows open instead of one
+ Calendar: Cannot show/hide Tasks and Memos pane
+ Calendar: Year and List views: Hide mini-calendar container
+ Mail: Avoid message list double regeneration on folder change
+ EStockRequest: Use symbolic icons if preferred and available
+ Mail: Use insert-image for "Load Images" and remote content
icon in the WebView
+ Updated translations
- Drop evolution-fix-gtk-call-from-other-thread.patch: fixed
upstream
-------------------------------------------------------------------
Tue Jun 24 03:39:39 UTC 2025 - Alynx Zhou <alynx.zhou@suse.com>
- Add evolution-fix-gtk-call-from-other-thread.patch: Fix crash
because of GTK call from other thread (bsc#1243898).
-------------------------------------------------------------------
Fri May 23 19:24:14 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 3.56.2:
+ Bug Fixes:
- Check return value of CamelDataWrapper calculate size
functions
- Cannot add actions in 'Customize User Interface' dialog
- Ensure "New" button action in Calendar view
- Mail: Do not strip signature for Edit as New in Sent folder
+ Miscellaneous: Calendar: Cannot show/hide Tasks and Memos pane
-------------------------------------------------------------------
Fri May 23 12:41:39 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
- Drop obsolete update-desktop-files BuildRequires and macro.
-------------------------------------------------------------------
Fri Apr 11 06:58:06 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 3.56.1:
+ Bug Fixes:
- Mail: Magic Spacebar sometimes doesn't switch mail
- Remove Attachments fails with signed messages
- ECompEditor: Buttons to add attachments do nothing
- "New->..." actions missing in UI customization dialog
- Composer: Prompt for "send with shortcut" doesn't work
- e-convert.js: Exception on convert to plain text
-------------------------------------------------------------------
Tue Mar 25 09:42:52 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
- Drop pkgconfig(gladeui-2.0) BuildRequires and stop passing
WITH_GLADE_CATALOG=ON to cmake, no longer build the optional
glade support. Following this, drop the glade-catalog-evolution
sub-package.
-------------------------------------------------------------------
Fri Mar 14 12:51:27 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 3.56.0:
+ Bug Fixes:
- Workaround shown menu icons when should not be
- Crash on quit of the app
- mail: Add .mbox extension to dragged email files
- Tasks: Compare DUE date in local time zone, not the
property's zone
- ECalShellView: Add a translator comment for an ambiguous
string
- Forwarding from Unified Inbox picks wrong From account
- Task bar in Calendar view is not sufficiently updated
- Month View: Sometimes not fully populated
- Mark Folder as read works not longer on subfolders
+ Miscellaneous:
- EWeekView: Scroll by shown weeks when scrolling by month
- templates: Fix a circular dependency between structures
- e-mail-shell-view-actions: Fix a memory leak
- prefer-plain: Fix a ref/unref imbalance on an EUIActionGroup
object
+ Updated translations.
-------------------------------------------------------------------
Fri Feb 28 12:38:11 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 3.55.3:
+ Bug Fixes:
- EImportAssistant: Keep the preview widget expanded
- Add option to use bigger text for time in the "To Do" pane
- itip-formatter: State status of found appointment in email
- MessageList: Use GTask instead of RegenData to keep track of
current task
- EMailLabelTreeView: Label colors not shown with symbolic
icons
- Switcher appearance resets to "Icons and Text" after restart
- Entering number in search bar colours selected message
- Composer: Middle-click paste misplaced with changed font
scaling
- ETree: Expander triangle is reversed
- Use GdkDisplay instead of GdkScreen when possible
- EUIManager: Do not do direct comparison with GVariantType
- e-util: Remove GalA11yETableFactory and GalA11yETreeFactory
+ Miscellaneous:
- EWebKitEditor: Correct GObject property type on read
- text-highlight: Update 'highlight' arguments
- Composer: Do not add extra empty lines at the end of the plain text
- help: Add missing help files into the build script
+ Updated translations:
-------------------------------------------------------------------
Fri Jan 31 18:53:12 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 3.55.2 (Unstable):
+ Bug Fixes:
- Mail: Show inline images with 'name' as attachments
- Apply changes in attachment properties popover with Enter
- Change default button in delete confirmation dialog
- S/MIME: Backup certificate with stronger/better algorithm
- Expose the "Bulk Edit..." in the contextual menu
- mail-autoconfig: Use real user e-mail in the request
- ETableSortInfo: Have a strong reference on the
ETableSpecification
- Mail: "To Do" bar is always shown after restart
- Mail: Allow save of a message attachment to a mail folder
- mail-dialogs: Use GtkGrid instead of GtkTable
- canvas: Actually subclass GInitiallyUnowned
- libgnomecanvas: Remove gnome-canvas-i18n.h
- Replace all occurences of gtk_icon_info_free
- EMeetingTimeSelector: Subclass GtkGrid
- EMeetingTimeSelector: Use a GtkGrid for the time selector
- EComposerHeaderTable: Make it a GtkGrid subclass
- EContactEditor: Use GtkGrid instead of GtkTable
- EContactQuickAdd: Use GtkGrid instead of GtkTable
- Remove ESendOptionsDialog
- ETableConfig: Use GtkComboboxText directly
- Use GtkGrid instead of GtkTable
- Require GLib 2.70
- Get rid of GtkAlignment in the code
- EAlphabetBox: Base the widget on GtkListBox
- Replace GtkArrow with images
- Remove e_util_check_gtk_bindings_in_key_press_event_cb
- Remove the use of gtk_scrolled_window_add_with_viewport
- EWeekdayChooser: Switch to native GTK widgets
- Replace g_memdup with g_memdup2
- Do not use GTimeVal
- Avoid the use of g_binding_get_source/target
- Replace gtk_combo_box_set_focus_on_click with
gtk_widget_set_focus_on_click
- Use webkit_settings_font_size_to_pixels to set font size
- Remove calendar/gui/misc.c|.h
- itip-formatter: Import of forwarded meeting as bare event
+ Miscellaneous:
- ETaskTable: Use "stock_check-filled-symbolic" icon name
- EAddressbookView: Context menu could be shown twice in the
Minicard view
- Switcher button icon does not change when action's icon name
changes
- EShellView: Do not process accels when search entry is
focused
- Preview layout setting does not stick after app restart
- Remove e-reflow and e-reflow-model
- EAttachmentBar: Verify 'possible_attachments" is non-NULL
before using it
- Replace margin-left/right with margin-start/end
- e-misc-utils: Remove unused e_util_stop_signal_emission_cb()
- Use gtk_show_uri_on_window instead of gtk_show_uri
- EShellSwitcher: Cannot create a new window by a switcher
button press
- docs: Remove index references for versions not in the code
any more
+ Updated translations.
-------------------------------------------------------------------
Sat Jan 4 09:22:52 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 3.54.3:
+ Miscellaneous: ESourceSelector: Source child drawn in too thin
font.
-------------------------------------------------------------------
Fri Nov 22 12:26:56 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
- Update to version 3.54.2:
+ Bug Fixes:
- Composer: Possible crash on paste
- Correct certificate key usage constants
- ToDo bar sometimes does not display due tasks
+ Miscellaneous: Default inbox email: Update URIs, remove link to
defunct mailing list.
+ Updated translations.
-------------------------------------------------------------------
Fri Oct 18 07:15:01 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 3.54.1:
+ Bug Fixes: Missing sender's S/MIME certificate import button
+ Miscellaneous:
- libgnomecanvas: Add few checks for argument validity
- WebKitGTK 2.46.1: Middle mouse button inserts primary
clipboard twice
+ Updated translations.
-------------------------------------------------------------------
Fri Sep 13 07:36:18 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
- Update to version 3.54.0:
+ Bug Fixes:
- Calendar: Correct typos "Sent Notice" -> "Send Notice".
- Typo in code eab-contact.
- Calendar: Correct typo in error message id.
- Set prgname to application ID.
+ Miscellaneous:
- docs: Correct developer documentation to install API indexes.
- CI: Export also developer documentation into the web pages.
+ Updated translations.
-------------------------------------------------------------------
Fri Aug 30 08:23:57 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 3.52.3:
+ Bug Fixes:
- Permit only one instance of “Evolution Accounts” window
- Translations of the concepts "email" and "raw email" are difficult for users
- Mail: junk-test not called since I#2780
- Translations in WebExtension do not work
- Calendar: Fix gettext format problems
+ Miscellaneous: help: Open the latest help web pages when help
not available locally
+ Updated translations.
-------------------------------------------------------------------
Sun Aug 25 13:09:07 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 3.52.2:
+ CI: Update OpenLDAP version
+ CI: Update dependencies in the Flatpak manifest
+ CI: Add language switcher into the generated help/ pages
+ flaptak: Update dependencies in the build strict for the
development version
+ EWebView: Just loaded remote images may be left invisible
+ EToDoPane: Robust open of a calendar client
+ Calendar: Correct indent of some options in the Preferences
+ help: Mention the Switcher buttons appearance can be changed in
the menu
+ Bug Fixes:
- Ability to identify which domain a blocked remote image is related to
- Support custom icon and text color also for Search Folders
- Remove multiple CC warning if they are sharing common domain
- Allow internal anchor links in HTML mail composer
- Tooltips in Month view not always shown
- Enhance "junk-test" to return also "inconclusive" value
- "Thread by Subject" option not propagated to Search Folders
- Mail: Print to File keeps previous file name
- Tooltips only sometimes displayed in Task and Memos Pane
- Outgoing filter: Source account condition never succeeds
- MessageList: Parents of collapsed threads do not show labels properly
- itip-formatter: Use open-map: link for the Location field
- Mark for Follow Up dialog ignores date format setting
- publish-calendar: Fails to mount destination directory
+ Updated translations.
-------------------------------------------------------------------
Mon Aug 19 11:28:19 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
- BuildRequire gettext-devel instead of gettext: allow OBS to
shortcut through gettext-runtime-mini.
-------------------------------------------------------------------
Mon Aug 5 06:52:20 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
@@ -8915,12 +8574,12 @@ Fri Oct 31 15:54:05 CET 2008 - msuman@suse.de
for picking the LDAP libraries.
-------------------------------------------------------------------
Tue Oct 28 18:39:33 UTC 2008 - maw@suse.de
Tue Oct 28 18:39:33 CST 2008 - maw@suse.de
- Tag evo-core-mapi-changes.diff.
-------------------------------------------------------------------
Sun Oct 26 23:45:11 UTC 2008 - hpj@novell.com
Sun Oct 26 23:45:11 CST 2008 - hpj@novell.com
- Add evolution-shared-nss-db.patch, which migrates the old NSS
cert DB to the new, shared format and location.
@@ -9751,13 +9410,13 @@ Fri Mar 30 14:20:52 CEST 2007 - aj@suse.de
- Fix BuildRequires.
-------------------------------------------------------------------
Thu Mar 22 13:08:10 UTC 2007 - maw@suse.de
Thu Mar 22 13:08:10 CST 2007 - maw@suse.de
- Update to version 2.10.0
- Update the required intltool version.
-------------------------------------------------------------------
Mon Mar 12 16:44:10 UTC 2007 - maw@suse.de
Mon Mar 12 16:44:10 CST 2007 - maw@suse.de
- Update to version 2.9.91
- Remove upstreamed bnc-214647-add-prefer-plain-plugin.patch

View File

@@ -1,4 +1,4 @@
name: evolution
version: 3.58.3
mtime: 1769761471
commit: 3a2144db32269006fb0baa641d456e098b648f94
version: 3.52.4
mtime: 1722580094
commit: 511ff56a311f93455b057ae22b68d581f900adf4

View File

@@ -1,7 +1,7 @@
#
# spec file for package evolution
#
# Copyright (c) 2026 SUSE LLC and contributors
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
%define _version %(echo %{version} | grep -E -o '[0-9]+\.[0-9]+\.[0-9]+')
Name: evolution
Version: 3.58.3
Version: 3.52.4
Release: 0
# FIXME: check if note on license is still valid (comment before license)
Summary: The Integrated GNOME Mail, Calendar, and Address Book Suite
@@ -29,15 +29,13 @@ License: CC-BY-SA-3.0 AND LGPL-2.0-only AND LGPL-3.0-only AND OLDAP-2.8 A
Group: Productivity/Networking/Email/Clients
URL: https://wiki.gnome.org/Apps/Evolution/
Source0: %{name}-%{version}.tar.zst
# PATCH-FIX-UPSTREAM evolution-year-view-week-number.patch bsc#1256465 mgorse@suse.com -- fix incorrect week numbers in calendar year view.
Patch0: evolution-year-view-week-number.patch
BuildRequires: bison
BuildRequires: bogofilter
BuildRequires: cmake >= 3.15
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: gettext-devel
BuildRequires: gettext
BuildRequires: gtk-doc
BuildRequires: intltool
BuildRequires: openldap2-devel
@@ -47,6 +45,7 @@ BuildRequires: pkgconfig
BuildRequires: psmisc
BuildRequires: spamassassin
BuildRequires: sqlite3-devel
BuildRequires: update-desktop-files
BuildRequires: yelp-tools
BuildRequires: pkgconfig(atk)
BuildRequires: pkgconfig(cairo-gobject)
@@ -56,6 +55,7 @@ BuildRequires: pkgconfig(gail-3.0) >= 3.2.0
BuildRequires: pkgconfig(gdk-pixbuf-2.0) >= 2.24.0
BuildRequires: pkgconfig(geocode-glib-2.0)
BuildRequires: pkgconfig(gio-2.0) >= 2.56.0
BuildRequires: pkgconfig(gladeui-2.0) >= 3.10.0
BuildRequires: pkgconfig(gmodule-2.0) >= 2.40.0
BuildRequires: pkgconfig(gnome-autoar-0) >= 0.1.1
BuildRequires: pkgconfig(gnome-autoar-gtk-0) >= 0.1.1
@@ -101,6 +101,22 @@ calendar, and address book) that should make daily life easier. Because
of the modular design, it is possible to plug new components into
Evolution or embed the existing ones in other applications.
%package -n glade-catalog-evolution
Summary: Glade catalog for the Evolution groupware library
Group: Development/Tools/GUI Builders
Requires: %{name} = %{version}
Requires: glade
Supplements: (glade and %{name}-devel)
%description -n glade-catalog-evolution
Evolution consists of modular components (at the moment: mailer,
calendar, and address book) that should make daily life easier. Because
of the modular design, it is possible to plug new components into
Evolution or embed the existing ones in other applications.
This package provides a catalog for Glade, to allow the use of Evolution
widgets in Glade.
%package -n evolution-plugin-bogofilter
Summary: Bogofilter plugin for the Evolution groupware suite
Group: Productivity/Networking/Email/Clients
@@ -171,12 +187,14 @@ to develop applications that require these.
%cmake \
-DLIBEXEC_INSTALL_DIR=%{_libexecdir} \
-DENABLE_YTNEF=OFF \
-DWITH_GLADE_CATALOG=ON \
-DENABLE_GTK_DOC=ON \
-DCMAKE_SKIP_INSTALL_RPATH=OFF
%cmake_build
%install
%cmake_install
%suse_update_desktop_file -r -G "Mail and Calendar" org.gnome.Evolution GNOME GTK Network Email Calendar ContactManagement
%find_lang %{name} %{?no_lang_C}
%fdupes %{buildroot}/%{_prefix}
@@ -201,7 +219,7 @@ to develop applications that require these.
%{_datadir}/icons/hicolor/*/apps/*.png
%{_datadir}/icons/hicolor/*/apps/evolution.svg
%{_datadir}/icons/hicolor/*/apps/evolution-symbolic.svg
%{_datadir}/metainfo/org.gnome.Evolution.metainfo.xml
%{_datadir}/metainfo/org.gnome.Evolution.appdata.xml
%dir %{_libdir}/evolution/
%{_libdir}/evolution/*.so
%dir %{_libdir}/evolution/modules
@@ -282,6 +300,10 @@ to develop applications that require these.
%{_libdir}/evolution-data-server/camel-providers/libcamelrss.urls
%{_libdir}/evolution/modules/module-rss.so
%files -n glade-catalog-evolution
%{_libdir}/glade/modules/libgladeevolution.so
%{_datadir}/glade/catalogs/evolution.xml
%files -n evolution-plugin-bogofilter
%{_datadir}/metainfo/org.gnome.Evolution-bogofilter.metainfo.xml
%{_libdir}/evolution/modules/module-bogofilter.so