1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-07 06:40:06 +00:00

audio/praat: update to 6.2.09, latest upstream

These are just regular small-bugfix eleases, release notes at
	https://www.fon.hum.uva.nl/praat/manual/What_s_new_.html
This commit is contained in:
Adriaan de Groot 2022-02-18 15:57:39 +01:00
parent 5b0382bf56
commit 8c1867cea4
3 changed files with 4 additions and 26 deletions

View File

@ -1,6 +1,6 @@
PORTNAME= praat
DISTVERSIONPREFIX= v
DISTVERSION= 6.2.03
DISTVERSION= 6.2.09
CATEGORIES= audio science
MAINTAINER= adridg@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1638794899
SHA256 (praat-praat-v6.2.03_GH0.tar.gz) = c15c1d1500e13cc98f757bf2de04901d41d7310e774df435d3a0c8b8b0f471c6
SIZE (praat-praat-v6.2.03_GH0.tar.gz) = 33697983
TIMESTAMP = 1645195780
SHA256 (praat-praat-v6.2.09_GH0.tar.gz) = 3c38b8af267b152a3fda1af78fe8cc26a1717f70a886387e657c55746f666af1
SIZE (praat-praat-v6.2.09_GH0.tar.gz) = 35248830

View File

@ -1,22 +0,0 @@
commit aee0e0cedad91278299550de0de109ec15a789f7
Author: Adriaan de Groot <groot@kde.org>
Date: Mon Dec 6 16:08:34 2021 +0100
Fix build with -Werror
- Although this function isn't called, building praat with
picky flags -- such as -Werror -- fails because the function
doesn't return anything.
diff --git LPC/PowerCepstrum.cpp LPC/PowerCepstrum.cpp
index a00890c28..6358ecca3 100644
--- LPC/PowerCepstrum.cpp
+++ LPC/PowerCepstrum.cpp
@@ -397,7 +397,7 @@ static autoMAT PowerCepstrum_getRhamonicsPower (PowerCepstrum me, double pitchFl
}
double PowerCepstrum_nearestPeak (PowerCepstrum me, double quefrency) {
-
+ return 0.0;
}
autoTable PowerCepstrum_to_Table_rhamonics (PowerCepstrum me, double pitchFloor, double pitchCeiling, double f0fractionalWidth) {