From owner-svn-ports-all@freebsd.org Sun May 15 19:56:52 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5ACF4B3CCA5; Sun, 15 May 2016 19:56:52 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D8701B2E; Sun, 15 May 2016 19:56:52 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4FJupFG066241; Sun, 15 May 2016 19:56:51 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4FJupeQ066239; Sun, 15 May 2016 19:56:51 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201605151956.u4FJupeQ066239@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 15 May 2016 19:56:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415282 - head/math/py-pandas 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.22 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, 15 May 2016 19:56:52 -0000 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 (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 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