Your message dated Thu, 21 Aug 2025 12:02:04 +0300
with message-id <aKbgjIccOuWZZxg9@localhost>
and subject line Re: Bug#1111348: syncevolution FTBFS on 32-bit with 64-bit
time_t
has caused the Debian Bug report #1111668,
regarding RM: syncevolution [armel armhf] -- RoQA; NBS; incompatible with
64-bit time
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1111668: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1111668
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: ftp.debian.org
Severity: normal
X-Debbugs-Cc: [email protected]
User: [email protected]
Usertags: remove
Control: affects -1 src:syncevolution
syncevolution fails to build on 32-bit architectures that have
switched to 64-bit time_t:
https://bugs.debian.org/1111348
syncevolution has had one commit in the past 4 years so it's unlikely
for upstream to fix this issue. It has such low popcon that we are
unlikely to invest the time to fix the issue in Debian directly.
syncevolution has no reverse dependencies except for parl-desktop
which is an architecture:all package (and is only in unstable
currently, not testing).
Therefore, please remove syncevolution on armel and armhf.
Thank you,
Jeremy Bícha
--- End Message ---
--- Begin Message ---
Control: tags -1 patch
On Wed, Aug 20, 2025 at 06:47:55PM -0400, Jeremy Bicha wrote:
> Thank you for reporting this bug.
>
> I filed a removal bug for those architectures: https://bugs.debian.org/1111668
>
> Once that's processed, we can downgrade this bug to important.
Please add the attached fix instead.
> Thank you,
> Jeremy BÍcha
cu
Adrian
BTW:
The copy of the email you sent me personally was encrypted
(not just signed).
Description: Fix FTBFS on 32-bit with 64-bit time_t
Author: Adrian Bunk <[email protected]>
Bug-Debian: https://bugs.debian.org/1111348
--- syncevolution-2.0.0.orig/src/gtk3-ui/sync-ui.c
+++ syncevolution-2.0.0/src/gtk3-ui/sync-ui.c
@@ -1611,7 +1611,7 @@ restore_clicked_cb (GtkButton *btn, app_
static void
add_backup (app_data *data, const char *peername, const char *dir,
- long endtime, GList *sources)
+ time_t endtime, GList *sources)
{
GtkWidget *timelabel, *label, *blabel, *button, *box;;
guint rows;
@@ -1689,7 +1689,7 @@ get_reports_for_backups_cb (SyncevoServe
GHashTableIter iter;
char *key, *val;
/* long status = -1; */
- long endtime = -1;
+ time_t endtime = -1;
char *peername = NULL;
char *dir = NULL;
GList *backup_sources = NULL;
--- End Message ---