From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1R8NdB-00046B-V2 for garchives@archives.gentoo.org; Tue, 27 Sep 2011 02:42:50 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98F0421C070; Tue, 27 Sep 2011 02:42:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 65A6121C070 for ; Tue, 27 Sep 2011 02:42:37 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B37661B4008 for ; Tue, 27 Sep 2011 02:42:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1130F80042 for ; Tue, 27 Sep 2011 02:42:36 +0000 (UTC) From: "Tim Cera" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Cera" Message-ID: <3c228ac66d916be537ecc2e8b3174ce58ffa204c.timcera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/pandas/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/pandas/ChangeLog dev-python/pandas/metadata.xml dev-python/pandas/pandas-0.4.1.ebuild X-VCS-Directories: dev-python/pandas/ X-VCS-Committer: timcera X-VCS-Committer-Name: Tim Cera X-VCS-Revision: 3c228ac66d916be537ecc2e8b3174ce58ffa204c Date: Tue, 27 Sep 2011 02:42:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: a797b02f4994d15df18782aeeec89254 commit: 3c228ac66d916be537ecc2e8b3174ce58ffa204c Author: timcera earthlink net> AuthorDate: Tue Sep 27 02:31:15 2011 +0000 Commit: Tim Cera earthlink net> CommitDate: Tue Sep 27 02:31:15 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3D3c228ac6 dev-python/pandas: Initial ebuild. Pandas is a data analysis toolkit. Bug report page is https://bugs.gentoo.org/show_bug.cgi?id=3D384583 --- dev-python/pandas/ChangeLog | 10 +++++++ dev-python/pandas/metadata.xml | 6 ++++ dev-python/pandas/pandas-0.4.1.ebuild | 43 +++++++++++++++++++++++++++= ++++++ 3 files changed, 59 insertions(+), 0 deletions(-) diff --git a/dev-python/pandas/ChangeLog b/dev-python/pandas/ChangeLog new file mode 100644 index 0000000..669e1f0 --- /dev/null +++ b/dev-python/pandas/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/pandas +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*pandas-0.4.1 (27 Sep 2011) + + 27 Sep 2011; Tim Cera +pandas-0.4.1.ebuild, + +metadata.xml: + Initial ebuild. + diff --git a/dev-python/pandas/metadata.xml b/dev-python/pandas/metadata.= xml new file mode 100644 index 0000000..0923903 --- /dev/null +++ b/dev-python/pandas/metadata.xml @@ -0,0 +1,6 @@ + + + + no-herd + + diff --git a/dev-python/pandas/pandas-0.4.1.ebuild b/dev-python/pandas/pa= ndas-0.4.1.ebuild new file mode 100644 index 0000000..26a16db --- /dev/null +++ b/dev-python/pandas/pandas-0.4.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ +# Ebuild generated by g-pypi 0.1 + +EAPI=3D"3" +SUPPORT_PYTHON_ABIS=3D"1" +DISTUTILS_SRC_TEST=3D"setup.py" +PYTHON_DEPEND=3D"2:2.5:2.7" + +inherit python distutils + +DESCRIPTION=3D"Powerful data structures for data analysis and statistics= " +HOMEPAGE=3D"http://pandas.sourceforge.net" +SRC_URI=3D"mirror://pypi/packages/source/p/${PN}/${P}.tar.gz" + +LICENSE=3D"BSD" +KEYWORDS=3D"~amd64" +SLOT=3D"0" +IUSE=3D"doc examples" + +DEPEND=3D"dev-python/setuptools + >=3Ddev-python/numpy-1.4.0 + >=3Ddev-python/python-dateutil-1.5 + sci-libs/scipy + sci-libs/scikits_statsmodels + dev-python/pytables + dev-python/pytz + dev-python/matplotlib" +RDEPEND=3D"${DEPEND}" + +RESTRICT_PYTHON_ABIS=3D"2.4 3.*" + +src_install() { + distutils_src_install + if use doc; then + dodoc -r doc + fi + if use examples; then + insinto /usr/share/doc/"${PF}"/ + doins -r examples + fi +}