1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00

Update to 0.3.0

- Add LICENSE_FILE
- Update pkg-descr

Changes:	https://github.com/imageio/imageio-ffmpeg/releases
		https://github.com/imageio/imageio-ffmpeg/commits/master
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2019-04-17 18:48:58 +00:00
parent b9fa967989
commit 383563f343
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=499191
4 changed files with 21 additions and 12 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= imageio-ffmpeg
PORTVERSION= 0.2.0
PORTVERSION= 0.3.0
CATEGORIES= graphics python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -11,6 +11,7 @@ MAINTAINER= sunpoet@FreeBSD.org
COMMENT= FFMPEG wrapper for Python
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ffmpeg:multimedia/ffmpeg

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1549567303
SHA256 (imageio-ffmpeg-0.2.0.tar.gz) = 2beacb11b121440cfd0bc0caf80da54a3729956002707251ab8e26d3e03933a4
SIZE (imageio-ffmpeg-0.2.0.tar.gz) = 10865
TIMESTAMP = 1555202509
SHA256 (imageio-ffmpeg-0.3.0.tar.gz) = 28500544acdebc195159d53a4670b76d596f368b218317bad5d3cbf43b00d6c2
SIZE (imageio-ffmpeg-0.3.0.tar.gz) = 13055

View File

@ -0,0 +1,10 @@
--- setup.py.orig 2019-04-12 09:07:51 UTC
+++ setup.py
@@ -57,7 +57,6 @@ setup(
platforms="any",
provides=["imageio_ffmpeg"],
python_requires=">=3.4",
- setup_requires=["pip>19"],
install_requires=[], # todo: maybe numpy
packages=["imageio_ffmpeg"],
package_dir={"imageio_ffmpeg": "imageio_ffmpeg"},

View File

@ -1,13 +1,11 @@
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.
for working with video files. It implements two simple generator functions for
reading and writing data from/to ffmpeg, which reliably terminate the ffmpeg
process when done. It also takes care of publishing platform-specific wheels
that include the binary ffmpeg executables.
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.
be used by itself. Imageio provides a higher level API, and adds support for
e.g. cameras and seeking.
WWW: https://github.com/imageio/imageio-ffmpeg