From owner-svn-ports-all@FreeBSD.ORG Fri Nov 22 12:54:57 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C78C355; Fri, 22 Nov 2013 12:54:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 53C2A22DA; Fri, 22 Nov 2013 12:54:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAMCsv8C084057; Fri, 22 Nov 2013 12:54:57 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAMCsudb084055; Fri, 22 Nov 2013 12:54:56 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201311221254.rAMCsudb084055@svn.freebsd.org> From: William Grzybowski Date: Fri, 22 Nov 2013 12:54:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334585 - in head/math/py-pandas: . files 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.16 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: Fri, 22 Nov 2013 12:54:57 -0000 Author: wg Date: Fri Nov 22 12:54:56 2013 New Revision: 334585 URL: http://svnweb.freebsd.org/changeset/ports/334585 Log: math/py-pandas: stagify and add a run dependency PR: ports/184096 Submitted by: maintainer Deleted: head/math/py-pandas/pkg-plist Modified: head/math/py-pandas/Makefile head/math/py-pandas/files/pkg-message.in Modified: head/math/py-pandas/Makefile ============================================================================== --- head/math/py-pandas/Makefile Fri Nov 22 12:54:48 2013 (r334584) +++ head/math/py-pandas/Makefile Fri Nov 22 12:54:56 2013 (r334585) @@ -2,7 +2,7 @@ PORTNAME= pandas PORTVERSION= 0.12.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -24,6 +24,7 @@ TEST_DEPENDS= nosetests:${PORTSDIR}/deve ${PYTHON_PKGNAMEPREFIX}matplotlib>0:${PORTSDIR}/math/py-matplotlib \ ${PYTHON_PKGNAMEPREFIX}xlrd>0:${PORTSDIR}/textproc/py-xlrd \ ${PYTHON_PKGNAMEPREFIX}xlwt>0:${PORTSDIR}/textproc/py-xlwt \ + ${PYTHON_PKGNAMEPREFIX}openpyxl>0:${PORTSDIR}/textproc/py-openpyxl \ ${PYTHON_PKGNAMEPREFIX}beautifulsoup>0:${PORTSDIR}/www/py-beautifulsoup \ ${PYTHON_PKGNAMEPREFIX}html5lib>0:${PORTSDIR}/www/py-html5lib \ ${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml @@ -32,6 +33,7 @@ SUB_FILES= pkg-message USE_PYTHON= yes USE_PYDISTUTILS= easy_install +PYDISTUTILS_AUTOPLIST= yes PYEASYINSTALL_ARCHDEP= yes # Uncomment the following line to enable regression-test @@ -44,8 +46,4 @@ regression-test: build ${PYTHON_CMD} ${PYSETUP} nosetests \ ) -NO_STAGE= yes -post-install: - @${CAT} ${PKGMESSAGE} - .include Modified: head/math/py-pandas/files/pkg-message.in ============================================================================== --- head/math/py-pandas/files/pkg-message.in Fri Nov 22 12:54:48 2013 (r334584) +++ head/math/py-pandas/files/pkg-message.in Fri Nov 22 12:54:56 2013 (r334585) @@ -8,6 +8,7 @@ pytables devel/py-tables matplotlib math/py-matplotlib xlrd textproc/py-xlrd xlwt textproc/py-xlwt +openpyxl textproc/py-openpyxl To use the HTML table parsing capabilities that are new to 0.12.0, you will need to install @@ -27,5 +28,4 @@ Also recommended, but not yet available bottleneck http://berkeleyanalytics.com/bottleneck/ scikits.statsmodels http://statsmodels.sourceforge.net/ -openpyxl http://bitbucket.org/ericgazoni/openpyxl/wiki/Home ===