Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package evolution for openSUSE:Factory checked in at 2026-02-06 19:05:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/evolution (Old) and /work/SRC/openSUSE:Factory/.evolution.new.1670 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "evolution" Fri Feb 6 19:05:19 2026 rev:292 rq:1331120 version:3.58.3 Changes: -------- --- /work/SRC/openSUSE:Factory/evolution/evolution.changes 2025-11-25 15:52:32.329702007 +0100 +++ /work/SRC/openSUSE:Factory/.evolution.new.1670/evolution.changes 2026-02-06 19:07:34.829112714 +0100 @@ -1,0 +2,19 @@ +Wed Feb 4 14:31:12 UTC 2026 - Michael Gorse <[email protected]> + +- 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 <[email protected]> + +- 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. + +------------------------------------------------------------------- @@ -8899 +8918 @@ -Tue Oct 28 18:39:33 CST 2008 - [email protected] +Tue Oct 28 18:39:33 UTC 2008 - [email protected] @@ -8904 +8923 @@ -Sun Oct 26 23:45:11 CST 2008 - [email protected] +Sun Oct 26 23:45:11 UTC 2008 - [email protected] @@ -9735 +9754 @@ -Thu Mar 22 13:08:10 CST 2007 - [email protected] +Thu Mar 22 13:08:10 UTC 2007 - [email protected] @@ -9741 +9760 @@ -Mon Mar 12 16:44:10 CST 2007 - [email protected] +Mon Mar 12 16:44:10 UTC 2007 - [email protected] Old: ---- evolution-3.58.2.obscpio New: ---- evolution-3.58.3.obscpio evolution-year-view-week-number.patch ----------(New B)---------- New: - Add evolution-year-view-week-number.patch: fix incorrect week numbers in calendar year view (bsc#1256465 ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ evolution.spec ++++++ --- /var/tmp/diff_new_pack.dm3yES/_old 2026-02-06 19:07:36.121167017 +0100 +++ /var/tmp/diff_new_pack.dm3yES/_new 2026-02-06 19:07:36.121167017 +0100 @@ -1,7 +1,7 @@ # # spec file for package evolution # -# Copyright (c) 2025 SUSE LLC and contributors +# Copyright (c) 2026 SUSE LLC and contributors # # 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.2 +Version: 3.58.3 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,6 +29,8 @@ 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 [email protected] -- fix incorrect week numbers in calendar year view. +Patch0: evolution-year-view-week-number.patch BuildRequires: bison BuildRequires: bogofilter ++++++ _service ++++++ --- /var/tmp/diff_new_pack.dm3yES/_old 2026-02-06 19:07:36.169169034 +0100 +++ /var/tmp/diff_new_pack.dm3yES/_new 2026-02-06 19:07:36.173169202 +0100 @@ -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.2</param> + <param name="revision">3.58.3</param> <param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param> <param name="versionrewrite-pattern">(.*)\+0</param> <param name="versionrewrite-replacement">\1</param> ++++++ evolution-3.58.2.obscpio -> evolution-3.58.3.obscpio ++++++ /work/SRC/openSUSE:Factory/evolution/evolution-3.58.2.obscpio /work/SRC/openSUSE:Factory/.evolution.new.1670/evolution-3.58.3.obscpio differ: char 49, line 1 ++++++ evolution-year-view-week-number.patch ++++++ >From 4af3f6833b252f713fe19a531008d6451064701b Mon Sep 17 00:00:00 2001 From: Milan Crha <[email protected]> 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 ++++++ evolution.obsinfo ++++++ --- /var/tmp/diff_new_pack.dm3yES/_old 2026-02-06 19:07:36.253172564 +0100 +++ /var/tmp/diff_new_pack.dm3yES/_new 2026-02-06 19:07:36.257172732 +0100 @@ -1,5 +1,5 @@ name: evolution -version: 3.58.2 -mtime: 1763719644 -commit: 9d5e61fc03417b48dcbf5cafa244cce64cd03d8f +version: 3.58.3 +mtime: 1769761471 +commit: 3a2144db32269006fb0baa641d456e098b648f94
