From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 91F221384B4 for ; Tue, 24 Nov 2015 12:10:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1385F21C02B; Tue, 24 Nov 2015 12:10:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 165D621C05C for ; Tue, 24 Nov 2015 12:10:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0250A3406F3 for ; Tue, 24 Nov 2015 12:10:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1846FFB for ; Tue, 24 Nov 2015 12:10:24 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1448367017.bc99ac146dd8201046b387ff79ac15c949db75cb.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/biopandas/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/biopandas/Manifest sci-biology/biopandas/biopandas-0.1.4.ebuild sci-biology/biopandas/metadata.xml X-VCS-Directories: sci-biology/biopandas/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: bc99ac146dd8201046b387ff79ac15c949db75cb X-VCS-Branch: master Date: Tue, 24 Nov 2015 12:10:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e32f4486-0641-46bf-861c-dfacb9a0438b X-Archives-Hash: ebb0639a59c25d191cd64fffcc33bab1 commit: bc99ac146dd8201046b387ff79ac15c949db75cb Author: Justin Lecher gentoo org> AuthorDate: Tue Nov 24 09:05:56 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue Nov 24 12:10:17 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc99ac14 sci-biology/biopandas: New package, ebuild written by me Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher gentoo.org> sci-biology/biopandas/Manifest | 1 + sci-biology/biopandas/biopandas-0.1.4.ebuild | 43 ++++++++++++++++++++++++++++ sci-biology/biopandas/metadata.xml | 12 ++++++++ 3 files changed, 56 insertions(+) diff --git a/sci-biology/biopandas/Manifest b/sci-biology/biopandas/Manifest new file mode 100644 index 0000000..30cee43 --- /dev/null +++ b/sci-biology/biopandas/Manifest @@ -0,0 +1 @@ +DIST biopandas-0.1.4.tar.gz 5386 SHA256 0cc9e43e2ddcb0c33448660ee2ed2db02694e57daa1875d004525c40633a6d95 SHA512 efd7ec94bbcc069d8bf0d160480e7ef2c7c0f9febe21a684b46b6b14c69cebb0b3d9f2c315897be6b0ae888ed40731e2f5a16dee45b9c932b05c2c0209b62b84 WHIRLPOOL 1429e59bbb1b29ba116864e577d4be2f1b988e3a82b07c65525eae825b2a742b52da86ed49c837ba461814abf79f2e70d0ea43ee7d4f7906d6a38b39f0ad98f4 diff --git a/sci-biology/biopandas/biopandas-0.1.4.ebuild b/sci-biology/biopandas/biopandas-0.1.4.ebuild new file mode 100644 index 0000000..76ac9d7 --- /dev/null +++ b/sci-biology/biopandas/biopandas-0.1.4.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) + +inherit distutils-r1 + +MY_PN="BioPandas" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Molecular Structures in Pandas DataFrames" +HOMEPAGE=" + https://rasbt.github.io/biopandas/ + https://github.com/rasbt/biopandas + https://pypi.python.org/pypi/BioPandas" +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/pandas[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] +" +DEPEND="${REDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + )" + +python_test() { + "${EPYTHON}" --version + "${EPYTHON}" -c "import numpy; print('numpy %s' % numpy.__version__)" + "${EPYTHON}" -c "import scipy; print('scipy %s' % scipy.__version__)" + "${EPYTHON}" -c "import pandas; print('pandas %s' % pandas.__version__)" + nosetests -s --verbose ${PN} || die +} diff --git a/sci-biology/biopandas/metadata.xml b/sci-biology/biopandas/metadata.xml new file mode 100644 index 0000000..a58f7c5 --- /dev/null +++ b/sci-biology/biopandas/metadata.xml @@ -0,0 +1,12 @@ + + + + sci-biology + + BioPandas + + mail@sebastianraschka.com + Sebastian Raschka + + +