1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-01 10:59:55 +00:00

audio/audacity: delete unneeded patches, update distinfo

PR:		244253, 243578
Submitted by:	Jack <xxjack12xx@gmail.com> (maintainer)
This commit is contained in:
Kurt Jaeger 2020-02-25 06:37:48 +00:00
parent 262ced2034
commit 62c2185f06
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=527065
4 changed files with 4 additions and 25 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= audacity
PORTVERSION= 2.3.3
PORTREVISION= 1
PORTREVISION= 2
DISTVERSIONPREFIX= Audacity-
CATEGORIES= audio

View File

@ -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

View File

@ -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

View File

@ -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>