[From nobody Mon Aug 31 10:35:07 2026
Received: (at submit) by bugs.debian.org; 29 Aug 2026 16:57:48 +0000
X-Spam-Checker-Version: SpamAssassin 4.0.1-bugs.debian.org_2005_01_02
 (2024-03-25) on buxtehude.debian.org
X-Spam-Level: 
X-Spam-Status: No, score=-111.2 required=4.0 tests=ALL_TRUSTED,BAYES_00,
 DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,
 FROMDEVELOPER,SPF_HELO_NONE,SPF_PASS,USER_IN_DKIM_WELCOMELIST,
 XMAILER_REPORTBUG autolearn=ham autolearn_force=no
 version=4.0.1-bugs.debian.org_2005_01_02
X-Spam-Bayes: score:0.0000 Tokens: new, 59; hammy, 150; neutral, 27; spammy,
 0. spammytokens:
 hammytokens:0.000-+--Hx-spam-relays-external:sk:stravin,
 0.000-+--H*RT:sk:stravin, 0.000-+--Hx-spam-relays-external:311,
 0.000-+--H*RT:311, 0.000-+--H*RT:108
Return-path: &lt;jspricke@debian.org&gt;
Received: from stravinsky.debian.org ([2001:41b8:202:deb::311:108]:53372)
 by buxtehude.debian.org with esmtps
 (TLS1.3:ECDHE_SECP256R1__RSA_PSS_RSAE_SHA256__AES_256_GCM:256)
 (Exim 4.96) (envelope-from &lt;jspricke@debian.org&gt;) id 1x0MNI-001AHq-0M
 for submit@bugs.debian.org; Sat, 29 Aug 2026 16:57:48 +0000
DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=debian.org; 
 s=smtpauto.stravinsky;
 h=X-Debian-User:Date:Message-ID:Subject:To:From:
 MIME-Version:Content-Type:Reply-To:Cc:Content-Transfer-Encoding:Content-ID:
 Content-Description:In-Reply-To:References;
 bh=0DOjkSdmK0xQTZeJyNfYZHvIo1V7999KWTtk4gdGDRY=; b=p/4FrqAqdOf/eJmEixM/S5YEvZ
 h6HKniXuwwI0zvH/rQQYmxIm9uL/sot24qBYFN2wHAYdev4WhWY0i+a+BIZwyPxqs6BVu06qnMBgo
 jzIQWm3I9TOZTfgMS0ixlVelrjBjiItnDirPH0oMHqVxrnMLOC9Pzn4hB8VTDILIn/ra0cXZUG5zM
 LtVgzDEq3bDz+amKiNavjhHzQgIEtzELEv4Llym2HcHF/yuYyCXhGS+XcWiSd6azBkhRdhrbAI5pl
 PhqeY9AXmS4DoB2/on9gPeE+RtsqxaSicEAybCxUUT3xT3I7e4YBq1rQxJ0DVefXtmwGM5qlzkySQ
 TnXSj4JQ==;
Received: from authenticated-user by stravinsky.debian.org with esmtpsa
 (TLS1.3:ECDHE_SECP256R1__RSA_PSS_RSAE_SHA256__AES_256_GCM:256)
 (Exim 4.96) (envelope-from &lt;jspricke@debian.org&gt;)
 id 1x0MNF-0006nn-1I; Sat, 29 Aug 2026 16:57:46 +0000
Content-Type: multipart/mixed; boundary=&quot;===============7950672893243656845==&quot;
MIME-Version: 1.0
From: Jochen Sprickerhof &lt;jspricke@debian.org&gt;
To: Debian Bug Tracking System &lt;submit@bugs.debian.org&gt;
Subject: ferret-vis patch to make the build reproducible
Message-ID: &lt;178802266453.39158.9344030472564482481.reportbug@fenchel&gt;
X-Mailer: reportbug 13.2.0+nmu1
Date: Sat, 29 Aug 2026 18:57:44 +0200
X-Debian-User: jspricke
Delivered-To: submit@bugs.debian.org

This is a multi-part MIME message sent by reportbug.


--===============7950672893243656845==
Content-Type: text/plain; charset=&quot;us-ascii&quot;
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Source: ferret-vis
Version: 7.6.0-12
Severity: normal
Tags: patch
X-Debbugs-Cc: Alastair McKinstry &lt;mckinstry@debian.org&gt;, reproducible-bugs@lists.alioth.debian.org
User: reproducible-builds@lists.alioth.debian.org
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

&gt;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

--===============7950672893243656845==
Content-Type: text/plain; charset=&quot;us-ascii&quot;
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=&quot;ferret-vis.patch&quot;

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 

--===============7950672893243656845==--
]