Received: by mail.netbsd.org (Postfix, from userid 605) id 0B84B84D45; Mon, 31 Jul 2017 04:55:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9464684D3C for ; Mon, 31 Jul 2017 04:55:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id XS6RH7UuUrlC for ; Mon, 31 Jul 2017 04:55:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 1885184CFB for ; Mon, 31 Jul 2017 04:55:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0EDA9FACD; Mon, 31 Jul 2017 04:55:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1501476927270440" MIME-Version: 1.0 Date: Mon, 31 Jul 2017 04:55:27 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/audio/py-audioread To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170731045527.0EDA9FACD@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1501476927270440 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Jul 31 04:55:26 UTC 2017 Modified Files: pkgsrc/audio/py-audioread: Makefile PLIST distinfo Log Message: 2.1.5 Properly clean up the file handle when a backend fails to decode a file. Fix parsing of "N.M" channel counts in the FFmpeg backend (thanks to @piem). Avoid a crash in the raw backend when a file uses an unsupported number of bits per sample (namely, 24-bit samples in Python < 3.4). Add a __version__ value to the package. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/audio/py-audioread/Makefile \ pkgsrc/audio/py-audioread/distinfo cvs rdiff -u -r1.1 -r1.2 pkgsrc/audio/py-audioread/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1501476927270440 Content-Disposition: inline Content-Length: 2434 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/py-audioread/Makefile diff -u pkgsrc/audio/py-audioread/Makefile:1.4 pkgsrc/audio/py-audioread/Makefile:1.5 --- pkgsrc/audio/py-audioread/Makefile:1.4 Thu Mar 16 09:08:56 2017 +++ pkgsrc/audio/py-audioread/Makefile Mon Jul 31 04:55:26 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2017/03/16 09:08:56 leot Exp $ +# $NetBSD: Makefile,v 1.5 2017/07/31 04:55:26 adam Exp $ -DISTNAME= audioread-2.1.4 +DISTNAME= audioread-2.1.5 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_PYPI:=a/audioread/} Index: pkgsrc/audio/py-audioread/distinfo diff -u pkgsrc/audio/py-audioread/distinfo:1.4 pkgsrc/audio/py-audioread/distinfo:1.5 --- pkgsrc/audio/py-audioread/distinfo:1.4 Wed Mar 15 20:25:04 2017 +++ pkgsrc/audio/py-audioread/distinfo Mon Jul 31 04:55:26 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2017/03/15 20:25:04 adam Exp $ +$NetBSD: distinfo,v 1.5 2017/07/31 04:55:26 adam Exp $ -SHA1 (audioread-2.1.4.tar.gz) = a2a0a275a295f28a9352980a284068626e93eacf -RMD160 (audioread-2.1.4.tar.gz) = 6f067d71d235178a9e7facb88400dd932f20e559 -SHA512 (audioread-2.1.4.tar.gz) = aba5eabb95dd55cbaa2bd9918588df43528775eddf2a67370a04e3f10a2d15653a85f16cb710868586addd11aa5a608b17d8252555e2f56347e95a3d36c3dd80 -Size (audioread-2.1.4.tar.gz) = 15013 bytes +SHA1 (audioread-2.1.5.tar.gz) = af43ea49e51bade2a1c990f13fffc1df389111c0 +RMD160 (audioread-2.1.5.tar.gz) = 478f8a3e8eda9c57d3c3c79a5ef5a9756ae4d897 +SHA512 (audioread-2.1.5.tar.gz) = 7589b03f9f4b11475e97ab9d114ab1bf08be8e5f9d20f3db70c9d421607f99ed66747a65d1b5e124595e520ab698e17ae9fb9a2eb453ee904ee2b6debf8b3a5c +Size (audioread-2.1.5.tar.gz) = 15615 bytes Index: pkgsrc/audio/py-audioread/PLIST diff -u pkgsrc/audio/py-audioread/PLIST:1.1 pkgsrc/audio/py-audioread/PLIST:1.2 --- pkgsrc/audio/py-audioread/PLIST:1.1 Tue Apr 2 10:44:41 2013 +++ pkgsrc/audio/py-audioread/PLIST Mon Jul 31 04:55:26 2017 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2013/04/02 10:44:41 drochner Exp $ +@comment $NetBSD: PLIST,v 1.2 2017/07/31 04:55:26 adam Exp $ ${PYSITELIB}/${EGG_FILE} ${PYSITELIB}/audioread/__init__.py ${PYSITELIB}/audioread/__init__.pyc @@ -18,3 +18,6 @@ ${PYSITELIB}/audioread/maddec.pyo ${PYSITELIB}/audioread/rawread.py ${PYSITELIB}/audioread/rawread.pyc ${PYSITELIB}/audioread/rawread.pyo +${PYSITELIB}/audioread/version.py +${PYSITELIB}/audioread/version.pyc +${PYSITELIB}/audioread/version.pyo --_----------=_1501476927270440--