From owner-svn-ports-head@freebsd.org Wed Nov 1 20:20:46 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 9F886E6376E; Wed, 1 Nov 2017 20:20:46 +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 mx1.freebsd.org (Postfix) with ESMTPS id 7BA207FF31; Wed, 1 Nov 2017 20:20:46 +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 vA1KKj2p097194; Wed, 1 Nov 2017 20:20:45 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vA1KKjuM097190; Wed, 1 Nov 2017 20:20:45 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201711012020.vA1KKjuM097190@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 1 Nov 2017 20:20:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453313 - in head/audio: . py-pysndfile X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/audio: . py-pysndfile X-SVN-Commit-Revision: 453313 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: Wed, 01 Nov 2017 20:20:46 -0000 Author: yuri Date: Wed Nov 1 20:20:45 2017 New Revision: 453313 URL: https://svnweb.freebsd.org/changeset/ports/453313 Log: New port: audio/py-pysndfile: Cython wrapper class for soundfiles reading/writing. PR: 221785 Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D12893 Added: head/audio/py-pysndfile/ head/audio/py-pysndfile/Makefile (contents, props changed) head/audio/py-pysndfile/distinfo (contents, props changed) head/audio/py-pysndfile/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Wed Nov 1 18:44:20 2017 (r453312) +++ head/audio/Makefile Wed Nov 1 20:20:45 2017 (r453313) @@ -662,6 +662,7 @@ SUBDIR += py-pyaudio SUBDIR += py-pylast SUBDIR += py-pyliblo + SUBDIR += py-pysndfile SUBDIR += py-shout SUBDIR += py-soundcloud SUBDIR += py-soundscrape Added: head/audio/py-pysndfile/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-pysndfile/Makefile Wed Nov 1 20:20:45 2017 (r453313) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= pysndfile +DISTVERSION= 1.0.0 +CATEGORIES= audio python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Cython wrapper class for reading/writing soundfiles using libsndfile + +LICENSE= LGPL3 + +BUILD_DEPENDS= cython:lang/cython \ + ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy +LIB_DEPENDS= libsndfile.so:audio/libsndfile +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy + +USES= python localbase +USE_PYTHON= distutils autoplist + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pysndfile/_pysndfile.so + +.include Added: head/audio/py-pysndfile/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-pysndfile/distinfo Wed Nov 1 20:20:45 2017 (r453313) @@ -0,0 +1,3 @@ +TIMESTAMP = 1503631978 +SHA256 (pysndfile-1.0.0.tar.gz) = 181d751d8c2c6784241a354f394b64210c1dadc3dc064c22a55eddc5239a2b9e +SIZE (pysndfile-1.0.0.tar.gz) = 562614 Added: head/audio/py-pysndfile/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-pysndfile/pkg-descr Wed Nov 1 20:20:45 2017 (r453313) @@ -0,0 +1,16 @@ +pysndfile is a python package providing PySndfile, a Cython wrapper class +around libsndfile. PySndfile provides methods for reading and writing a +large variety of soundfile formats on a variety of plattforms. PySndfile +provides a rather complete access to the different sound file manipulation +options that are available in libsndfile. + +Due to the use of libsndfile nearly all sound file formats, (besides mp3 +and derived formats) can be read and written with PySndfile. + +The interface has been designed such that a rather large subset of the +functionality of libsndfile can be used, notably the reading and writing of +strings into soundfile formats that support these, and a number of sf_commands +that allow to control the way libsndfile reads and writes the samples. One of +the most important ones is the use of the clipping command. + +WWW: http://forge.ircam.fr/p/pysndfile