Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Jun 2019 00:27:37 +0000 (UTC)
From:      Diane Bruce <db@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r504607 - in head/comms/fldigi: . files
Message-ID:  <201906200027.x5K0RbWK076047@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: db
Date: Thu Jun 20 00:27:36 2019
New Revision: 504607
URL: https://svnweb.freebsd.org/changeset/ports/504607

Log:
  Update to 4.1.04
  Simplify local patch
  
  2019-06-07  Davide Gerhard IV3CVE  <w1hkj@bellsouth.net>
  
  	51590b10b: MacOS high-DPI
  	33505fec3: timeops
  
  2019-06-07  David Freese  <w1hkj@bellsouth.net>
  
  	c2dbea65b: log server
  	337aa4d2a: xmlrpc <vector>
  	2086bd1fe: LoTW delivery
  	2e0ba6d11: Apple kill button
  	6d9c80e3a: main dialog title
  	2ec197373: Warnings
  	f63f8bc36: Contestia/Olivia
  	ea39851b6: Log reports
  	f7c376723: Documentation update
  	8d25f53d9: 7qp multi
  	867ded47b: n3fjp
  	ebab17a2b: wfonly controls
  	ef2d55e22: Read log debugging
  	2928a9b97: New Modem Macro
  	90b021222: DE QSO Party

Modified:
  head/comms/fldigi/Makefile
  head/comms/fldigi/distinfo
  head/comms/fldigi/files/patch-src_soundcard_sound.cxx

Modified: head/comms/fldigi/Makefile
==============================================================================
--- head/comms/fldigi/Makefile	Wed Jun 19 23:54:44 2019	(r504606)
+++ head/comms/fldigi/Makefile	Thu Jun 20 00:27:36 2019	(r504607)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	fldigi
-PORTVERSION=	4.1.03
+PORTVERSION=	4.1.04
 CATEGORIES=	comms hamradio
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}
 

Modified: head/comms/fldigi/distinfo
==============================================================================
--- head/comms/fldigi/distinfo	Wed Jun 19 23:54:44 2019	(r504606)
+++ head/comms/fldigi/distinfo	Thu Jun 20 00:27:36 2019	(r504607)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1555867447
-SHA256 (fldigi-4.1.03.tar.gz) = 37d9404cd02ad0497fb369ab73ade4f6330e1f82bfce908c4fe89f21642775b4
-SIZE (fldigi-4.1.03.tar.gz) = 4682813
+TIMESTAMP = 1560983163
+SHA256 (fldigi-4.1.04.tar.gz) = 89c19c349eaf04cd3bab94df89cdaa9d4ad8b1bc50871d3f8be1175ab237bb45
+SIZE (fldigi-4.1.04.tar.gz) = 4689833

Modified: head/comms/fldigi/files/patch-src_soundcard_sound.cxx
==============================================================================
--- head/comms/fldigi/files/patch-src_soundcard_sound.cxx	Wed Jun 19 23:54:44 2019	(r504606)
+++ head/comms/fldigi/files/patch-src_soundcard_sound.cxx	Thu Jun 20 00:27:36 2019	(r504607)
@@ -1,6 +1,6 @@
---- src/soundcard/sound.cxx.orig	2018-12-06 14:41:46 UTC
+--- src/soundcard/sound.cxx.orig	2019-05-25 01:35:59 UTC
 +++ src/soundcard/sound.cxx
-@@ -651,7 +651,27 @@ int SoundOSS::Open(int md, int freq)
+@@ -651,7 +651,26 @@ int SoundOSS::Open(int md, int freq)
  			oflags = oflags | O_CLOEXEC;
  #	   endif
  
@@ -16,10 +16,9 @@
 +		char *p;
 +		/* Look for a '.' if found, blow it away */
 +		fixed_name = strdup(device.c_str());
-+		p = fixed_name;
-+		while (*p++)
-+			if(*p == '.')
-+				*p = '\0';
++		p = strchr(fixed_name, '.');
++		if(p != NULL)
++			*p = '\0';
 +		device_fd = fl_open(fixed_name, oflags, 0);
 +		free(fixed_name);
 +#else
@@ -28,7 +27,7 @@
  		if (device_fd == -1)
  			throw SndException(errno);
  
-@@ -677,12 +697,11 @@ void SoundOSS::Close(unsigned dir)
+@@ -677,12 +696,11 @@ void SoundOSS::Close(unsigned dir)
  void SoundOSS::getVersion()
  {
  	version = 0;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906200027.x5K0RbWK076047>