svn commit: r449820 - in head/audio: . py-opuslib

Richard Gallamore ultima at FreeBSD.org
Thu Sep 14 03:01:54 UTC 2017


Author: ultima
Date: Thu Sep 14 03:01:52 2017
New Revision: 449820
URL: https://svnweb.freebsd.org/changeset/ports/449820

Log:
  Python bindings to the libopus, IETF low-delay audio codec.
  
  It allows python applications to use the Opus audio codec to encode
  and decode audio, usually in order to reduce the network bandwidth
  that is used by the application.
  
  WWW: https://github.com/onbeep/opuslib
  
  PR:		222038
  Submitted by:	Yuri Victorovich (maintainer)
  Reviewed by:	lifanov (mentor), matthew (mentor), koobs, sunpoet, mat
  Approved by:	lifanov (mentor), matthew (mentor), koobs
  Differential Revision:	https://reviews.freebsd.org/D12309

Added:
  head/audio/py-opuslib/
  head/audio/py-opuslib/Makefile   (contents, props changed)
  head/audio/py-opuslib/distinfo   (contents, props changed)
  head/audio/py-opuslib/pkg-descr   (contents, props changed)
Modified:
  head/audio/Makefile

Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile	Thu Sep 14 02:02:25 2017	(r449819)
+++ head/audio/Makefile	Thu Sep 14 03:01:52 2017	(r449820)
@@ -657,6 +657,7 @@
     SUBDIR += py-mutagen
     SUBDIR += py-ogg
     SUBDIR += py-openal
+    SUBDIR += py-opuslib
     SUBDIR += py-py-jack
     SUBDIR += py-pyacoustid
     SUBDIR += py-pyaudio

Added: head/audio/py-opuslib/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/py-opuslib/Makefile	Thu Sep 14 03:01:52 2017	(r449820)
@@ -0,0 +1,21 @@
+# Created by: Yuri Victorovich
+# $FreeBSD$
+
+PORTNAME=	opuslib
+PORTVERSION=	1.1.0
+CATEGORIES=	audio python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri at rawbw.com
+COMMENT=	Python bindings to the libopus, IETF low-delay audio codec
+
+LICENSE=	BSD3CLAUSE
+
+RUN_DEPENDS=	${LOCALBASE}/lib/libopus.so:audio/opus
+
+USES=		python:2.7
+USE_PYTHON=	autoplist distutils
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/audio/py-opuslib/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/py-opuslib/distinfo	Thu Sep 14 03:01:52 2017	(r449820)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1504481859
+SHA256 (opuslib-1.1.0.tar.gz) = 342d9693f836cc42a44ae5f8bac51ae17d52e24e8daceb792cb610024f1e341b
+SIZE (opuslib-1.1.0.tar.gz) = 7009

Added: head/audio/py-opuslib/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/py-opuslib/pkg-descr	Thu Sep 14 03:01:52 2017	(r449820)
@@ -0,0 +1,7 @@
+Python bindings to the libopus, IETF low-delay audio codec.
+
+It allows python applications to use the Opus audio codec to encode
+and decode audio, usually in order to reduce the network bandwidth
+that is used by the application.
+
+WWW: https://github.com/onbeep/opuslib


More information about the svn-ports-all mailing list