svn commit: r415282 - head/math/py-pandas

Kurt Jaeger pi at FreeBSD.org
Sun May 15 19:56:52 UTC 2016


Author: pi
Date: Sun May 15 19:56:51 2016
New Revision: 415282
URL: https://svnweb.freebsd.org/changeset/ports/415282

Log:
  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 at saltant.com> (maintainer)

Modified:
  head/math/py-pandas/Makefile
  head/math/py-pandas/distinfo

Modified: head/math/py-pandas/Makefile
==============================================================================
--- head/math/py-pandas/Makefile	Sun May 15 19:31:24 2016	(r415281)
+++ head/math/py-pandas/Makefile	Sun May 15 19:56:51 2016	(r415282)
@@ -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
 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_PKGNAMEPREF
 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>
 

Modified: head/math/py-pandas/distinfo
==============================================================================
--- head/math/py-pandas/distinfo	Sun May 15 19:31:24 2016	(r415281)
+++ head/math/py-pandas/distinfo	Sun May 15 19:56:51 2016	(r415282)
@@ -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


More information about the svn-ports-head mailing list