diff options
author | pi <pi@FreeBSD.org> | 2020-02-25 14:37:48 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2020-02-25 14:37:48 +0800 |
commit | 7f0e4973e717093a16fe9e1287a4094e87645df3 (patch) | |
tree | a64482dfc90e19518cdad05aba3f0ea6166f0512 | |
parent | f8355a47a11dde4503c6278be4530a1f53568779 (diff) | |
download | freebsd-ports-gnome-7f0e4973e717093a16fe9e1287a4094e87645df3.tar.gz freebsd-ports-gnome-7f0e4973e717093a16fe9e1287a4094e87645df3.tar.zst freebsd-ports-gnome-7f0e4973e717093a16fe9e1287a4094e87645df3.zip |
audio/audacity: delete unneeded patches, update distinfo
PR: 244253, 243578
Submitted by: Jack <xxjack12xx@gmail.com> (maintainer)
-rw-r--r-- | audio/audacity/Makefile | 2 | ||||
-rw-r--r-- | audio/audacity/distinfo | 6 | ||||
-rw-r--r-- | audio/audacity/files/patch-include_audacity_Types.h | 11 | ||||
-rw-r--r-- | audio/audacity/files/patch-src_prefs_PrefsDialog.cpp | 10 |
4 files changed, 4 insertions, 25 deletions
diff --git a/audio/audacity/Makefile b/audio/audacity/Makefile index 7fa9e8d94d72..30c493d0cc2e 100644 --- a/audio/audacity/Makefile +++ b/audio/audacity/Makefile @@ -3,7 +3,7 @@ PORTNAME= audacity PORTVERSION= 2.3.3 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= Audacity- CATEGORIES= audio diff --git a/audio/audacity/distinfo b/audio/audacity/distinfo index fbf69438c5bc..b8aa8f0f92b0 100644 --- a/audio/audacity/distinfo +++ b/audio/audacity/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1574484432 -SHA256 (audacity-audacity-Audacity-2.3.3_GH0.tar.gz) = 9ab6c8989e21165b86aad80b7e6691015cb5b0c91ab77e6170d7192f840313a8 -SIZE (audacity-audacity-Audacity-2.3.3_GH0.tar.gz) = 62099027 +TIMESTAMP = 1579914119 +SHA256 (audacity-audacity-Audacity-2.3.3_GH0.tar.gz) = 404e6c49693dedc94212fc5525974058d848536025e19da31359ae02babe8bd7 +SIZE (audacity-audacity-Audacity-2.3.3_GH0.tar.gz) = 62073352 diff --git a/audio/audacity/files/patch-include_audacity_Types.h b/audio/audacity/files/patch-include_audacity_Types.h deleted file mode 100644 index 20d5f4a9817b..000000000000 --- a/audio/audacity/files/patch-include_audacity_Types.h +++ /dev/null @@ -1,11 +0,0 @@ ---- include/audacity/Types.h.orig 2018-10-01 14:07:33 UTC -+++ include/audacity/Types.h -@@ -311,7 +311,7 @@ class sampleCount (public) - sampleCount ( long v ) : value { v } {} - - // unsigned long is 64 bit on some platforms. Let it narrow. -- sampleCount ( unsigned long v ) : value ( v ) {} -+ sampleCount ( unsigned long v ) : value { static_cast<type>(v) } {} - - // Beware implicit conversions from floating point values! - // Otherwise the meaning of binary operators with sampleCount change diff --git a/audio/audacity/files/patch-src_prefs_PrefsDialog.cpp b/audio/audacity/files/patch-src_prefs_PrefsDialog.cpp deleted file mode 100644 index 8e2ac16493f3..000000000000 --- a/audio/audacity/files/patch-src_prefs_PrefsDialog.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- src/prefs/PrefsDialog.cpp.orig 2019-05-13 18:00:33.704997000 -0700 -+++ src/prefs/PrefsDialog.cpp 2019-05-13 17:52:51.702814000 -0700 -@@ -30,6 +30,7 @@ - #include <wx/intl.h> - #include <wx/listbox.h> - #include <wx/sizer.h> -+#include <wx/treectrl.h> - - #include <wx/listbook.h> - |