Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ioquake3 for openSUSE:Factory checked in at 2025-01-27 20:53:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ioquake3 (Old) and /work/SRC/openSUSE:Factory/.ioquake3.new.2316 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ioquake3" Mon Jan 27 20:53:24 2025 rev:11 rq:1240333 version:1.36+git.20241224 Changes: -------- --- /work/SRC/openSUSE:Factory/ioquake3/ioquake3.changes 2025-01-25 21:05:31.071519936 +0100 +++ /work/SRC/openSUSE:Factory/.ioquake3.new.2316/ioquake3.changes 2025-01-27 20:53:50.483140129 +0100 @@ -1,0 +2,7 @@ +Sun Jan 26 06:24:31 UTC 2025 - Carsten Ziepke <[email protected]> + +- Add ioquake3-drop-build-date-from-generated-file.patch, + https://github.com/ioquake/ioq3/pull/704 + Fix reproducible builds + +------------------------------------------------------------------- New: ---- ioquake3-drop-build-date-from-generated-file.patch BETA DEBUG BEGIN: New: - Add ioquake3-drop-build-date-from-generated-file.patch, https://github.com/ioquake/ioq3/pull/704 BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ioquake3.spec ++++++ --- /var/tmp/diff_new_pack.yoDAgW/_old 2025-01-27 20:53:51.595185963 +0100 +++ /var/tmp/diff_new_pack.yoDAgW/_new 2025-01-27 20:53:51.595185963 +0100 @@ -27,6 +27,8 @@ Group: Amusements/Games/3D/Shoot URL: https://ioquake3.org Source: %{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM ioquake3-drop-build-date-from-generated-file.patch -- Fix reproducible builds -- https://github.com/ioquake/ioq3/pull/704 +Patch0: ioquake3-drop-build-date-from-generated-file.patch BuildRequires: pkgconfig BuildRequires: pkgconfig(libcurl) BuildRequires: pkgconfig(libjpeg) @@ -52,7 +54,7 @@ q3asm %prep -%setup -q +%autosetup -p1 rm -Rf code/SDL2 code/libs code/AL code/curl* code/jpeg-8c code/libogg* code/libvorbis* code/opus* code/zlib %build ++++++ ioquake3-drop-build-date-from-generated-file.patch ++++++ >From a096f9cf699e839a545b56e14f0687b928de4a2d Mon Sep 17 00:00:00 2001 From: "Bernhard M. Wiedemann" <[email protected]> Date: Sat, 25 Jan 2025 19:50:05 +0100 Subject: [PATCH] Drop build date from generated file for reproducible builds. Without this, dagcheck.c in the debugsource package varies across builds. --- code/tools/lcc/lburg/lburg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/tools/lcc/lburg/lburg.c b/code/tools/lcc/lburg/lburg.c index 7cf859ff77..c3bdb1bfda 100644 --- a/code/tools/lcc/lburg/lburg.c +++ b/code/tools/lcc/lburg/lburg.c @@ -458,7 +458,7 @@ static void emitdefs(Nonterm nts, int ntnumber) { static void emitheader(void) { time_t timer = time(NULL); - print("/*\ngenerated at %sby %s\n*/\n", ctime(&timer), rcsid); + print("/*\ngenerated by %s\n*/\n", rcsid); print("static void %Pkids(NODEPTR_TYPE, int, NODEPTR_TYPE[]);\n"); print("static void %Plabel(NODEPTR_TYPE);\n"); print("static int %Prule(void*, int);\n\n");
