From owner-svn-ports-head@freebsd.org Wed Jul 13 02:56:51 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1397BB975AB; Wed, 13 Jul 2016 02:56:51 +0000 (UTC) (envelope-from kevlo@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 mx1.freebsd.org (Postfix) with ESMTPS id BDCF81B2A; Wed, 13 Jul 2016 02:56:50 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6D2un0C040292; Wed, 13 Jul 2016 02:56:49 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6D2unnt040288; Wed, 13 Jul 2016 02:56:49 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201607130256.u6D2unnt040288@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Wed, 13 Jul 2016 02:56:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418458 - in head/graphics: . py-imageio X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 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: Wed, 13 Jul 2016 02:56:51 -0000 Author: kevlo Date: Wed Jul 13 02:56:49 2016 New Revision: 418458 URL: https://svnweb.freebsd.org/changeset/ports/418458 Log: Import py-imageio 1.5. Imageio is a Python library that provides an easy interface to read and write a wide range of image data, including animated images, volumetric data, and scientific formats. Added: head/graphics/py-imageio/ head/graphics/py-imageio/Makefile (contents, props changed) head/graphics/py-imageio/distinfo (contents, props changed) head/graphics/py-imageio/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Wed Jul 13 01:55:18 2016 (r418457) +++ head/graphics/Makefile Wed Jul 13 02:56:49 2016 (r418458) @@ -842,6 +842,7 @@ SUBDIR += py-graph-dot SUBDIR += py-graphy SUBDIR += py-gvgen + SUBDIR += py-imageio SUBDIR += py-imagesize SUBDIR += py-mcomix SUBDIR += py-ming Added: head/graphics/py-imageio/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-imageio/Makefile Wed Jul 13 02:56:49 2016 (r418458) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= imageio +PORTVERSION= 1.5 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kevlo@FreeBSD.org +COMMENT= Python library for reading and writing image, video formats + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libfreeimage.so:graphics/freeimage +RUN_DEPENDS= ffmpeg:multimedia/ffmpeg \ + ${PYNUMPY} + +USES= python zip +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include Added: head/graphics/py-imageio/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-imageio/distinfo Wed Jul 13 02:56:49 2016 (r418458) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468312984 +SHA256 (imageio-1.5.zip) = 37ab7ad6ca37905cee6b3535a0dba21506647d663b4414089b85b20e2b9f985d +SIZE (imageio-1.5.zip) = 3269874 Added: head/graphics/py-imageio/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-imageio/pkg-descr Wed Jul 13 02:56:49 2016 (r418458) @@ -0,0 +1,5 @@ +Imageio is a Python library that provides an easy interface to read and +write a wide range of image data, including animated images, volumetric data, +and scientific formats. + +WWW: http://imageio.github.io/