Hello community, here is the log from the commit of package jack for openSUSE:Factory checked in at 2019-11-06 13:47:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/jack (Old) and /work/SRC/openSUSE:Factory/.jack.new.2990 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "jack" Wed Nov 6 13:47:00 2019 rev:65 rq:744376 version:1.9.13 Changes: -------- --- /work/SRC/openSUSE:Factory/jack/jack.changes 2019-07-28 10:20:24.288600503 +0200 +++ /work/SRC/openSUSE:Factory/.jack.new.2990/jack.changes 2019-11-06 13:47:02.471566817 +0100 @@ -1,0 +2,19 @@ +Tue Oct 29 19:09:10 UTC 2019 - Tom Mbrt <[email protected]> + +- Update to 1.9.13 + * Meta-data API implementation. (and a few tools updated with support for it) + * Correct GPL licence to LGPL for files needed to build libjack. + * Remove FreeBoB backend (superseded by FFADO). + * define JACK_LIB_EXPORT, useful for internal clients. + * Mark jack_midi_reset_buffer as deprecated. + * Add example systemd unit file + * Signal to systemd when jackd is ready. + * Set "seq" alsa midi driver to maximum resolution possible. + * Fix loading internal clients from another internal client. +- Delete the following patches, as they were fixed upstream: + * 0001-Make-jack_control-python2-3-compatible.patch + * fix-mmap-return-value-check.patch + * jack-waf2.patch +- Add 0001-fix-complation-on-arm.patch + +------------------------------------------------------------------- Old: ---- 0001-Make-jack_control-python2-3-compatible.patch fix-mmap-return-value-check.patch jack-1.9.12.tar.gz jack-waf2.patch New: ---- 0001-fix-complation-on-arm.patch jack-1.9.13.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ jack.spec ++++++ --- /var/tmp/diff_new_pack.dry9bB/_old 2019-11-06 13:47:03.579568018 +0100 +++ /var/tmp/diff_new_pack.dry9bB/_new 2019-11-06 13:47:03.583568023 +0100 @@ -23,7 +23,7 @@ %define sonum 0 BuildRequires: pkgconfig(libffado) >= 2.0.1.2040 Name: jack -Version: 1.9.12 +Version: 1.9.13 Release: 0 #to_be_filled_by_service Summary: Jack-Audio Connection Kit @@ -32,9 +32,7 @@ Url: http://jackaudio.org/ Source0: https://github.com/jackaudio/jack2/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz Source1: baselibs.conf -Patch0: jack-waf2.patch -Patch1: fix-mmap-return-value-check.patch -Patch2: 0001-Make-jack_control-python2-3-compatible.patch +Patch0: 0001-fix-complation-on-arm.patch BuildRequires: dos2unix BuildRequires: doxygen BuildRequires: fdupes @@ -172,15 +170,13 @@ mv %{buildroot}%{_datadir}/jack-audio-connection-kit %{buildroot}%{_docdir} %endif -dos2unix -k ChangeLog -dos2unix -k README -dos2unix -k TODO -cp ChangeLog README* TODO %{buildroot}%{_docdir}/%{name}/ +dos2unix -k ChangeLog.rst +dos2unix -k README.rst +cp ChangeLog.rst README* %{buildroot}%{_docdir}/%{name}/ # Fix wrong-file-end-of-line-encoding -dos2unix -k %{buildroot}%{_docdir}/%{name}/ChangeLog -dos2unix -k %{buildroot}%{_docdir}/%{name}/README -dos2unix -k %{buildroot}%{_docdir}/%{name}/TODO +dos2unix -k %{buildroot}%{_docdir}/%{name}/ChangeLog.rst +dos2unix -k %{buildroot}%{_docdir}/%{name}/README.rst %fdupes -s %{_docdir}/jack-audio-connection-kit/ %post -n libjack%{sonum} -p /sbin/ldconfig @@ -195,9 +191,8 @@ %files %defattr(-,root,root) %doc %dir %{_docdir}/%{name} -%doc %{_docdir}/%{name}/ChangeLog +%doc %{_docdir}/%{name}/ChangeLog.rst %doc %{_docdir}/%{name}/README* -%doc %{_docdir}/%{name}/TODO %license windows/Setup/src/COPYING %{_mandir}/man1/* %{_bindir}/* ++++++ 0001-fix-complation-on-arm.patch ++++++ >From 5286020560aeef2c7ef48972a42ed6ee0c111326 Mon Sep 17 00:00:00 2001 From: Guido Aulisi <[email protected]> Date: Thu, 10 Oct 2019 14:56:21 +0200 Subject: [PATCH] Fix compilation on ARM size_t i is needed if HAVE_EXECINFO_H is defined --- dbus/sigsegv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbus/sigsegv.c b/dbus/sigsegv.c index de316429..10ddd0ac 100644 --- a/dbus/sigsegv.c +++ b/dbus/sigsegv.c @@ -64,7 +64,7 @@ static void signal_segv(int signum, siginfo_t* info, void*ptr) { const char *si_code_str; ucontext_t *ucontext = (ucontext_t*)ptr; -#if defined(HAVE_UCONTEXT) && defined(HAVE_NGREG) +#if (defined(HAVE_UCONTEXT) && defined(HAVE_NGREG)) || defined(HAVE_EXECINFO_H) size_t i; #endif #if defined(SIGSEGV_STACK_X86) || defined(SIGSEGV_STACK_IA64) ++++++ jack-1.9.12.tar.gz -> jack-1.9.13.tar.gz ++++++ /work/SRC/openSUSE:Factory/jack/jack-1.9.12.tar.gz /work/SRC/openSUSE:Factory/.jack.new.2990/jack-1.9.13.tar.gz differ: char 15, line 1
