Date: Tue, 13 Feb 2018 20:03:04 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461740 - in head/audio: . py-SoundFile Message-ID: <201802132003.w1DK34TR073146@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802132003.w1DK34TR073146>