From owner-svn-ports-all@freebsd.org Tue Oct 9 04:19:10 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E60810BDC18; Tue, 9 Oct 2018 04:19:10 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 24915736CF; Tue, 9 Oct 2018 04:19:10 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0582F4FF9; Tue, 9 Oct 2018 04:19:10 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w994J9uf000941; Tue, 9 Oct 2018 04:19:09 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w994J945000935; Tue, 9 Oct 2018 04:19:09 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201810090419.w994J945000935@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 9 Oct 2018 04:19:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481596 - in head/multimedia: . py-av X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/multimedia: . py-av X-SVN-Commit-Revision: 481596 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2018 04:19:10 -0000 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 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/