From 76f534b95824d84e273a69982d0a8156ac325b70c88220c356fedfb380d9ef41 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Fri, 1 Nov 2024 13:02:17 +0000 Subject: [PATCH 1/6] - Disable VST3 support due CVE-2024-50602 and misssing VST3 plugins UI - Update to 3.7.0 * #6233, #7397, #6900 Improved Linux compatibility. * #6702 Improved contrast in the light theme. * #7008 MP3 exports: Renamed "Insane" to "Excessive". * #7570, #7452 Improved non-standard character handling for cloud saving. * #7486 Renamed "Split cut/delete" to "Cut/delete and leave gap". * #7293 Pasting clips no longer moves clips on other tracks if "editing clips can move other clips" is enabled. * #7312, #7382 Fixed database compacting not working properly sometimes. * #6851 Improved startup speed on systems with many audio devices. * #7186 Multi view: Fixed the hitbox of the x being misaligned with the visuals. (Thanks, Kurtsley) * #7468 macOS: Fixed VST presets path. * #7571 Adding, removing, replacing and reordering of effects now is undoable. * #7573 Closing a project upon turning a realtime effect stack on and off doesn't crash Audacity anymore. * #7610 Canceling a stereo track mid-operation no longer crashes Audacity. * #7385 Importing Opus files using libopus no longer shifts the audio data. OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=232 --- Audacity-3.6.4.tar.gz | 3 --- Audacity-3.7.0.tar.gz | 3 +++ audacity.changes | 26 ++++++++++++++++++++++++++ audacity.spec | 11 ++++++++++- vst3sdk-3.7.12_build_20.tar.xz | 3 --- 5 files changed, 39 insertions(+), 7 deletions(-) delete mode 100644 Audacity-3.6.4.tar.gz create mode 100644 Audacity-3.7.0.tar.gz delete mode 100644 vst3sdk-3.7.12_build_20.tar.xz diff --git a/Audacity-3.6.4.tar.gz b/Audacity-3.6.4.tar.gz deleted file mode 100644 index 26a5f49..0000000 --- a/Audacity-3.6.4.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e7d82eaae65081a1118a899751ff50ddf76a1cc0f056882eeaffcedb86c12aec -size 61319349 diff --git a/Audacity-3.7.0.tar.gz b/Audacity-3.7.0.tar.gz new file mode 100644 index 0000000..6a21b96 --- /dev/null +++ b/Audacity-3.7.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c872dd5d3d59d3985a52d2aac9d430c3c736eed1b43f94ecee1f0868788eb769 +size 61647412 diff --git a/audacity.changes b/audacity.changes index f0fcbf8..dd4137f 100644 --- a/audacity.changes +++ b/audacity.changes @@ -1,3 +1,29 @@ +------------------------------------------------------------------- +Fri Nov 1 01:05:31 UTC 2024 - Konstantin Voinov + +- Disable VST3 support due CVE-2024-50602 and misssing VST3 plugins UI +- Update to 3.7.0 + + * #6233, #7397, #6900 Improved Linux compatibility. + * #6702 Improved contrast in the light theme. + * #7008 MP3 exports: Renamed "Insane" to "Excessive". + * #7570, #7452 Improved non-standard character handling for cloud + saving. + * #7486 Renamed "Split cut/delete" to "Cut/delete and leave gap". + * #7293 Pasting clips no longer moves clips on other tracks if + "editing clips can move other clips" is enabled. + * #7312, #7382 Fixed database compacting not working properly sometimes. + * #6851 Improved startup speed on systems with many audio devices. + * #7186 Multi view: Fixed the hitbox of the x being misaligned with + the visuals. (Thanks, Kurtsley) + * #7468 macOS: Fixed VST presets path. + * #7571 Adding, removing, replacing and reordering of effects now + is undoable. + * #7573 Closing a project upon turning a realtime effect stack on + and off doesn't crash Audacity anymore. + * #7610 Canceling a stereo track mid-operation no longer crashes Audacity. + * #7385 Importing Opus files using libopus no longer shifts the audio data. + ------------------------------------------------------------------- Sat Sep 21 08:45:19 UTC 2024 - Konstantin Voinov diff --git a/audacity.spec b/audacity.spec index 244cb85..ce67b2a 100644 --- a/audacity.spec +++ b/audacity.spec @@ -16,8 +16,10 @@ # +%define without_vst3 1 + Name: audacity -Version: 3.6.4 +Version: 3.7.0 Release: 0 Summary: A Multi Track Digital Audio Editor License: CC-BY-3.0 AND GPL-2.0-or-later AND GPL-3.0-only @@ -26,7 +28,9 @@ URL: http://audacityteam.org/ Source: https://github.com/audacity/audacity/archive/Audacity-%{version}.tar.gz Source1: audacity-license-nyquist Source2: audacity-rpmlintrc +%if %{with vst3} Source3: vst3sdk-3.7.12_build_20.tar.xz +%endif # PATCH-FIX-OPENSUSE audacity-no_buildstamp.patch davejplater@gmail.com -- Remove the buildstamp. Patch0: audacity-no_buildstamp.patch # PATCH-FIX-UPSTREAM audacity-no_return_in_nonvoid.patch - Fix false positive errors Two new gcc10 ones ignoring assert @@ -133,7 +137,9 @@ rm -rf lib-src/{expat,libvamp,libsoxr,ffmpeg,lame}/ #Included in src/AboutDialog.cpp but not supplied touch include/RevisionIdent.h +%if %{with vst3} tar xf %{SOURCE3} --strip-components=1 --one-top-level=vst3sdk +%endif %build %if 0%{?suse_version} <= 1600 @@ -157,6 +163,9 @@ export CFLAGS="%{optflags} -fno-strict-aliasing -ggdb $(wx-config --cflags)" -Daudacity_lib_preference:STRING=system \ -Duse_lame:STRING=system \ -Daudacity_use_ffmpeg:STRING=loaded \ +%if %{without vst3} + -Daudacity_has_vst3=off \ +%endif -DVST3_DEFAULT_INSTALL_PATH=%{_libdir}/vst3/ %cmake_build diff --git a/vst3sdk-3.7.12_build_20.tar.xz b/vst3sdk-3.7.12_build_20.tar.xz deleted file mode 100644 index 03cd6b3..0000000 --- a/vst3sdk-3.7.12_build_20.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ea60dcf1a2d0f3b92dee0daa536e811530a14b9c0fe6a61636ff7fb3efb66b20 -size 14839324 From 3ee616a63478f279b01c0ecba14a38bede34f09b93d04880aa7c5a0ea9725c2f Mon Sep 17 00:00:00 2001 From: Dave Plater Date: Sat, 2 Nov 2024 18:48:51 +0000 Subject: [PATCH 2/6] add bug reference OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=233 --- audacity.changes | 1 + 1 file changed, 1 insertion(+) diff --git a/audacity.changes b/audacity.changes index dd4137f..0d1a2b5 100644 --- a/audacity.changes +++ b/audacity.changes @@ -2,6 +2,7 @@ Fri Nov 1 01:05:31 UTC 2024 - Konstantin Voinov - Disable VST3 support due CVE-2024-50602 and misssing VST3 plugins UI +- Fixes boo#1232608 - Update to 3.7.0 * #6233, #7397, #6900 Improved Linux compatibility. From c34953ce37144daa652d009130abc99199a71fd618f6b426ce67b5cc2619a481 Mon Sep 17 00:00:00 2001 From: Dave Plater Date: Sat, 2 Nov 2024 18:54:55 +0000 Subject: [PATCH 3/6] fix conditional OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=234 --- audacity.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audacity.spec b/audacity.spec index ce67b2a..3e475c1 100644 --- a/audacity.spec +++ b/audacity.spec @@ -16,7 +16,7 @@ # -%define without_vst3 1 +%bcond with vst3 1 Name: audacity Version: 3.7.0 From b4d15d77df0a69a8b699400717116a72b06b3c9dda9f199e28c12a4fe7179211 Mon Sep 17 00:00:00 2001 From: Dave Plater Date: Sat, 2 Nov 2024 18:59:22 +0000 Subject: [PATCH 4/6] fix conditional OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=235 --- audacity.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audacity.spec b/audacity.spec index 3e475c1..e53a21c 100644 --- a/audacity.spec +++ b/audacity.spec @@ -16,7 +16,7 @@ # -%bcond with vst3 1 +%bcond_with vst3 Name: audacity Version: 3.7.0 From b7261a4bb4d8e029c43397e928bf3e5622d7f0caad7e8d4700a06ea7ae97b692 Mon Sep 17 00:00:00 2001 From: Dave Plater Date: Sun, 3 Nov 2024 06:49:37 +0000 Subject: [PATCH 5/6] remove service OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=236 --- _service | 14 -------------- _servicedata | 4 ---- 2 files changed, 18 deletions(-) delete mode 100644 _service delete mode 100644 _servicedata diff --git a/_service b/_service deleted file mode 100644 index e175f34..0000000 --- a/_service +++ /dev/null @@ -1,14 +0,0 @@ - - - git - https://github.com/steinbergmedia/vst3sdk/ - v3.7.12_build_20 - 3.7.12_build_20 - doc - vst3sdk - - - *.tar - xz - - diff --git a/_servicedata b/_servicedata deleted file mode 100644 index e76f8c2..0000000 --- a/_servicedata +++ /dev/null @@ -1,4 +0,0 @@ - - - https://github.com/steinbergmedia/vst3sdk/ - 358b72ee61bc67fb4592b0d492e0c6a1211ebf11 \ No newline at end of file From 9d289397c393edd195ff5df8462f56695bbe6f80952a950a4d6618cf1edd4e57 Mon Sep 17 00:00:00 2001 From: Dave Plater Date: Sun, 3 Nov 2024 09:26:41 +0000 Subject: [PATCH 6/6] fix unknown corruption OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=237 --- audacity.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/audacity.spec b/audacity.spec index e53a21c..a402295 100644 --- a/audacity.spec +++ b/audacity.spec @@ -29,7 +29,7 @@ Source: https://github.com/audacity/audacity/archive/Audacity-%{version} Source1: audacity-license-nyquist Source2: audacity-rpmlintrc %if %{with vst3} -Source3: vst3sdk-3.7.12_build_20.tar.xz +#Source3: vst3sdk-3.7.12_build_20.tar.xz %endif # PATCH-FIX-OPENSUSE audacity-no_buildstamp.patch davejplater@gmail.com -- Remove the buildstamp. Patch0: audacity-no_buildstamp.patch @@ -39,7 +39,7 @@ Patch1: audacity-no_return_in_nonvoid.patch Patch3: lib64-plugins-default-path.patch BuildRequires: cmake >= 3.16 BuildRequires: desktop-file-utils -%if 0%{?suse_version} <= 1600 +%if 0%{?suse_version} < 1600 BuildRequires: gcc12 BuildRequires: gcc12-c++ %else @@ -142,7 +142,7 @@ tar xf %{SOURCE3} --strip-components=1 --one-top-level=vst3sdk %endif %build -%if 0%{?suse_version} <= 1600 +%if 0%{?suse_version} < 1600 export CC=gcc-12 export CXX=g++-12 %endif