Date: Thu, 12 May 2016 15:52:47 +0000 (UTC) From: Kris Moore <kmoore@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415070 - in head/graphics: . py-imagesize Message-ID: <201605121552.u4CFqlvo060647@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kmoore Date: Thu May 12 15:52:47 2016 New Revision: 415070 URL: https://svnweb.freebsd.org/changeset/ports/415070 Log: This module analyzes jpeg/jpeg2000/png/gif image header and return image size. WWW: https://github.com/shibukawa/imagesize_py Added: head/graphics/py-imagesize/ head/graphics/py-imagesize/Makefile (contents, props changed) head/graphics/py-imagesize/distinfo (contents, props changed) head/graphics/py-imagesize/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Thu May 12 15:37:10 2016 (r415069) +++ head/graphics/Makefile Thu May 12 15:52:47 2016 (r415070) @@ -843,6 +843,7 @@ SUBDIR += py-graph-dot SUBDIR += py-graphy SUBDIR += py-gvgen + SUBDIR += py-imagesize SUBDIR += py-imaging SUBDIR += py-mcomix SUBDIR += py-ming Added: head/graphics/py-imagesize/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-imagesize/Makefile Thu May 12 15:52:47 2016 (r415070) @@ -0,0 +1,18 @@ +# Created by: Kris Moore <kmoore@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= imagesize +PORTVERSION= 0.7.1 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kmoore@FreeBSD.org +COMMENT= Python image size library + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/graphics/py-imagesize/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-imagesize/distinfo Thu May 12 15:52:47 2016 (r415070) @@ -0,0 +1,2 @@ +SHA256 (imagesize-0.7.1.tar.gz) = 0ab2c62b87987e3252f89d30b7cedbec12a01af9274af9ffa48108f2c13c6062 +SIZE (imagesize-0.7.1.tar.gz) = 2871 Added: head/graphics/py-imagesize/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-imagesize/pkg-descr Thu May 12 15:52:47 2016 (r415070) @@ -0,0 +1,3 @@ +This module analyzes jpeg/jpeg2000/png/gif image header and return image size. + +WWW: https://github.com/shibukawa/imagesize_py
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605121552.u4CFqlvo060647>