forked from pool/audacity
Accepting request 970098 from home:plater
Added libopus build dependency and "-DCMAKE_SKIP_RPATH:BOOL=on" to fix Leap builds. Update to 3.1.3 * remove patches, now upstream: 0001-Adds-an-option-to-disable-Conan.patch 0001-Fixes-wxwidgets-fixup-script.patch 0001-Scope-libraries-required-by-the-optional-features.patch Refresh missing-include.patch OBS-URL: https://build.opensuse.org/request/show/970098 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=174
This commit is contained in:
parent
c51800a46b
commit
58e86b3ff6
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 14 07:44:51 UTC 2022 - Dave Plater <davejplater@gmail.com>
|
||||||
|
|
||||||
|
- Added libopus build dependency and "-DCMAKE_SKIP_RPATH:BOOL=on"
|
||||||
|
to fix Leap builds.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Apr 13 23:35:32 UTC 2022 - Konstantin Voinov <kv@kott.no-ip.biz>
|
Wed Apr 13 23:35:32 UTC 2022 - Konstantin Voinov <kv@kott.no-ip.biz>
|
||||||
|
|
||||||
@ -6,6 +12,15 @@ Wed Apr 13 23:35:32 UTC 2022 - Konstantin Voinov <kv@kott.no-ip.biz>
|
|||||||
0001-Adds-an-option-to-disable-Conan.patch
|
0001-Adds-an-option-to-disable-Conan.patch
|
||||||
0001-Fixes-wxwidgets-fixup-script.patch
|
0001-Fixes-wxwidgets-fixup-script.patch
|
||||||
0001-Scope-libraries-required-by-the-optional-features.patch
|
0001-Scope-libraries-required-by-the-optional-features.patch
|
||||||
|
Refresh missing-include.patch
|
||||||
|
* Improved performance of loading in projects
|
||||||
|
* Added snap guides when resizing clips
|
||||||
|
* Added new shortcuts for looping:
|
||||||
|
Shift+L for "Set Loop to Selection",
|
||||||
|
Shift+Alt+L for "Clear Looping Region"
|
||||||
|
* Added a new selection region indicator in the timeline
|
||||||
|
* Re-added the Quick Play indicator
|
||||||
|
* Lot of bug fixes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 31 08:17:38 UTC 2022 - Dave Plater <davejplater@gmail.com>
|
Mon Jan 31 08:17:38 UTC 2022 - Dave Plater <davejplater@gmail.com>
|
||||||
|
@ -33,7 +33,7 @@ Source2: audacity-rpmlintrc
|
|||||||
Patch0: audacity-no_buildstamp.patch
|
Patch0: audacity-no_buildstamp.patch
|
||||||
# PATCH-FIX-UPSTREAM audacity-no_return_in_nonvoid.patch - Fix false positive errors Two new gcc10 ones ignoring assert
|
# PATCH-FIX-UPSTREAM audacity-no_return_in_nonvoid.patch - Fix false positive errors Two new gcc10 ones ignoring assert
|
||||||
Patch1: audacity-no_return_in_nonvoid.patch
|
Patch1: audacity-no_return_in_nonvoid.patch
|
||||||
#Patch2: missing-include.patch
|
Patch2: missing-include.patch
|
||||||
Patch3: no-more-strip.patch
|
Patch3: no-more-strip.patch
|
||||||
BuildRequires: cmake >= 3.16
|
BuildRequires: cmake >= 3.16
|
||||||
BuildRequires: desktop-file-utils
|
BuildRequires: desktop-file-utils
|
||||||
@ -58,6 +58,7 @@ BuildRequires: pkgconfig(lilv-0) >= 0.24.6
|
|||||||
BuildRequires: pkgconfig(lv2) >= 1.16.0
|
BuildRequires: pkgconfig(lv2) >= 1.16.0
|
||||||
BuildRequires: pkgconfig(mad)
|
BuildRequires: pkgconfig(mad)
|
||||||
BuildRequires: pkgconfig(ogg)
|
BuildRequires: pkgconfig(ogg)
|
||||||
|
BuildRequires: pkgconfig(opus)
|
||||||
BuildRequires: pkgconfig(portaudio-2.0)
|
BuildRequires: pkgconfig(portaudio-2.0)
|
||||||
BuildRequires: pkgconfig(serd-0) >= 0.30.2
|
BuildRequires: pkgconfig(serd-0) >= 0.30.2
|
||||||
BuildRequires: pkgconfig(shared-mime-info)
|
BuildRequires: pkgconfig(shared-mime-info)
|
||||||
@ -136,6 +137,7 @@ fi
|
|||||||
export CFLAGS="%{optflags} -fno-strict-aliasing -ggdb $(wx-config --cflags)"
|
export CFLAGS="%{optflags} -fno-strict-aliasing -ggdb $(wx-config --cflags)"
|
||||||
export CXXFLAGS="$CFLAGS -std=gnu++17"
|
export CXXFLAGS="$CFLAGS -std=gnu++17"
|
||||||
%cmake \
|
%cmake \
|
||||||
|
-DCMAKE_SKIP_RPATH:BOOL=on \
|
||||||
-DAUDACITY_REV_TIME=$(date -u -d "@${SOURCE_DATE_EPOCH}" "+%Y-%m-%dT%H:%M:%SZ") \
|
-DAUDACITY_REV_TIME=$(date -u -d "@${SOURCE_DATE_EPOCH}" "+%Y-%m-%dT%H:%M:%SZ") \
|
||||||
-DAUDACITY_REV_LONG=STRING:%{version} \
|
-DAUDACITY_REV_LONG=STRING:%{version} \
|
||||||
-DAUDACITY_BUILD_LEVEL=1 \
|
-DAUDACITY_BUILD_LEVEL=1 \
|
||||||
|
@ -1,19 +1,19 @@
|
|||||||
Index: audacity-Audacity-3.1.3-beta-1/libraries/lib-utility/BufferedStreamReader.h
|
Index: b/libraries/lib-utility/BufferedStreamReader.h
|
||||||
===================================================================
|
===================================================================
|
||||||
--- audacity-Audacity-3.1.3-beta-1.orig/libraries/lib-utility/BufferedStreamReader.h
|
--- a/libraries/lib-utility/BufferedStreamReader.h 2021-12-22 17:35:36.000000000 +0200
|
||||||
+++ audacity-Audacity-3.1.3-beta-1/libraries/lib-utility/BufferedStreamReader.h
|
+++ b/libraries/lib-utility/BufferedStreamReader.h 2022-04-14 09:56:19.275619728 +0200
|
||||||
@@ -12,6 +12,7 @@
|
@@ -13,6 +13,7 @@
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <cstddef>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
+#include <cstddef>
|
+#include <cstddef>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
Index: audacity-Audacity-3.1.3-beta-1/libraries/lib-xml/XMLAttributeValueView.cpp
|
Index: b/libraries/lib-xml/XMLAttributeValueView.cpp
|
||||||
===================================================================
|
===================================================================
|
||||||
--- audacity-Audacity-3.1.3-beta-1.orig/libraries/lib-xml/XMLAttributeValueView.cpp
|
--- a/libraries/lib-xml/XMLAttributeValueView.cpp 2021-12-22 17:35:36.000000000 +0200
|
||||||
+++ audacity-Audacity-3.1.3-beta-1/libraries/lib-xml/XMLAttributeValueView.cpp
|
+++ b/libraries/lib-xml/XMLAttributeValueView.cpp 2022-04-14 09:56:19.275619728 +0200
|
||||||
@@ -12,6 +12,7 @@
|
@@ -12,6 +12,7 @@
|
||||||
#include "FromChars.h"
|
#include "FromChars.h"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user