From owner-svn-ports-head@freebsd.org Fri Apr 8 03:33:37 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 CF31CB0853D; Fri, 8 Apr 2016 03:33:37 +0000 (UTC) (envelope-from shurd@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 A10161441; Fri, 8 Apr 2016 03:33:37 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u383XaxG045788; Fri, 8 Apr 2016 03:33:36 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u383Xavi045787; Fri, 8 Apr 2016 03:33:36 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201604080333.u383Xavi045787@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Fri, 8 Apr 2016 03:33:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412711 - 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.21 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: Fri, 08 Apr 2016 03:33:37 -0000 Author: shurd Date: Fri Apr 8 03:33:36 2016 New Revision: 412711 URL: https://svnweb.freebsd.org/changeset/ports/412711 Log: Add subdirectory for Hermes -- was already there, just not included in the setup.py file for some reason PR: 208595 Submitted by: Jeffery Baitis Modified: head/comms/quisk/files/patch-setup.py Modified: head/comms/quisk/files/patch-setup.py ============================================================================== --- head/comms/quisk/files/patch-setup.py Fri Apr 8 03:32:28 2016 (r412710) +++ head/comms/quisk/files/patch-setup.py Fri Apr 8 03:33:36 2016 (r412711) @@ -1,6 +1,6 @@ ---- setup.py.orig 2015-11-27 20:41:34 UTC +--- setup.py.orig 2016-02-16 20:10:44 UTC +++ setup.py -@@ -12,8 +12,8 @@ fp.write("#QUISK version %s\n" % Version +@@ -12,8 +12,8 @@ fp.write("#Quisk version %s\n" % Version fp.close() module1 = Extension ('quisk._quisk', @@ -11,3 +11,12 @@ 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', +@@ -116,7 +116,7 @@ control the N8LP LP-PAN panadapter and t + author_email = 'jahlstr@gmail.com', + url = 'http://james.ahlstrom.name/quisk/', + download_url = 'http://james.ahlstrom.name/quisk/', +- packages = ['quisk', 'quisk.sdriqpkg', 'quisk.n2adr', 'quisk.softrock', 'quisk.usb'], ++ packages = ['quisk', 'quisk.sdriqpkg', 'quisk.n2adr', 'quisk.softrock', 'quisk.usb', 'quisk.hermes'], + package_dir = {'quisk' : '.'}, + package_data = {'quisk' : ['*.txt', '*.html']}, + ext_modules = Modules,