Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package wrk for openSUSE:Factory checked in at 2025-03-11 20:45:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/wrk (Old) and /work/SRC/openSUSE:Factory/.wrk.new.19136 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wrk" Tue Mar 11 20:45:55 2025 rev:7 rq:1252018 version:4.2.0 Changes: -------- --- /work/SRC/openSUSE:Factory/wrk/wrk.changes 2023-01-11 17:14:37.675677962 +0100 +++ /work/SRC/openSUSE:Factory/.wrk.new.19136/wrk.changes 2025-03-11 20:47:10.250838819 +0100 @@ -1,0 +2,6 @@ +Fri Mar 7 12:11:58 UTC 2025 - Bernhard Wiedemann <bwiedem...@suse.com> + +- Add reproducible.patch to create deterministic lua bytecode +- use system luajit to have the 'd' (deterministic) option available + +------------------------------------------------------------------- New: ---- reproducible.patch BETA DEBUG BEGIN: New: - Add reproducible.patch to create deterministic lua bytecode - use system luajit to have the 'd' (deterministic) option available BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ wrk.spec ++++++ --- /var/tmp/diff_new_pack.q0LzMR/_old 2025-03-11 20:47:10.914866621 +0100 +++ /var/tmp/diff_new_pack.q0LzMR/_new 2025-03-11 20:47:10.914866621 +0100 @@ -25,6 +25,8 @@ URL: https://github.com/wg/wrk Source: https://github.com/wg/wrk/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz Patch0: wrk-4.2.0_distrofixes.patch +Patch1: reproducible.patch +BuildRequires: luajit-devel BuildRequires: pkgconfig BuildRequires: unzip BuildRequires: pkgconfig(openssl) ++++++ reproducible.patch ++++++ Index: wrk-4.2.0/Makefile =================================================================== --- wrk-4.2.0.orig/Makefile +++ wrk-4.2.0/Makefile @@ -61,7 +61,7 @@ $(ODIR): $(ODIR)/bytecode.c: src/wrk.lua $(DEPS) @echo LUAJIT $< - @$(SHELL) -c 'PATH="obj/bin:$(PATH)" luajit -b "$(CURDIR)/$<" "$(CURDIR)/$@"' + @$(SHELL) -c 'luajit -bd "$(CURDIR)/$<" "$(CURDIR)/$@"' $(ODIR)/version.o: @echo 'const char *VERSION="$(VER)";' | $(CC) -xc -c -o $@ -