Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Oct 2018 04:19:09 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r481596 - in head/multimedia: . py-av
Message-ID:  <201810090419.w994J945000935@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Tue Oct  9 04:19:08 2018
New Revision: 481596
URL: https://svnweb.freebsd.org/changeset/ports/481596

Log:
  multimedia/py-av: create port
  
  PyAV is a Pythonic binding for FFmpeg. We aim to provide all of the power and
  control of the underlying library, but manage the gritty details as much as
  possible.
  
  WWW: http://docs.mikeboers.com/pyav/develop/

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

Modified: head/multimedia/Makefile
==============================================================================
--- head/multimedia/Makefile	Tue Oct  9 03:08:13 2018	(r481595)
+++ head/multimedia/Makefile	Tue Oct  9 04:19:08 2018	(r481596)
@@ -333,6 +333,7 @@
     SUBDIR += pwcbsd
     SUBDIR += pwcview
     SUBDIR += py-PySceneDetect
+    SUBDIR += py-av
     SUBDIR += py-cec
     SUBDIR += py-enzyme
     SUBDIR += py-flvlib

Added: head/multimedia/py-av/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/py-av/Makefile	Tue Oct  9 04:19:08 2018	(r481596)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	av
+PORTVERSION=	0.5.3
+CATEGORIES=	multimedia python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	swills@FreeBSD.org
+COMMENT=	Pythonic binding for FFmpeg
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+LIB_DEPENDS=	libavutil.so:multimedia/ffmpeg
+
+USES=		python pkgconfig
+USE_PYTHON=	autoplist concurrent distutils
+
+.include <bsd.port.mk>

Added: head/multimedia/py-av/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/py-av/distinfo	Tue Oct  9 04:19:08 2018	(r481596)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1539054161
+SHA256 (av-0.5.3.tar.gz) = 198719246335103e8c16a50c1f269359b4d52c7c38586f39629d0b869c5bb64c
+SIZE (av-0.5.3.tar.gz) = 1893049

Added: head/multimedia/py-av/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/py-av/pkg-descr	Tue Oct  9 04:19:08 2018	(r481596)
@@ -0,0 +1,5 @@
+PyAV is a Pythonic binding for FFmpeg. We aim to provide all of the power and
+control of the underlying library, but manage the gritty details as much as
+possible.
+
+WWW: http://docs.mikeboers.com/pyav/develop/



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