From owner-svn-ports-all@freebsd.org Tue Feb 13 20:03:05 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24512F1FBB2; Tue, 13 Feb 2018 20:03:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CDFF66DFCD; Tue, 13 Feb 2018 20:03:04 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AF7BE25730; Tue, 13 Feb 2018 20:03:04 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1DK34M5073150; Tue, 13 Feb 2018 20:03:04 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1DK34TR073146; Tue, 13 Feb 2018 20:03:04 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201802132003.w1DK34TR073146@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 13 Feb 2018 20:03:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461740 - in head/audio: . py-SoundFile X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/audio: . py-SoundFile X-SVN-Commit-Revision: 461740 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Feb 2018 20:03:05 -0000 Author: yuri Date: Tue Feb 13 20:03:04 2018 New Revision: 461740 URL: https://svnweb.freebsd.org/changeset/ports/461740 Log: New port: audio/py-SoundFile: Audio library based on libsndfile, CFFI and NumPy See https://github.com/bastibe/SoundFile Approved by: tcberner (mentor) Added: head/audio/py-SoundFile/ head/audio/py-SoundFile/Makefile (contents, props changed) head/audio/py-SoundFile/distinfo (contents, props changed) head/audio/py-SoundFile/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Tue Feb 13 19:59:44 2018 (r461739) +++ head/audio/Makefile Tue Feb 13 20:03:04 2018 (r461740) @@ -651,6 +651,7 @@ SUBDIR += puddletag SUBDIR += pulseaudio SUBDIR += pulseaudio-module-sndio + SUBDIR += py-SoundFile SUBDIR += py-al SUBDIR += py-ao SUBDIR += py-apetag Added: head/audio/py-SoundFile/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-SoundFile/Makefile Tue Feb 13 20:03:04 2018 (r461740) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= SoundFile +DISTVERSION= 0.9.0 +DISTVERSIONSUFFIX= .post1 +CATEGORIES= audio python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Audio library based on libsndfile, CFFI and NumPy + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=0.6:devel/py-cffi@${FLAVOR} \ + ${PYNUMPY} \ + ${PREFIX}/lib/libsndfile.so:audio/libsndfile + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/audio/py-SoundFile/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-SoundFile/distinfo Tue Feb 13 20:03:04 2018 (r461740) @@ -0,0 +1,3 @@ +TIMESTAMP = 1518517499 +SHA256 (SoundFile-0.9.0.post1.tar.gz) = e01b53f6ba6dce389f388c819b43466b8708e85e9d832a8a3a1ff95af7c60731 +SIZE (SoundFile-0.9.0.post1.tar.gz) = 1817974 Added: head/audio/py-SoundFile/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-SoundFile/pkg-descr Tue Feb 13 20:03:04 2018 (r461740) @@ -0,0 +1,5 @@ +PySoundFile can read and write sound files. File reading/writing is supported +through libsndfile, which is a free, cross-platform, open-source (LGPL) library +for reading and writing many different sampled sound file formats. + +WWW: https://github.com/bastibe/PySoundFile