From owner-svn-ports-head@freebsd.org Thu Dec 22 22:57:09 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F615C8D7B7; Thu, 22 Dec 2016 22:57:09 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 097971D6C; Thu, 22 Dec 2016 22:57:08 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBMMv8Wx088019; Thu, 22 Dec 2016 22:57:08 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBMMv7V7088015; Thu, 22 Dec 2016 22:57:07 GMT (envelope-from db@FreeBSD.org) Message-Id: <201612222257.uBMMv7V7088015@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Thu, 22 Dec 2016 22:57:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429198 - in head/comms/quisk: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Dec 2016 22:57:09 -0000 Author: db Date: Thu Dec 22 22:57:07 2016 New Revision: 429198 URL: https://svnweb.freebsd.org/changeset/ports/429198 Log: Update to 4.1.3 Fix portaudio build link in setup.py there is no more portaudio2 Reported by: @portscout Modified: head/comms/quisk/Makefile head/comms/quisk/distinfo (contents, props changed) head/comms/quisk/files/patch-microphone.c (contents, props changed) head/comms/quisk/files/patch-setup.py (contents, props changed) Modified: head/comms/quisk/Makefile ============================================================================== --- head/comms/quisk/Makefile Thu Dec 22 22:56:27 2016 (r429197) +++ head/comms/quisk/Makefile Thu Dec 22 22:57:07 2016 (r429198) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= quisk -PORTVERSION= 4.0.5 +PORTVERSION= 4.1.3 CATEGORIES= comms hamradio MASTER_SITES= http://james.ahlstrom.name/quisk/ \ - LOCAL/shurd + LOCAL/db MAINTAINER= hamradio@FreeBSD.org COMMENT= Software Defined Radio (SDR) Modified: head/comms/quisk/distinfo ============================================================================== --- head/comms/quisk/distinfo Thu Dec 22 22:56:27 2016 (r429197) +++ head/comms/quisk/distinfo Thu Dec 22 22:57:07 2016 (r429198) @@ -1,2 +1,3 @@ -SHA256 (quisk-4.0.5.tar.gz) = fc0a45012f5e47fa86ce11e8a55acecc4d2534e829c965face12f68fd8fc9992 -SIZE (quisk-4.0.5.tar.gz) = 2072511 +TIMESTAMP = 1482446629 +SHA256 (quisk-4.1.3.tar.gz) = 3bb41e3d5dd7feb4c949a6086fe4d2adad12048d5eccb6499ced85b2b46f5999 +SIZE (quisk-4.1.3.tar.gz) = 2093660 Modified: head/comms/quisk/files/patch-microphone.c ============================================================================== --- head/comms/quisk/files/patch-microphone.c Thu Dec 22 22:56:27 2016 (r429197) +++ head/comms/quisk/files/patch-microphone.c Thu Dec 22 22:57:07 2016 (r429198) @@ -1,4 +1,4 @@ ---- microphone.c.orig 2015-11-27 20:43:24 UTC +--- microphone.c.orig 2016-10-25 20:57:54 UTC +++ microphone.c @@ -56,7 +56,7 @@ static int timeVOX = 2000; // VOX han @@ -8,4 +8,4 @@ +static complex double TxCorrectDc; // Used for the Hermes protocol - #define HERMES_TX_BUF_SAMPLES 4800 + #define HERMES_TX_BUF_SAMPLES 4800 // buffer size in I/Q samples (two shorts) Modified: head/comms/quisk/files/patch-setup.py ============================================================================== --- head/comms/quisk/files/patch-setup.py Thu Dec 22 22:56:27 2016 (r429197) +++ head/comms/quisk/files/patch-setup.py Thu Dec 22 22:57:07 2016 (r429198) @@ -1,4 +1,4 @@ ---- setup.py.orig 2016-02-16 20:10:44 UTC +--- setup.py.orig 2016-12-08 22:14:02 UTC +++ setup.py @@ -12,8 +12,8 @@ fp.write("#Quisk version %s\n" % Version fp.close() @@ -6,8 +6,8 @@ module1 = Extension ('quisk._quisk', - #include_dirs = ['.'], - #library_dirs = ['.'], -+ include_dirs = ['%%LOCALBASE%%/include/portaudio2', '%%LOCALBASE%%/include'], -+ library_dirs = ['%%LOCALBASE%%/lib/portaudio2', '%%LOCALBASE%%/lib'], ++ include_dirs = ['%%LOCALBASE%%/include'], ++ library_dirs = ['%%LOCALBASE%%/lib'], libraries = ['asound', 'portaudio', 'pulse', 'fftw3', 'm'], sources = ['quisk.c', 'sound.c', 'sound_alsa.c', 'sound_portaudio.c', 'sound_pulseaudio.c', 'is_key_down.c', 'microphone.c', 'utility.c',