Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package zita-resampler for openSUSE:Factory checked in at 2023-08-30 10:21:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/zita-resampler (Old) and /work/SRC/openSUSE:Factory/.zita-resampler.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "zita-resampler" Wed Aug 30 10:21:17 2023 rev:4 rq:1107995 version:1.11.2 Changes: -------- --- /work/SRC/openSUSE:Factory/zita-resampler/zita-resampler.changes 2020-12-31 10:03:24.051138866 +0100 +++ /work/SRC/openSUSE:Factory/.zita-resampler.new.1766/zita-resampler.changes 2023-08-30 10:24:06.803922279 +0200 @@ -1,0 +2,28 @@ +Tue Aug 29 16:59:06 UTC 2023 - Edgar Aichinger <edog...@aon.at> + +- Update to version 1.11.2 + * Added optimised code for ARM64, contributed by Nicolas Belin. + Edit the Makefile to disable SSE2 and enable NEON when + compiling for ARM64. +- Update patches: + * fix-makefile.patch + * disable-sse.patch + +------------------------------------------------------------------- +Sat Feb 18 09:11:32 UTC 2023 - Edgar Aichinger <edog...@aon.at> + +- Update to version 1.10.1 + * Fixed dithering of clipped signals. +- Update patches: + * fix-makefile.patch + * disable-sse.patch + +------------------------------------------------------------------- +Thu Feb 16 19:54:21 UTC 2023 - Martin Hauke <mar...@gmx.de> + +- Update to version 1.10.0 + * Fixed constructor parameter range tests. +- Update patch: + * fix-makefile.patch + +------------------------------------------------------------------- Old: ---- zita-resampler-1.8.0.tar.bz2 New: ---- zita-resampler-1.11.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ zita-resampler.spec ++++++ --- /var/tmp/diff_new_pack.Vsf3r1/_old 2023-08-30 10:24:07.863960116 +0200 +++ /var/tmp/diff_new_pack.Vsf3r1/_new 2023-08-30 10:24:07.871960402 +0200 @@ -1,8 +1,8 @@ # # spec file for package zita-resampler # -# Copyright (c) 2020 SUSE LLC -# Copyright (c) 2020, Martin Hauke <mar...@gmx.de> +# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2020-2023, Martin Hauke <mar...@gmx.de> # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,13 +20,13 @@ %define sover 1 %define libname libzita-resampler%{sover} Name: zita-resampler -Version: 1.8.0 +Version: 1.11.2 Release: 0 Summary: A C++ library for resampling audio signals License: GPL-3.0-or-later Group: System/Libraries URL: https://kokkinizita.linuxaudio.org/linuxaudio/zita-resampler/resampler.html -Source: https://kokkinizita.linuxaudio.org/linuxaudio/downloads/%{name}-%{version}.tar.bz2 +Source: https://kokkinizita.linuxaudio.org/linuxaudio/downloads/%{name}-%{version}.tar.xz Patch0: fix-makefile.patch Patch1: disable-sse.patch BuildRequires: gcc-c++ @@ -73,7 +73,6 @@ libsndfile library. The output file type is either WAV, WAVEX, CAF, AIFF or FLAC. - %prep %setup -q %patch0 -p1 ++++++ disable-sse.patch ++++++ --- /var/tmp/diff_new_pack.Vsf3r1/_old 2023-08-30 10:24:07.891961116 +0200 +++ /var/tmp/diff_new_pack.Vsf3r1/_new 2023-08-30 10:24:07.895961259 +0200 @@ -2,11 +2,13 @@ index 72c6eb9..c596e13 100644 --- a/source/Makefile +++ b/source/Makefile -@@ -31,7 +31,6 @@ VERSION = $(MAJVERS).$(MINVERS) +@@ -31,8 +31,7 @@ VERSION = $(MAJVERS).$(MINVERS) DISTDIR = zita-resampler-$(VERSION) CPPFLAGS += -I. -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -CPPFLAGS += -DENABLE_SSE2 +-#CPPFLAGS += -DENABLE_NEON ++CPPFLAGS += -DENABLE_NEON CXXFLAGS += -Wall -fPIC -O2 -ffast-math LDFLAGS += LDLIBS += ++++++ fix-makefile.patch ++++++ --- /var/tmp/diff_new_pack.Vsf3r1/_old 2023-08-30 10:24:07.907961687 +0200 +++ /var/tmp/diff_new_pack.Vsf3r1/_new 2023-08-30 10:24:07.907961687 +0200 @@ -1,56 +1,24 @@ diff --git a/apps/Makefile b/apps/Makefile -index 053b9a6..7216d1c 100644 +index 0b96a9e..2705170 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -25,7 +25,6 @@ MANDIR ?= /usr/share/man/man1 - VERSION = 1.6.0 + VERSION = 1.10.1 CPPFLAGS += -MMD -MP -DVERSION=\"$(VERSION)\" CXXFLAGS += -O2 -ffast-math -Wall -CXXFLAGS += -march=native all: zresample zretune zresample.1.gz zretune.1.gz -@@ -55,8 +54,8 @@ zretune.1.gz: zretune.1 - - - install: all -- install -d $(BINDIR) -- install -d $(MANDIR) -+ install -d $(DESTDIR)$(BINDIR) -+ install -d $(DESTDIR)$(MANDIR) - install -m 755 zresample $(DESTDIR)$(BINDIR) - install -m 755 zretune $(DESTDIR)$(BINDIR) - install -m 644 zresample.1.gz $(DESTDIR)$(MANDIR) -@@ -65,8 +64,8 @@ install: all - uninstall: - /bin/rm -f $(DESTDIR)$(BINDIR)/zresample - /bin/rm -f $(DESTDIR)$(BINDIR)/zretune -- /bin/rm -f $(MANDIR)/zresample.1.gz -- /bin/rm -f $(MANDIR)/zretune.1.gz -+ /bin/rm -f $(DESTDIR)$(MANDIR)/zresample.1.gz -+ /bin/rm -f $(DESTDIR)$(MANDIR)/zretune.1.gz - - clean: - /bin/rm -f *~ *.o *.a *.d *.so *.gz zresample zretune diff --git a/source/Makefile b/source/Makefile -index de27da2..72c6eb9 100644 +index 97d1ffa..1491488 100644 --- a/source/Makefile +++ b/source/Makefile -@@ -33,7 +33,6 @@ DISTDIR = zita-resampler-$(VERSION) - CPPFLAGS += -I. -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS +@@ -34,7 +34,6 @@ CPPFLAGS += -I. -D_REENTRANT -D_POSIX_PT CPPFLAGS += -DENABLE_SSE2 + #CPPFLAGS += -DENABLE_NEON CXXFLAGS += -Wall -fPIC -O2 -ffast-math -CXXFLAGS += -march=native LDFLAGS += LDLIBS += - -@@ -58,7 +57,7 @@ install: $(ZITA-RESAMPLER_MIN) - install -d $(DESTDIR)$(LIBDIR) - install -m 644 $(ZITA-RESAMPLER_H) $(DESTDIR)$(INCDIR)/zita-resampler - install -m 755 $(ZITA-RESAMPLER_MIN) $(DESTDIR)$(LIBDIR) -- ldconfig -+ /sbin/ldconfig -N $(DESTDIR)/$(LIBDIR) - ln -sf $(ZITA-RESAMPLER_MIN) $(DESTDIR)$(LIBDIR)/$(ZITA-RESAMPLER_SO) - - uninstall: