From owner-svn-ports-all@freebsd.org Mon Jan 4 00:26:17 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 94897A60D18; Mon, 4 Jan 2016 00:26:17 +0000 (UTC) (envelope-from mi@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 4A35D161D; Mon, 4 Jan 2016 00:26:17 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u040QGnB005673; Mon, 4 Jan 2016 00:26:16 GMT (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u040QG0u005668; Mon, 4 Jan 2016 00:26:16 GMT (envelope-from mi@FreeBSD.org) Message-Id: <201601040026.u040QG0u005668@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mi set sender to mi@FreeBSD.org using -f From: Mikhail Teterin Date: Mon, 4 Jan 2016 00:26:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405203 - in head/graphics: . py-exifread 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.20 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: Mon, 04 Jan 2016 00:26:17 -0000 Author: mi Date: Mon Jan 4 00:26:15 2016 New Revision: 405203 URL: https://svnweb.freebsd.org/changeset/ports/405203 Log: Add port of py-ExifRead -- yet another method of accessing EXIF information in image-files. Required for MediaGoblin. Added: head/graphics/py-exifread/ head/graphics/py-exifread/Makefile (contents, props changed) head/graphics/py-exifread/distinfo (contents, props changed) head/graphics/py-exifread/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Jan 3 23:53:38 2016 (r405202) +++ head/graphics/Makefile Mon Jan 4 00:26:15 2016 (r405203) @@ -826,6 +826,7 @@ SUBDIR += py-django-easy-thumbnails SUBDIR += py-editobj SUBDIR += py-exif + SUBDIR += py-exifread SUBDIR += py-exiv2 SUBDIR += py-freeimagepy SUBDIR += py-gchartwrapper Added: head/graphics/py-exifread/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-exifread/Makefile Mon Jan 4 00:26:15 2016 (r405203) @@ -0,0 +1,18 @@ +# Created by: Mikhail Teterin +# $FreeBSD$ + +PORTNAME= ExifRead +PORTVERSION= 2.1.2 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= mi@aldan.algebra.com +COMMENT= Read Exif metadata from tiff and jpeg files + +LICENSE= BSD + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/graphics/py-exifread/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-exifread/distinfo Mon Jan 4 00:26:15 2016 (r405203) @@ -0,0 +1,2 @@ +SHA256 (ExifRead-2.1.2.tar.gz) = 79e244f2eb466709029e8806fe5e2cdd557870c3db5f68954db0ef548d9320ad +SIZE (ExifRead-2.1.2.tar.gz) = 33159 Added: head/graphics/py-exifread/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-exifread/pkg-descr Mon Jan 4 00:26:15 2016 (r405203) @@ -0,0 +1,6 @@ +Easy to use Python module to extract Exif metadata from tiff and +jpeg files. + +Originally written by Gene Cash & Thierry Bousch. + +WWW: https://github.com/ianare/exif-py