svn commit: r550170 - in head/audio/praat: . files

Adriaan de Groot adridg at FreeBSD.org
Sat Sep 26 11:40:26 UTC 2020


Author: adridg
Date: Sat Sep 26 11:40:25 2020
New Revision: 550170
URL: https://svnweb.freebsd.org/changeset/ports/550170

Log:
  Update audio/praat to latest upstream release
  
  The release notes are, as always, at
  	https://www.fon.hum.uva.nl/praat/manual/What_s_new_.html
  with mostly the following:
   - macOS updates
   - extremum with cubic interpolation was incorrectly calculated
  
  I have added a patch from GH pull request #1376 that fixes the CLI mode.

Added:
  head/audio/praat/files/patch-git-dcaf03d1f0d6d12689f604347d169bfc732af69a.diff   (contents, props changed)
Modified:
  head/audio/praat/Makefile
  head/audio/praat/distinfo

Modified: head/audio/praat/Makefile
==============================================================================
--- head/audio/praat/Makefile	Sat Sep 26 11:38:14 2020	(r550169)
+++ head/audio/praat/Makefile	Sat Sep 26 11:40:25 2020	(r550170)
@@ -2,7 +2,7 @@
 
 PORTNAME=		praat
 DISTVERSIONPREFIX=	v
-DISTVERSION=		6.1.16
+DISTVERSION=		6.1.22
 CATEGORIES=		audio science
 
 MAINTAINER=	adridg at FreeBSD.org

Modified: head/audio/praat/distinfo
==============================================================================
--- head/audio/praat/distinfo	Sat Sep 26 11:38:14 2020	(r550169)
+++ head/audio/praat/distinfo	Sat Sep 26 11:40:25 2020	(r550170)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1591555611
-SHA256 (praat-praat-v6.1.16_GH0.tar.gz) = 84b4aa52ece20f7318aa9b5aa03718d074c492cf1998df65e7d128444a0d45d1
-SIZE (praat-praat-v6.1.16_GH0.tar.gz) = 31059591
+TIMESTAMP = 1601119435
+SHA256 (praat-praat-v6.1.22_GH0.tar.gz) = 046917fd84c8acb0c4d35cac4157d9a6d0b3fad112f1b08b14d57185cd0f88cd
+SIZE (praat-praat-v6.1.22_GH0.tar.gz) = 31411295

Added: head/audio/praat/files/patch-git-dcaf03d1f0d6d12689f604347d169bfc732af69a.diff
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/praat/files/patch-git-dcaf03d1f0d6d12689f604347d169bfc732af69a.diff	Sat Sep 26 11:40:25 2020	(r550170)
@@ -0,0 +1,21 @@
+From dcaf03d1f0d6d12689f604347d169bfc732af69a Mon Sep 17 00:00:00 2001
+From: David Lukes <dafydd.lukes at gmail.com>
+Date: Thu, 27 Aug 2020 12:57:27 +0200
+Subject: [PATCH] Fix #199
+
+---
+ sys/praat.cpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/sys/praat.cpp b/sys/praat.cpp
+index 4c359e012..4f57f16b4 100644
+--- sys/praat.cpp
++++ sys/praat.cpp
+@@ -1078,6 +1078,7 @@ void praat_init (conststring32 title, int argc, char **argv)
+ 	while (praatP.argumentNumber < argc && argv [praatP.argumentNumber] [0] == '-') {
+ 		if (strequ (argv [praatP.argumentNumber], "-")) {
+ 			praatP.hasCommandLineInput = true;
++			praatP.argumentNumber += 1;
+ 		} else if (strequ (argv [praatP.argumentNumber], "--open")) {
+ 			foundTheOpenOption = true;
+ 			praatP.argumentNumber += 1;


More information about the svn-ports-head mailing list