Your message dated Mon, 31 Aug 2026 09:34:18 +0000
with message-id <[email protected]>
and subject line Bug#1146088: fixed in ferret-vis 7.6.0-13
has caused the Debian Bug report #1146088,
regarding ferret-vis patch to make the build reproducible
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.)
--
1146088: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1146088
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: ferret-vis
Version: 7.6.0-12
Severity: normal
Tags: patch
X-Debbugs-Cc: Alastair McKinstry <[email protected]>,
[email protected]
User: [email protected]
Usertags: environment
Hi Alastair,
ferret-vis is currently blocked from migrating to testing because it
regressed in reproducibility:
https://reproduce.debian.net/excuses.html?source_name=ferret-vis
>From my tests this is due to encoding the kernel version into the
executable. Please find attached a patch that should fix this.
Cheers Jochen
diff --git a/debian/platform_specific.mk.debian.flang-7
b/debian/platform_specific.mk.debian.flang-7
index 40369e3..656b827 100644
--- a/debian/platform_specific.mk.debian.flang-7
+++ b/debian/platform_specific.mk.debian.flang-7
@@ -4,7 +4,7 @@
# This file is included in other Makefiles and defines
# platform specific macros
-PLATFORM = $(shell uname -s -r)
+PLATFORM = $(shell uname -s)
GUI_INCLUDES =
GKS_INCLUDES =-I/usr/include/xgks
diff --git a/debian/platform_specific.mk.debian.gfortran-10
b/debian/platform_specific.mk.debian.gfortran-10
index 3c6e24a..f62ab27 100644
--- a/debian/platform_specific.mk.debian.gfortran-10
+++ b/debian/platform_specific.mk.debian.gfortran-10
@@ -4,7 +4,7 @@
# This file is included in other Makefiles and defines
# platform specific macros
-PLATFORM = $(shell uname -s -r)
+PLATFORM = $(shell uname -s)
GUI_INCLUDES =
GKS_INCLUDES =-I/usr/include/xgks
diff --git a/debian/platform_specific.mk.debian.gfortran-11
b/debian/platform_specific.mk.debian.gfortran-11
index 3c6e24a..f62ab27 100644
--- a/debian/platform_specific.mk.debian.gfortran-11
+++ b/debian/platform_specific.mk.debian.gfortran-11
@@ -4,7 +4,7 @@
# This file is included in other Makefiles and defines
# platform specific macros
-PLATFORM = $(shell uname -s -r)
+PLATFORM = $(shell uname -s)
GUI_INCLUDES =
GKS_INCLUDES =-I/usr/include/xgks
diff --git a/debian/platform_specific.mk.debian.gfortran-12
b/debian/platform_specific.mk.debian.gfortran-12
index 3c6e24a..f62ab27 100644
--- a/debian/platform_specific.mk.debian.gfortran-12
+++ b/debian/platform_specific.mk.debian.gfortran-12
@@ -4,7 +4,7 @@
# This file is included in other Makefiles and defines
# platform specific macros
-PLATFORM = $(shell uname -s -r)
+PLATFORM = $(shell uname -s)
GUI_INCLUDES =
GKS_INCLUDES =-I/usr/include/xgks
diff --git a/debian/platform_specific.mk.debian.gfortran-13
b/debian/platform_specific.mk.debian.gfortran-13
index 46db1bd..6bd4612 100644
--- a/debian/platform_specific.mk.debian.gfortran-13
+++ b/debian/platform_specific.mk.debian.gfortran-13
@@ -4,7 +4,7 @@
# This file is included in other Makefiles and defines
# platform specific macros
-PLATFORM = $(shell uname -s -r)
+PLATFORM = $(shell uname -s)
GUI_INCLUDES =
GKS_INCLUDES =-I/usr/include/xgks
diff --git a/debian/platform_specific.mk.debian.gfortran-14
b/debian/platform_specific.mk.debian.gfortran-14
index 46db1bd..6bd4612 100644
--- a/debian/platform_specific.mk.debian.gfortran-14
+++ b/debian/platform_specific.mk.debian.gfortran-14
@@ -4,7 +4,7 @@
# This file is included in other Makefiles and defines
# platform specific macros
-PLATFORM = $(shell uname -s -r)
+PLATFORM = $(shell uname -s)
GUI_INCLUDES =
GKS_INCLUDES =-I/usr/include/xgks
diff --git a/debian/platform_specific.mk.debian.gfortran-15
b/debian/platform_specific.mk.debian.gfortran-15
index b16c454..4a4b846 100644
--- a/debian/platform_specific.mk.debian.gfortran-15
+++ b/debian/platform_specific.mk.debian.gfortran-15
@@ -4,7 +4,7 @@
# This file is included in other Makefiles and defines
# platform specific macros
-PLATFORM = $(shell uname -s -r)
+PLATFORM = $(shell uname -s)
GUI_INCLUDES =
GKS_INCLUDES =-I/usr/include/xgks
diff --git a/debian/platform_specific.mk.debian.gfortran-16
b/debian/platform_specific.mk.debian.gfortran-16
index b16c454..4a4b846 100644
--- a/debian/platform_specific.mk.debian.gfortran-16
+++ b/debian/platform_specific.mk.debian.gfortran-16
@@ -4,7 +4,7 @@
# This file is included in other Makefiles and defines
# platform specific macros
-PLATFORM = $(shell uname -s -r)
+PLATFORM = $(shell uname -s)
GUI_INCLUDES =
GKS_INCLUDES =-I/usr/include/xgks
diff --git a/debian/platform_specific.mk.debian.gfortran-9
b/debian/platform_specific.mk.debian.gfortran-9
index b9bc235..821b56c 100644
--- a/debian/platform_specific.mk.debian.gfortran-9
+++ b/debian/platform_specific.mk.debian.gfortran-9
@@ -4,7 +4,7 @@
# This file is included in other Makefiles and defines
# platform specific macros
-PLATFORM = $(shell uname -s -r)
+PLATFORM = $(shell uname -s)
GUI_INCLUDES =
GKS_INCLUDES =-I/usr/include/xgks
--- End Message ---
--- Begin Message ---
Source: ferret-vis
Source-Version: 7.6.0-13
Done: Alastair McKinstry <[email protected]>
We believe that the bug you reported is fixed in the latest version of
ferret-vis, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Alastair McKinstry <[email protected]> (supplier of updated ferret-vis
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Mon, 31 Aug 2026 10:12:05 +0100
Source: ferret-vis
Architecture: source
Version: 7.6.0-13
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers
<[email protected]>
Changed-By: Alastair McKinstry <[email protected]>
Closes: 1146088
Changes:
ferret-vis (7.6.0-13) unstable; urgency=medium
.
* Fix for reproducibility from Jochen Sprickerhof: don't capture
kernel version in build. Closes: #1146088
Checksums-Sha1:
b52615953dc47159afad0c7ff97585d6196ff220 2294 ferret-vis_7.6.0-13.dsc
2018c2eddec39a7717c1ee479fb284804db6140b 46032
ferret-vis_7.6.0-13.debian.tar.xz
2b95098971cb87a1ccaf0b49f9f3e467b520f009 12209
ferret-vis_7.6.0-13_arm64.buildinfo
Checksums-Sha256:
e507c69e586afeeb83838904a5aa634ccf28d977ec3076ea0c83f97b9338a753 2294
ferret-vis_7.6.0-13.dsc
6b116b0a8a063f7323d83c792830f670f9add6063c821dbddf9db3a5fab7827b 46032
ferret-vis_7.6.0-13.debian.tar.xz
c5ff818acc352458faafc276478006b23b9e679b99f7ab92bddbf963055bfa03 12209
ferret-vis_7.6.0-13_arm64.buildinfo
Files:
44cf6b85691d5fef2cc9880566ecd9b7 2294 utils optional ferret-vis_7.6.0-13.dsc
fdc9a70a2d518743ba7224672818ff13 46032 utils optional
ferret-vis_7.6.0-13.debian.tar.xz
7a5a2aee03289d26da54e4fca95cbd15 12209 utils optional
ferret-vis_7.6.0-13_arm64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEgjg86RZbNHx4cIGiy+a7Tl2a06UFAmqVSDQACgkQy+a7Tl2a
06XXsA/+I3syC9sE4mjraEPbmdgZ5aS1xCpHo3AmF/OwldGcuA5XMvh567x4c+N5
ecq7v4LVU2zlA+E7u+itFDMV3+BG9SN0QXrEnx8SGXPeDO2oO1tFNswoanbN8sA9
hEzqlZ3A4LKmiKXHnDn2ONgSNWWbD0b9rnOvaRuLkSV7bVFAuDnG2Tzc7CHQT+qs
MRBIY653SB7gr5D7wrcIgjnuj4RPitawDfNsOU4Xfcigl64c1Z8qb70jfs32/dxo
RAGOgLk1XAy+rMbKwfQr5LBwvwF5AbTXatLsDHnTuKYKiuG2wDl+SpW5cVm/rnYQ
IruF+IuqQhmUrykLfGstVH1uAC14L56nQTqhhos1JlEnw7F+0Dh4HKYEB3FWO0nG
3YmzAG2bQxGXHgR7Rmat22UUQOBiOTFuT+g3PC72t4/grgDvD5fXwqqtH1/q8GPr
6Y7PD76Eaczt+n0V9G73ss7QYBcMtxhRYNQVNM6gGt4noqJ1qe1mWMHuDszfGkyZ
kML3l+zUledoRiHuzUXUrKAGz2J7y66HKoYsqzWAZkCrqiaYHXKMKBE1H1vtyb3/
+VnI9JUM91YLzw6p/fQAqoEARviyfusnelVi6zrBUCbr3ANkGkOOahq5/P0rjvUX
fOb45kLgusW9hqoC4lKQZkgNwkCSWFL3yvlk60t63cVBq8+D1fw=
=OMk8
-----END PGP SIGNATURE-----
pgpTq6QGOJt7e.pgp
Description: PGP signature
--- End Message ---
--
debian-science-maintainers mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-science-maintainers