From 13302b110fb8018cb118d95ac5911102133c72ecebb1805fb5635b67eb321f87 Mon Sep 17 00:00:00 2001 From: Dave Plater Date: Wed, 7 Jul 2021 06:35:43 +0000 Subject: [PATCH] Accepting request 904455 from home:darix:branches:multimedia:apps - added https://github.com/audacity/audacity/commit/b4b5cc8.patch Fix jack detection which got broken in 3.0.2 (boo#1187788) OBS-URL: https://build.opensuse.org/request/show/904455 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=166 --- audacity.changes | 6 ++++++ audacity.spec | 1 + b4b5cc8.patch | 22 ++++++++++++++++++++++ 3 files changed, 29 insertions(+) create mode 100644 b4b5cc8.patch diff --git a/audacity.changes b/audacity.changes index 0798bec..5d84ec6 100644 --- a/audacity.changes +++ b/audacity.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Wed Jul 7 00:22:58 UTC 2021 - Marcus Rueckert + +- added https://github.com/audacity/audacity/commit/b4b5cc8.patch + Fix jack detection which got broken in 3.0.2 (boo#1187788) + ------------------------------------------------------------------- Mon Jun 7 18:24:17 UTC 2021 - ecsos diff --git a/audacity.spec b/audacity.spec index dda7618..d46fb5c 100644 --- a/audacity.spec +++ b/audacity.spec @@ -33,6 +33,7 @@ Patch2: audacity-misc-errors.patch # PATCH-FIX-UPSTREAM audacity-no_return_in_nonvoid.patch - Fix false positive errors Two new gcc10 ones ignoring assert Patch3: audacity-no_return_in_nonvoid.patch Patch4: audacity-remove-wx-test.patch +Patch5: https://github.com/audacity/audacity/commit/b4b5cc8.patch BuildRequires: cmake >= 3.15 BuildRequires: desktop-file-utils BuildRequires: gcc-c++ diff --git a/b4b5cc8.patch b/b4b5cc8.patch new file mode 100644 index 0000000..c693c35 --- /dev/null +++ b/b4b5cc8.patch @@ -0,0 +1,22 @@ +From b4b5cc812483b311627bba48e26b91ae389ce713 Mon Sep 17 00:00:00 2001 +From: SteveDaulton +Date: Mon, 26 Apr 2021 15:45:40 +0100 +Subject: [PATCH] Bug 2757 - No support for Jack Audio System + +--- + cmake-proxies/portaudio-v19/CMakeLists.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/cmake-proxies/portaudio-v19/CMakeLists.txt b/cmake-proxies/portaudio-v19/CMakeLists.txt +index d8930ff8ce5..9baf5f6a8eb 100644 +--- a/cmake-proxies/portaudio-v19/CMakeLists.txt ++++ b/cmake-proxies/portaudio-v19/CMakeLists.txt +@@ -88,7 +88,7 @@ cmd_option( ${_OPT}use_pa_jack + + if( NOT ${_OPT}use_pa_jack STREQUAL "off" ) + # Find it +- find_package( jack ) ++ find_package( Jack ) + if( NOT JACK_FOUND) + set_cache_value( ${_OPT}use_pa_jack "off" ) + endif()