diff options
author | pi <pi@FreeBSD.org> | 2016-04-06 02:04:38 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2016-04-06 02:04:38 +0800 |
commit | 457b6a1f1be9a46bd27a64b85535adbd9c6835ea (patch) | |
tree | 23954aa1f1fd0752fe3570eaaff1d5a643ce8f29 /audio/py-pyaudio/Makefile | |
parent | e53a74bd14364b19e637c63d0d39a3123ddd71fc (diff) | |
download | freebsd-ports-gnome-457b6a1f1be9a46bd27a64b85535adbd9c6835ea.tar.gz freebsd-ports-gnome-457b6a1f1be9a46bd27a64b85535adbd9c6835ea.tar.zst freebsd-ports-gnome-457b6a1f1be9a46bd27a64b85535adbd9c6835ea.zip |
audio/py-pyaudio: 0.2.8 -> 0.2.9
- Fix overflow error handling logic for pa_read_stream.
Stream.read takes an additional parameter that specifies whether
an exception is raised on audio buffer overflow, for parity with
Stream.write. Includes relevant bug fixes in the C module logic.
Thanks to Tony Jacobson for submitting a patch!
- Fix IOError arguments.
IOError exceptions previously had values in the strerror and errno fields
swapped, which is now corrected.
Thanks to Sami Liedes for the report!
- Miscellaneous updates.
Python library surfaces issues with importing low-level C module.
Code formatting update.
Updates to examples for Python 3 compatibility.
PR: 208517
Submitted by: jaap@NLnetLabs.nl (maintainer)
Diffstat (limited to 'audio/py-pyaudio/Makefile')
-rw-r--r-- | audio/py-pyaudio/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/py-pyaudio/Makefile b/audio/py-pyaudio/Makefile index bcc8ed851f9f..b9162ac8bdbb 100644 --- a/audio/py-pyaudio/Makefile +++ b/audio/py-pyaudio/Makefile @@ -2,11 +2,11 @@ # $FreeBSD$ PORTNAME= pyaudio -PORTVERSION= 0.2.8 -PORTREVISION= 1 +PORTVERSION= 0.2.9 CATEGORIES= audio python -MASTER_SITES= http://people.csail.mit.edu/hubert/pyaudio/packages/ +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= PyAudio-${PORTVERSION} MAINTAINER= jaap@NLnetLabs.nl COMMENT= Portaudio toolkit bindings for Python |