From owner-svn-ports-all@FreeBSD.ORG Sun Jun 30 15:54:11 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id AAE05568; Sun, 30 Jun 2013 15:54:11 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 8B97F124B; Sun, 30 Jun 2013 15:54:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5UFsBCR040885; Sun, 30 Jun 2013 15:54:11 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5UFsAxD040880; Sun, 30 Jun 2013 15:54:10 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201306301554.r5UFsAxD040880@svn.freebsd.org> From: Antoine Brodin Date: Sun, 30 Jun 2013 15:54:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r322090 - in head/devel: . py-olefileio_pl 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.14 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: Sun, 30 Jun 2013 15:54:11 -0000 Author: antoine Date: Sun Jun 30 15:54:09 2013 New Revision: 322090 URL: http://svnweb.freebsd.org/changeset/ports/322090 Log: New port: py-olefileio_pl A python module to read Microsoft OLE2 files Added: head/devel/py-olefileio_pl/ head/devel/py-olefileio_pl/Makefile (contents, props changed) head/devel/py-olefileio_pl/distinfo (contents, props changed) head/devel/py-olefileio_pl/pkg-descr (contents, props changed) head/devel/py-olefileio_pl/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 30 14:51:11 2013 (r322089) +++ head/devel/Makefile Sun Jun 30 15:54:09 2013 (r322090) @@ -3610,6 +3610,7 @@ SUBDIR += py-ocempgui SUBDIR += py-ode SUBDIR += py-odfpy + SUBDIR += py-olefileio_pl SUBDIR += py-omniorb SUBDIR += py-optik SUBDIR += py-orbit Added: head/devel/py-olefileio_pl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-olefileio_pl/Makefile Sun Jun 30 15:54:09 2013 (r322090) @@ -0,0 +1,35 @@ +# Created by: Antoine Brodin +# $FreeBSD$ + +PORTNAME= olefileio_pl +PORTVERSION= 0.25 +CATEGORIES= devel python +MASTER_SITES= http://cdn.bitbucket.org/decalage/olefileio_pl/downloads/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= OleFileIO_PL-${PORTVERSION} +EXTRACT_SUFX= .zip + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Python module to read MS OLE2 files + +LICENSE= MIT + +USE_DOS2UNIX= yes +USE_PYTHON= -2.7 +USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME=OleFileIO_PL + +PORT_OPTIONS= DOCS + +DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} +PORTDOCS= README.txt + +.include + +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} +.endif + +.include Added: head/devel/py-olefileio_pl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-olefileio_pl/distinfo Sun Jun 30 15:54:09 2013 (r322090) @@ -0,0 +1,2 @@ +SHA256 (OleFileIO_PL-0.25.zip) = 8c8219333ddf78d786c7f9e43a141934ddbd5a20e0e627e4b992ad54550b828a +SIZE (OleFileIO_PL-0.25.zip) = 37370 Added: head/devel/py-olefileio_pl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-olefileio_pl/pkg-descr Sun Jun 30 15:54:09 2013 (r322090) @@ -0,0 +1,10 @@ +OleFileIO_PL is a Python module to read Microsoft OLE2 files (also called +Structured Storage, Compound File Binary Format or Compound Document File +Format), such as Microsoft Office documents, Image Composer and FlashPix +files, Outlook messages, ... +This is an improved version of the OleFileIO module from PIL, the excellent +Python Imaging Library, created and maintained by Fredrik Lundh. The API is +still compatible with PIL, but the internal implementation has been improved +significantly, with new features, bugfixes and a more robust design. + +WWW: http://www.decalage.info/python/olefileio Added: head/devel/py-olefileio_pl/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-olefileio_pl/pkg-plist Sun Jun 30 15:54:09 2013 (r322090) @@ -0,0 +1,3 @@ +%%PYTHON_SITELIBDIR%%/OleFileIO_PL.py +%%PYTHON_SITELIBDIR%%/OleFileIO_PL.pyc +%%PYTHON_SITELIBDIR%%/OleFileIO_PL.pyo