Your message dated Fri, 30 Jan 2026 18:26:07 +0000
with message-id <[email protected]>
and subject line Bug#1124982: Removed package(s) from unstable
has caused the Debian Bug report #1100018,
regarding yaramod: please 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.)
--
1100018: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1100018
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: yaramod
Version: 3.21.0-1.1
Severity: wishlist
Tags: patch
User: [email protected]
Usertags: filesystem
X-Debbugs-Cc: [email protected]
Hi,
Whilst working on the Reproducible Builds effort [0], we noticed that
yaramod could not be built reproducibly.
This is because it dynamically generated a list of modules by
iterating over the filesystem without sorting that first, thereby
inheriting the nondetermistic ordering of the underlying filesystem.
Patch attached that adds a simple sorted(...) to the os.listdir
call.
[0] https://reproducible-builds.org/
Regards,
--
,''`.
: :' : Chris Lamb
`. `'` [email protected] / chris-lamb.co.uk
`-
--- a/debian/patches/0004-Reproducible-build.patch 1970-01-01
01:00:00.000000000 +0100
--- b/debian/patches/0004-Reproducible-build.patch 2025-03-10
10:43:53.802043891 +0000
@@ -0,0 +1,15 @@
+Description: Make the build reproducible
+Author: Chris Lamb <[email protected]>
+Last-Update: 2025-03-10
+
+--- yaramod-3.21.0.orig/scripts/json_to_array.py
++++ yaramod-3.21.0/scripts/json_to_array.py
+@@ -56,7 +56,7 @@ def main(argv):
+ ''')
+ module_names = []
+
+- for file in os.listdir(input_directory):
++ for file in sorted(os.listdir(input_directory)):
+ filename, extension = os.path.splitext(file)
+ if extension != ".json":
+ continue
--- a/debian/patches/series 2025-03-10 10:28:27.468230893 +0000
--- b/debian/patches/series 2025-03-10 10:43:52.834040543 +0000
@@ -1,3 +1,4 @@
0001-Build-Python-module-together.patch
0002-Build-shared-library.patch
0003-Use-system-packages.patch
+0004-Reproducible-build.patch
--- End Message ---
--- Begin Message ---
Version: 3.21.0-1.1+rm
Dear submitter,
as the package yaramod has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/1124982
The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.
Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].
Debian distribution maintenance software
pp.
Thorsten Alteholz (the ftpmaster behind the curtain)
--- End Message ---