[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#989569: debdiff audacity_2.4.2~dfsg0-4.dsc audacity_2.4.2~dfsg0-5.dsc



diff -Nru audacity-2.4.2~dfsg0/debian/audacity.lintian-overrides audacity-2.4.2~dfsg0/debian/audacity.lintian-overrides --- audacity-2.4.2~dfsg0/debian/audacity.lintian-overrides  1970-01-01 01:00:00.000000000 +0100 +++ audacity-2.4.2~dfsg0/debian/audacity.lintian-overrides  2021-04-18 16:32:02.000000000 +0200
@@ -0,0 +1,3 @@
+# false positive
+desktop-command-not-in-package usr/share/applications/audacity.desktop env
+spelling-error-in-binary usr/bin/audacity addd add
diff -Nru audacity-2.4.2~dfsg0/debian/changelog audacity-2.4.2~dfsg0/debian/changelog --- audacity-2.4.2~dfsg0/debian/changelog    2020-12-08 23:46:09.000000000 +0100 +++ audacity-2.4.2~dfsg0/debian/changelog    2021-05-26 22:26:01.000000000 +0200
@@ -1,3 +1,13 @@
+audacity (2.4.2~dfsg0-5) unstable; urgency=medium
+
+  * Workaround patch for playback cursor under wayland
+    Audacity has no full wayland support yet, so we use X11 to start
+    (Closes: #950150, #962389, #988632, LP: #1877833)
+    The patch can probably be removed when wxwidgets 3.1.3 is in debian archive
+  * Add lintian-overrides to override false positive lintian errors
+
+ -- Dennis Braun <d_braun@kabelmail.de>  Wed, 26 May 2021 22:26:01 +0200
+
 audacity (2.4.2~dfsg0-4) unstable; urgency=medium

   [ Sebastian Ramacher ]
diff -Nru audacity-2.4.2~dfsg0/debian/patches/0001-Add-keywords-to-desktop-file.patch audacity-2.4.2~dfsg0/debian/patches/0001-Add-keywords-to-desktop-file.patch --- audacity-2.4.2~dfsg0/debian/patches/0001-Add-keywords-to-desktop-file.patch  2020-12-08 23:46:09.000000000 +0100 +++ audacity-2.4.2~dfsg0/debian/patches/0001-Add-keywords-to-desktop-file.patch  2021-04-18 15:41:39.000000000 +0200
@@ -6,11 +6,11 @@
  src/audacity.desktop.in | 4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)

-diff --git a/src/audacity.desktop.in b/src/audacity.desktop.in
-index daa01c4..7bf86d3 100644
---- a/src/audacity.desktop.in
-+++ b/src/audacity.desktop.in
-@@ -41,12 +41,14 @@ Comment[uk]=Запис і редагування звукових файлів
+Index: audacity/src/audacity.desktop.in
+===================================================================
+--- audacity.orig/src/audacity.desktop.in
++++ audacity/src/audacity.desktop.in
+@@ -41,6 +41,8 @@ Comment[uk]=Запис і редагув
  Comment[zh_CN]=录音和编辑音频文件
  Comment[zh_TW]=錄音和編輯音訊檔案

@@ -19,10 +19,3 @@
  Icon=@AUDACITY_NAME@

  Type=Application
- Categories=AudioVideo;Audio;AudioVideoEditing;
-
--Exec=env UBUNTU_MENUPROXY=0 @AUDACITY_NAME@ %F
-+Exec=@AUDACITY_NAME@ %F
- StartupNotify=false
- Terminal=false
- MimeType=application/x-audacity-project;@MIMETYPES@
diff -Nru audacity-2.4.2~dfsg0/debian/patches/0006-Fix_CVE-2020-11867.patch audacity-2.4.2~dfsg0/debian/patches/0006-Fix_CVE-2020-11867.patch --- audacity-2.4.2~dfsg0/debian/patches/0006-Fix_CVE-2020-11867.patch  2020-12-08 23:46:09.000000000 +0100 +++ audacity-2.4.2~dfsg0/debian/patches/0006-Fix_CVE-2020-11867.patch  2021-04-18 15:44:55.000000000 +0200
@@ -7,7 +7,7 @@
 ===================================================================
 --- audacity.orig/src/AudacityApp.cpp
 +++ audacity/src/AudacityApp.cpp
-@@ -1689,7 +1689,7 @@ bool AudacityApp::InitTempDir()
+@@ -1695,7 +1695,7 @@ bool AudacityApp::InitTempDir()
     // The permissions don't always seem to be set on
     // some platforms.  Hopefully this fixes it...
     #ifdef __UNIX__
diff -Nru audacity-2.4.2~dfsg0/debian/patches/0007-Playback_cursor_workaround.patch audacity-2.4.2~dfsg0/debian/patches/0007-Playback_cursor_workaround.patch --- audacity-2.4.2~dfsg0/debian/patches/0007-Playback_cursor_workaround.patch  1970-01-01 01:00:00.000000000 +0100 +++ audacity-2.4.2~dfsg0/debian/patches/0007-Playback_cursor_workaround.patch  2021-04-18 15:45:46.000000000 +0200
@@ -0,0 +1,18 @@
+Description: The playback cursor doesn't move with wayland.
+ As a workaround we use X11 to start audacity.
+Author: Dennis Braun <d_braun@kabelmail.de>
+Forwarded: not-needed
+
+Index: audacity/src/audacity.desktop.in
+===================================================================
+--- audacity.orig/src/audacity.desktop.in
++++ audacity/src/audacity.desktop.in
+@@ -48,7 +48,7 @@ Icon=@AUDACITY_NAME@
+ Type=Application
+ Categories=AudioVideo;Audio;AudioVideoEditing;
+
+-Exec=env UBUNTU_MENUPROXY=0 @AUDACITY_NAME@ %F
++Exec=env UBUNTU_MENUPROXY=0 GDK_BACKEND=x11 @AUDACITY_NAME@ %F
+ StartupNotify=false
+ Terminal=false
+ MimeType=application/x-audacity-project;@MIMETYPES@
diff -Nru audacity-2.4.2~dfsg0/debian/patches/series audacity-2.4.2~dfsg0/debian/patches/series --- audacity-2.4.2~dfsg0/debian/patches/series    2020-12-08 23:46:09.000000000 +0100 +++ audacity-2.4.2~dfsg0/debian/patches/series    2021-04-18 15:47:22.000000000 +0200
@@ -4,3 +4,4 @@
 0004-cmake-use-system-portaudio.patch
 0005-Install-plugins-in-usr-lib.patch
 0006-Fix_CVE-2020-11867.patch
+0007-Playback_cursor_workaround.patch


Reply to: