diff options
author | pi <pi@FreeBSD.org> | 2016-05-16 03:56:51 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2016-05-16 03:56:51 +0800 |
commit | 107d42c71ecf5e93a293b95ae1a2f434d47d3b94 (patch) | |
tree | a7b6c322a2a530586781d9bc4cfdbc9195b5fdeb /math | |
parent | 10cce65bc6ac774c77a1254a92560dbc57297253 (diff) | |
download | freebsd-ports-gnome-107d42c71ecf5e93a293b95ae1a2f434d47d3b94.tar.gz freebsd-ports-gnome-107d42c71ecf5e93a293b95ae1a2f434d47d3b94.tar.zst freebsd-ports-gnome-107d42c71ecf5e93a293b95ae1a2f434d47d3b94.zip |
math/py-pandas: 0.17.0 -> 0.18.1
Changes:
http://pandas.pydata.org/pandas-docs/version/0.18.1/
- Add optional dependencies on devel/py-Jinja2 and textproc/py-xlsxwriter
PR: 209521
Submitted by: John W. O'Brien <john@saltant.com> (maintainer)
Diffstat (limited to 'math')
-rw-r--r-- | math/py-pandas/Makefile | 25 | ||||
-rw-r--r-- | math/py-pandas/distinfo | 5 |
2 files changed, 21 insertions, 9 deletions
diff --git a/math/py-pandas/Makefile b/math/py-pandas/Makefile index e1f78c52b4f9..b64ec8a7fc0d 100644 --- a/math/py-pandas/Makefile +++ b/math/py-pandas/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pandas -PORTVERSION= 0.17.0 +PORTVERSION= 0.18.1 CATEGORIES= math devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -27,11 +27,13 @@ TEST_DEPENDS:= ${RUN_DEPENDS} \ ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib \ ${PYTHON_PKGNAMEPREFIX}numexpr>=2.1.0:math/py-numexpr \ ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy \ - ${PYTHON_PKGNAMEPREFIX}openpyxl>=2.0.0:textproc/py-openpyxl \ + ${PYTHON_PKGNAMEPREFIX}openpyxl>=2.2.0:textproc/py-openpyxl \ ${PYTHON_PKGNAMEPREFIX}xlrd>0:textproc/py-xlrd \ ${PYTHON_PKGNAMEPREFIX}xlwt>0:textproc/py-xlwt \ + ${PYTHON_PKGNAMEPREFIX}XlsxWriter>0:textproc/py-xlsxwriter \ ${PYTHON_PKGNAMEPREFIX}beautifulsoup>0:www/py-beautifulsoup \ - ${PYTHON_PKGNAMEPREFIX}html5lib>0:www/py-html5lib + ${PYTHON_PKGNAMEPREFIX}html5lib>0:www/py-html5lib \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2 # Note: we cannot include math/py-statsmodels in TEST_DEPENDS because it # depends upon us for BUILD and RUN. @@ -39,8 +41,8 @@ OPTIONS_DEFINE= MPL OPENPYXL SCIPY OPTIONS_GROUP= ACCEL STORAGE HTML EXCEL OPTIONS_GROUP_ACCEL= BTLNCK NUMEXPR OPTIONS_GROUP_STORAGE= BOTO TABLES SQL -OPTIONS_GROUP_HTML= LXML HTML5LIB -OPTIONS_GROUP_EXCEL= XLRD XLWT +OPTIONS_GROUP_HTML= LXML HTML5LIB JINJA2 +OPTIONS_GROUP_EXCEL= XLRD XLWT OPENPYXL XLSX OPTIONS_DEFAULT= BTLNCK NUMEXPR MPL_DESC= Support graphical plotting output via math/py-matplotlib @@ -51,13 +53,15 @@ BOTO_DESC= Support Amazon S3 storage via devel/py-boto TABLES_DESC= Support HDF5-based storage via devel/py-tables SQL_DESC= Support SQL databases via databases/py-sqlalchemy LXML_DESC= Parse HTML with devel/py-lxml and www/py-beautifulsoup +JINJA2_DESC= Support conditional HTML formatting with devel/py-Jinja2 HTML5LIB_DESC= Parse HTML with www/py-html5lib and www/py-beautifulsoup OPENPYXL_DESC= Read/write MS Excel 2007+ with textproc/py-openpyxl XLRD_DESC= Read MS Excel with textproc/py-xlrd XLWT_DESC= Write MS Excel with textproc/py-xlwt +XLSX_DESC= Write MS Excel with textproc/py-xlsxwriter ACCEL_DESC= Computation Acceleration Add-ons STORAGE_DESC= Data Storage Add-ons -HTML_DESC= HTML Parsing Add-ons +HTML_DESC= HTML Parsing/Generation Add-ons EXCEL_DESC= MS Excel I/O Add-ons MPL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib @@ -66,13 +70,20 @@ BTLNCK_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bottleneck>0:math/py-bottleneck NUMEXPR_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numexpr>=2.1.0:math/py-numexpr BOTO_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boto>0:devel/py-boto TABLES_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tables>=3.0.0:devel/py-tables +# Note: upstream recommends SQLAlchemy 0.8.1 or higher, which is not +# available in the ports tree as of this writing +# See: https://reviews.freebsd.org/D908 +# See: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191442 +# See: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205852 SQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy>0:databases/py-sqlalchemy LXML_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lxml HTML5LIB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}html5lib>0:www/py-html5lib -OPENPYXL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}openpyxl>=2.0.0:textproc/py-openpyxl +JINJA2_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2 +OPENPYXL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}openpyxl>=2.2.0:textproc/py-openpyxl XLRD_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xlrd>0:textproc/py-xlrd XLWT_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xlwt>0:textproc/py-xlwt +XLSX_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}XlsxWriter>0:textproc/py-xlsxwriter .include <bsd.port.options.mk> diff --git a/math/py-pandas/distinfo b/math/py-pandas/distinfo index d81892381666..85339d6b984f 100644 --- a/math/py-pandas/distinfo +++ b/math/py-pandas/distinfo @@ -1,2 +1,3 @@ -SHA256 (pandas-0.17.0.tar.gz) = 320d4fdf734b82adebc8fde9d8ca4b05fe155a72b6f7aa95d76242da8748d6a4 -SIZE (pandas-0.17.0.tar.gz) = 6508621 +TIMESTAMP = 1463318239 +SHA256 (pandas-0.18.1.tar.gz) = d2e483692c7915916dffd1b83256ea9761b4224c8d45646ceddf48b977ee77b2 +SIZE (pandas-0.18.1.tar.gz) = 7283184 |