Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Jun 2019 23:08:38 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r504817 - in head/audio: . py-audioread
Message-ID:  <201906212308.x5LN8ch6061683@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Fri Jun 21 23:08:38 2019
New Revision: 504817
URL: https://svnweb.freebsd.org/changeset/ports/504817

Log:
  Add py-audioread 2.1.8
  
  audioread decodes audio files using whichever backend is available. The library
  currently supports:
  - Gstreamer via PyGObject.
  - MAD via the pymad bindings.
  - FFmpeg or Libav via its command-line interface.
  - The standard library wave, aifc, and sunau modules (for uncompressed audio
    formats).
  
  WWW: https://github.com/beetbox/audioread

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

Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile	Fri Jun 21 22:24:29 2019	(r504816)
+++ head/audio/Makefile	Fri Jun 21 23:08:38 2019	(r504817)
@@ -661,6 +661,7 @@
     SUBDIR += py-ao
     SUBDIR += py-apetag
     SUBDIR += py-aubio
+    SUBDIR += py-audioread
     SUBDIR += py-cddb
     SUBDIR += py-discid
     SUBDIR += py-discogs-client

Added: head/audio/py-audioread/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/py-audioread/Makefile	Fri Jun 21 23:08:38 2019	(r504817)
@@ -0,0 +1,33 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	audioread
+PORTVERSION=	2.1.8
+CATEGORIES=	audio python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Multi-library, cross-platform audio decoding
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${PY_FLAVOR}
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+OPTIONS_MULTI=	BACKEND
+OPTIONS_MULTI_BACKEND=	FFMPEG PYMAD
+OPTIONS_DEFAULT=PYMAD
+FFMPEG_DESC=	Use ffmpeg as backend
+PYMAD_DESC=	Use pymad as backend
+
+FFMPEG_RUN_DEPENDS=	ffmpeg:multimedia/ffmpeg
+PYMAD_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pymad>=0:audio/py-pymad@${PY_FLAVOR}
+
+.include <bsd.port.mk>

Added: head/audio/py-audioread/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/py-audioread/distinfo	Fri Jun 21 23:08:38 2019	(r504817)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1561153845
+SHA256 (audioread-2.1.8.tar.gz) = 073904fabc842881e07bd3e4a5776623535562f70b1655b635d22886168dd168
+SIZE (audioread-2.1.8.tar.gz) = 21222

Added: head/audio/py-audioread/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/py-audioread/pkg-descr	Fri Jun 21 23:08:38 2019	(r504817)
@@ -0,0 +1,9 @@
+audioread decodes audio files using whichever backend is available. The library
+currently supports:
+- Gstreamer via PyGObject.
+- MAD via the pymad bindings.
+- FFmpeg or Libav via its command-line interface.
+- The standard library wave, aifc, and sunau modules (for uncompressed audio
+  formats).
+
+WWW: https://github.com/beetbox/audioread



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906212308.x5LN8ch6061683>