From owner-svn-ports-all@freebsd.org Thu May 12 15:52:48 2016 Return-Path: Delivered-To: svn-ports-all@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 A81EBB38D43; Thu, 12 May 2016 15:52:48 +0000 (UTC) (envelope-from kmoore@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 60F901BDA; Thu, 12 May 2016 15:52:48 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4CFqlC1060651; Thu, 12 May 2016 15:52:47 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4CFqlvo060647; Thu, 12 May 2016 15:52:47 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201605121552.u4CFqlvo060647@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Thu, 12 May 2016 15:52:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415070 - in head/graphics: . py-imagesize X-SVN-Group: ports-head 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.22 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: Thu, 12 May 2016 15:52:48 -0000 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 +# $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 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