Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package noisetorch for openSUSE:Factory checked in at 2021-07-20 15:38:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/noisetorch (Old) and /work/SRC/openSUSE:Factory/.noisetorch.new.2632 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "noisetorch" Tue Jul 20 15:38:56 2021 rev:5 rq:907017 version:0.11.2 Changes: -------- --- /work/SRC/openSUSE:Factory/noisetorch/noisetorch.changes 2021-06-01 10:36:29.040713171 +0200 +++ /work/SRC/openSUSE:Factory/.noisetorch.new.2632/noisetorch.changes 2021-07-20 15:39:19.069456682 +0200 @@ -1,0 +2,11 @@ +Thu Jul 15 10:55:04 UTC 2021 - Robert Munteanu <romb...@apache.org> + +- Include the version and packaging information in the about screen + +------------------------------------------------------------------- +Wed May 26 08:12:05 UTC 2021 - Andreas Schneider <a...@cryptomilk.org> + +- Fix linking of librnnoise.so + adds noisetorch-fix-ladspa-linking.patch + +------------------------------------------------------------------- New: ---- noisetorch-fix-ladspa-linking.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ noisetorch.spec ++++++ --- /var/tmp/diff_new_pack.LeImC5/_old 2021-07-20 15:39:20.685459572 +0200 +++ /var/tmp/diff_new_pack.LeImC5/_new 2021-07-20 15:39:20.685459572 +0200 @@ -26,6 +26,9 @@ Source0: NoiseTorch-%{version}.tar.gz # osc service disabledrun Source1: vendor.tar.gz + +Patch0: noisetorch-fix-ladspa-linking.patch + BuildRequires: c++_compiler BuildRequires: cmake BuildRequires: git-core @@ -40,15 +43,16 @@ keyboard, computer fans, trains and the likes. %prep -%setup -q -n NoiseTorch-%{version} -a1 +%autosetup -p1 -n NoiseTorch-%{version} -a1 %build pushd c/ladspa %make_build +ldd rnnoise_ladspa.so popd go generate # -tags release would enable the auto-updater (update.go) -CGO_ENABLED=0 GOOS=linux go build -buildmode=pie -a -ldflags '-s -w -extldflags "-static"' . +CGO_ENABLED=0 GOOS=linux go build -buildmode=pie -a -ldflags '-s -w -extldflags "-static" -X main.version=%{version} -X main.distribution=rpm' . %install install -D -m 644 assets/icon/noisetorch.png %{buildroot}/%{_datadir}/icons/hicolor/256x256/apps/noisetorch.png ++++++ noisetorch-fix-ladspa-linking.patch ++++++ Index: NoiseTorch-0.11.2/c/ladspa/Makefile =================================================================== --- NoiseTorch-0.11.2.orig/c/ladspa/Makefile 2021-05-20 15:04:40.000000000 +0200 +++ NoiseTorch-0.11.2/c/ladspa/Makefile 2021-05-26 10:10:41.198688064 +0200 @@ -1,3 +1,3 @@ default: $(CC) -Wall -O2 -c -fPIC ../ringbuf.c ../rnnoise/*.c module.c - $(CC) -shared -lm -Wl,--version-script=export.txt -o rnnoise_ladspa.so *.o + $(CC) -o rnnoise_ladspa.so *.o -shared -Wl,--version-script=export.txt -lm