From owner-svn-ports-head@freebsd.org Sat Aug 19 17:51:21 2017 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 AA76EDD87AA; Sat, 19 Aug 2017 17:51:21 +0000 (UTC) (envelope-from ultima@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 85A6283A48; Sat, 19 Aug 2017 17:51:21 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7JHpKFT046002; Sat, 19 Aug 2017 17:51:20 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7JHpKbC045997; Sat, 19 Aug 2017 17:51:20 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201708191751.v7JHpKbC045997@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Sat, 19 Aug 2017 17:51:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448347 - in head/audio: . py-jack py-jack/files X-SVN-Group: ports-head X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in head/audio: . py-jack py-jack/files X-SVN-Commit-Revision: 448347 X-SVN-Commit-Repository: ports 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: Sat, 19 Aug 2017 17:51:21 -0000 Author: ultima Date: Sat Aug 19 17:51:20 2017 New Revision: 448347 URL: https://svnweb.freebsd.org/changeset/ports/448347 Log: PyJack is a module written in C which exposes the Jack API to Python. For information about Jack see http://jackit.sourceforge.net. This enables a Python program to connect to and interact with pro-audio applications which use the Jack Audio Server. WWW: https://pypi.python.org/pypi/py-jack PR: 220990 Submitted by: Yuri Victorovich (maintainer) Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D12079 Added: head/audio/py-jack/ head/audio/py-jack/Makefile (contents, props changed) head/audio/py-jack/distinfo (contents, props changed) head/audio/py-jack/files/ head/audio/py-jack/files/patch-pyjack.c (contents, props changed) head/audio/py-jack/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Sat Aug 19 17:49:43 2017 (r448346) +++ head/audio/Makefile Sat Aug 19 17:51:20 2017 (r448347) @@ -648,6 +648,7 @@ SUBDIR += py-gmusicproxy SUBDIR += py-hsaudiotag SUBDIR += py-id3 + SUBDIR += py-jack SUBDIR += py-karaoke SUBDIR += py-mad SUBDIR += py-mpd Added: head/audio/py-jack/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-jack/Makefile Sat Aug 19 17:51:20 2017 (r448347) @@ -0,0 +1,31 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= jack +PORTVERSION= 0.5.2 +CATEGORIES= audio python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= py-${PORTNAME}-${PORTVERSION} + +MAINTAINER= yuri@rawbw.com +COMMENT= PyJack is a Python bindings for the Jack Audio Server + +LICENSE= GPLv2 + +LIB_DEPENDS= libjack.so:audio/jack +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy + +USES= python:-2.7 localbase +USE_PYTHON= distutils autoplist + +post-patch: + @${REINPLACE_CMD} -e \ + 's|"/usr/local/|"${LOCALBASE}/|; \ + s|"jack", "dl"|"jack"|; \ + s|os.system.*|pass|' \ + ${WRKSRC}/setup.py +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/jack.so + +.include Added: head/audio/py-jack/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-jack/distinfo Sat Aug 19 17:51:20 2017 (r448347) @@ -0,0 +1,3 @@ +TIMESTAMP = 1500938413 +SHA256 (py-jack-0.5.2.tar.gz) = 67951f7b78ded52f3191a5267cd917f1270a6abe28341ccb3575bdd482488590 +SIZE (py-jack-0.5.2.tar.gz) = 13490 Added: head/audio/py-jack/files/patch-pyjack.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-jack/files/patch-pyjack.c Sat Aug 19 17:51:20 2017 (r448347) @@ -0,0 +1,10 @@ +--- pyjack.c.orig 2017-07-24 23:24:04 UTC ++++ pyjack.c +@@ -40,7 +40,6 @@ TODO's: + // Global shared data for jack + + /* Uncomment the next line if you have Jack2 */ +-#define JACK2 1 + + + #define PYJACK_MAX_PORTS 256 Added: head/audio/py-jack/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-jack/pkg-descr Sat Aug 19 17:51:20 2017 (r448347) @@ -0,0 +1,6 @@ +PyJack is a module written in C which exposes the Jack API to Python. +For information about Jack see http://jackit.sourceforge.net. This +enables a Python program to connect to and interact with pro-audio +applications which use the Jack Audio Server. + +WWW: https://pypi.python.org/pypi/py-jack