Your message dated Thu, 15 Dec 2022 11:41:22 -0800
with message-id <87zgboh2u5.fsf@contorta>
and subject line Re: wxmaxima: reproducible builds: Embeds date in manpage
dependent on timezone
has caused the Debian Bug report #983148,
regarding wxmaxima: reproducible builds: Embeds date in manpage dependent on
timezone
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.)
--
983148: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=983148
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: wxmaxima
Severity: normal
Tags: patch
User: [email protected]
Usertags: timestamps timezone
X-Debbugs-Cc: [email protected]
The timezone affects the date embedded in the wxmaxima.1 manpages:
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/wxmaxima.html
wxmaxima.1
.TH·"WXMAXIMA"·"1"·"2020-12-27"·"wxMaxima·20.12.1"
vs.
.TH·"WXMAXIMA"·"1"·"2020-12-29"·"wxMaxima·20.12.1"
The attached patch fixes this by setting the timestamp to use the UTC
timezone.
Thanks for maintaining wxmaxima!
live well,
vagrant
From 4e3d8e6f9fafa983dfbe0b0fcb07499696d1fb4d Mon Sep 17 00:00:00 2001
From: Vagrant Cascadian <[email protected]>
Date: Sat, 20 Feb 2021 03:35:09 +0000
Subject: [PATCH] data/CMakeLists.txt: Use UTC timestamp.
While cmake respects SOURCE_DATE_EPOCH, the timezone may still change
the date stamp used.
https://reproducible-builds.org/docs/source-date-epoch/
---
data/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt
index 992cdc2..62120a6 100644
--- a/data/CMakeLists.txt
+++ b/data/CMakeLists.txt
@@ -19,7 +19,7 @@ set(PIXMAPS
if(WIN32)
add_subdirectory(fonts)
else()
- string(TIMESTAMP CURRENTDATE "%Y-%m-%d")
+ string(TIMESTAMP CURRENTDATE "%Y-%m-%d" UTC)
# the config file is ~/.wxMaxima if wxWidgets < 3.1.1
# ~/.config/wxMaxima.conf if wxWidgets >= 3.1.1 (XDG Specification)
if(wxWidgets_VERSION_STRING VERSION_GREATER_EQUAL "3.1.1")
--
2.20.1
signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
Version: 22.05.0-1
On 2021-02-19, Vagrant Cascadian wrote:
> The timezone affects the date embedded in the wxmaxima.1 manpages:
...
> wxmaxima.1
>
> .TH·"WXMAXIMA"·"1"·"2020-12-27"·"wxMaxima·20.12.1"
> vs.
> .TH·"WXMAXIMA"·"1"·"2020-12-29"·"wxMaxima·20.12.1"
>
> The attached patch fixes this by setting the timestamp to use the UTC
> timezone.
This was apparently fixed in an earlier upstream version:
https://tests.reproducible-builds.org/debian/history/wxmaxima.html
live well,
vagrant
signature.asc
Description: PGP signature
--- End Message ---