Date: Fri, 6 Sep 2013 21:02:12 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326547 - in head/textproc: . py-openpyxl Message-ID: <201309062102.r86L2CHk083119@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Fri Sep 6 21:02:12 2013 New Revision: 326547 URL: http://svnweb.freebsd.org/changeset/ports/326547 Log: New port: py-openpyxl OpenPyxl is a Python library to read/write Excel 2007 xlsx/xlsm files. WWW: http://openpyxl.readthedocs.org/ Added: head/textproc/py-openpyxl/ head/textproc/py-openpyxl/Makefile (contents, props changed) head/textproc/py-openpyxl/distinfo (contents, props changed) head/textproc/py-openpyxl/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Fri Sep 6 20:57:11 2013 (r326546) +++ head/textproc/Makefile Fri Sep 6 21:02:12 2013 (r326547) @@ -1175,6 +1175,7 @@ SUBDIR += py-mako SUBDIR += py-markdown SUBDIR += py-markdown2 + SUBDIR += py-openpyxl SUBDIR += py-paragrep SUBDIR += py-pss SUBDIR += py-pyctpp2 Added: head/textproc/py-openpyxl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-openpyxl/Makefile Fri Sep 6 21:02:12 2013 (r326547) @@ -0,0 +1,33 @@ +# Created by: Antoine Brodin <antoine@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= openpyxl +PORTVERSION= 1.6.2 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Python library to read/write Excel 2007 xlsx/xlsm files + +LICENSE= MIT + +USE_PYTHON= yes +USE_PYDISTUTILS=easy_install + +DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} +PORTDOCS= AUTHORS README + +PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% + +OPTIONS_DEFINE= DOCS + +.include <bsd.port.options.mk> + +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} +.endif + +.include <bsd.port.mk> Added: head/textproc/py-openpyxl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-openpyxl/distinfo Fri Sep 6 21:02:12 2013 (r326547) @@ -0,0 +1,2 @@ +SHA256 (openpyxl-1.6.2.tar.gz) = 69b146be1939aac85ab13d32ea8442eaa596ffc1285a19b42bdbfa751b55b2c1 +SIZE (openpyxl-1.6.2.tar.gz) = 199139 Added: head/textproc/py-openpyxl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-openpyxl/pkg-descr Fri Sep 6 21:02:12 2013 (r326547) @@ -0,0 +1,3 @@ +OpenPyxl is a Python library to read/write Excel 2007 xlsx/xlsm files. + +WWW: http://openpyxl.readthedocs.org/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309062102.r86L2CHk083119>