svn commit: r317017 - in head/textproc: . py-xlutils
Steven Kreuzer
skreuzer at FreeBSD.org
Wed May 1 12:49:18 UTC 2013
Author: skreuzer
Date: Wed May 1 12:49:16 2013
New Revision: 317017
URL: http://svnweb.freebsd.org/changeset/ports/317017
Log:
Collection of utilities for working with Excel files. Since these utilities may
require either or both of the xlrd and xlwt packages, they are collected
together here, separate from either package.
WWW: http://www.python-excel.org/
Added:
head/textproc/py-xlutils/
head/textproc/py-xlutils/Makefile (contents, props changed)
head/textproc/py-xlutils/distinfo (contents, props changed)
head/textproc/py-xlutils/pkg-descr (contents, props changed)
head/textproc/py-xlutils/pkg-plist (contents, props changed)
Modified:
head/textproc/Makefile
Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile Wed May 1 12:47:56 2013 (r317016)
+++ head/textproc/Makefile Wed May 1 12:49:16 2013 (r317017)
@@ -1191,6 +1191,7 @@
SUBDIR += py-wordnet
SUBDIR += py-wtforms
SUBDIR += py-xlrd
+ SUBDIR += py-xlutils
SUBDIR += py-xlwriter
SUBDIR += py-xlwt
SUBDIR += py-xml
Added: head/textproc/py-xlutils/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/py-xlutils/Makefile Wed May 1 12:49:16 2013 (r317017)
@@ -0,0 +1,20 @@
+# Created by: Steven Kreuzer <skreuzer at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= xlutils
+PORTVERSION= 1.6.0
+CATEGORIES= textproc python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= skreuzer at FreeBSD.org
+COMMENT= Utilities for working with Excel files that require both xlrd and xlwt
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xlrd>=0.7.2:${PORTSDIR}/textproc/py-xlrd \
+ ${PYTHON_PKGNAMEPREFIX}xlwt>=0.7.4:${PORTSDIR}/textproc/py-xlwt
+RUN_DEPENDS:= ${BUILD_DEPENDS}
+
+USE_PYTHON= 2.5-2.7
+USE_PYDISTUTILS= easy_install
+
+.include <bsd.port.mk>
Added: head/textproc/py-xlutils/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/py-xlutils/distinfo Wed May 1 12:49:16 2013 (r317017)
@@ -0,0 +1,2 @@
+SHA256 (xlutils-1.6.0.tar.gz) = ec090b81241e04726242c8f1e94ec5b116cfdc66ad3659a95d3fd4baf713f7d1
+SIZE (xlutils-1.6.0.tar.gz) = 54721
Added: head/textproc/py-xlutils/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/py-xlutils/pkg-descr Wed May 1 12:49:16 2013 (r317017)
@@ -0,0 +1,5 @@
+Collection of utilities for working with Excel files. Since these utilities may
+require either or both of the xlrd and xlwt packages, they are collected
+together here, separate from either package.
+
+WWW: http://www.python-excel.org/
Added: head/textproc/py-xlutils/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/py-xlutils/pkg-plist Wed May 1 12:49:16 2013 (r317017)
@@ -0,0 +1,23 @@
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/__init__.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/copy.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/display.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/filter.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/license.txt
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/margins.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/save.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/styles.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/tests/__init__.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/tests/date.xls
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/tests/fixtures.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/tests/ragged.xls
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/tests/test.xls
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/tests/test_copy.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/tests/test_docs.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/tests/test_filter.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/tests/test_save.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/tests/test_styles.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/tests/testall.xls
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/tests/testnoformatting.xls
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/version.txt
+ at dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils/tests
+ at dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/xlutils
More information about the svn-ports-head
mailing list