From owner-svn-ports-head@freebsd.org Thu Feb 7 23:13:41 2019 Return-Path: Delivered-To: svn-ports-head@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 19EA514C845E; Thu, 7 Feb 2019 23:13:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B0AF5810E9; Thu, 7 Feb 2019 23:13:40 +0000 (UTC) (envelope-from sunpoet@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 A20CD7482; Thu, 7 Feb 2019 23:13:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x17NDeVh033033; Thu, 7 Feb 2019 23:13:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x17NDdtp033028; Thu, 7 Feb 2019 23:13:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201902072313.x17NDdtp033028@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 7 Feb 2019 23:13:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r492388 - in head/graphics: . py-imageio-ffmpeg X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/graphics: . py-imageio-ffmpeg X-SVN-Commit-Revision: 492388 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B0AF5810E9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.91 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.91)[-0.908,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2019 23:13:41 -0000 Author: sunpoet Date: Thu Feb 7 23:13:39 2019 New Revision: 492388 URL: https://svnweb.freebsd.org/changeset/ports/492388 Log: Add py-imageio-ffmpeg 0.2.0 The purpose of this project is to provide a simple and reliable ffmpeg wrapper for working with video files. It takes care of producing platform-specific wheels that include the binary executables of ffmpeg. These can then be installed (and updated or uninstalled) easily with pip. It also provides simple generator functions for reading and writing data from/to ffmpeg, which reliably terminate the ffmpeg process when done. This library is used as the basis for the imageio ffmpeg plugin, but it can also be used by itself. Imageio provides a friendlier (higher level) API, and adds support for e.g. cameras and seeking. WWW: https://github.com/imageio/imageio-ffmpeg Added: head/graphics/py-imageio-ffmpeg/ head/graphics/py-imageio-ffmpeg/Makefile (contents, props changed) head/graphics/py-imageio-ffmpeg/distinfo (contents, props changed) head/graphics/py-imageio-ffmpeg/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Thu Feb 7 22:36:06 2019 (r492387) +++ head/graphics/Makefile Thu Feb 7 23:13:39 2019 (r492388) @@ -844,6 +844,7 @@ SUBDIR += py-graphy SUBDIR += py-gvgen SUBDIR += py-imageio + SUBDIR += py-imageio-ffmpeg SUBDIR += py-imagesize SUBDIR += py-imgurpython SUBDIR += py-leather Added: head/graphics/py-imageio-ffmpeg/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-imageio-ffmpeg/Makefile Thu Feb 7 23:13:39 2019 (r492388) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= imageio-ffmpeg +PORTVERSION= 0.2.0 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= FFMPEG wrapper for Python + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= ffmpeg:multimedia/ffmpeg + +USES= python:3.4+ +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/graphics/py-imageio-ffmpeg/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-imageio-ffmpeg/distinfo Thu Feb 7 23:13:39 2019 (r492388) @@ -0,0 +1,3 @@ +TIMESTAMP = 1549567303 +SHA256 (imageio-ffmpeg-0.2.0.tar.gz) = 2beacb11b121440cfd0bc0caf80da54a3729956002707251ab8e26d3e03933a4 +SIZE (imageio-ffmpeg-0.2.0.tar.gz) = 10865 Added: head/graphics/py-imageio-ffmpeg/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-imageio-ffmpeg/pkg-descr Thu Feb 7 23:13:39 2019 (r492388) @@ -0,0 +1,13 @@ +The purpose of this project is to provide a simple and reliable ffmpeg wrapper +for working with video files. It takes care of producing platform-specific +wheels that include the binary executables of ffmpeg. These can then be +installed (and updated or uninstalled) easily with pip. + +It also provides simple generator functions for reading and writing data from/to +ffmpeg, which reliably terminate the ffmpeg process when done. + +This library is used as the basis for the imageio ffmpeg plugin, but it can also +be used by itself. Imageio provides a friendlier (higher level) API, and adds +support for e.g. cameras and seeking. + +WWW: https://github.com/imageio/imageio-ffmpeg