Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/biopandas/
Date: Sun, 04 Jun 2017 11:49:55
Message-Id: 1496576990.9c18cfcc691ee1f1709848c89d8ce5e658a9e4da.jlec@gentoo
1 commit: 9c18cfcc691ee1f1709848c89d8ce5e658a9e4da
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 4 07:40:50 2017 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 4 11:49:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c18cfcc
7
8 sci-biology/biopandas: Version Bump
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 sci-biology/biopandas/Manifest | 1 +
14 sci-biology/biopandas/biopandas-0.2.1.ebuild | 42 ++++++++++++++++++++++++++++
15 2 files changed, 43 insertions(+)
16
17 diff --git a/sci-biology/biopandas/Manifest b/sci-biology/biopandas/Manifest
18 index 30cee430871..df72c383575 100644
19 --- a/sci-biology/biopandas/Manifest
20 +++ b/sci-biology/biopandas/Manifest
21 @@ -1 +1,2 @@
22 DIST biopandas-0.1.4.tar.gz 5386 SHA256 0cc9e43e2ddcb0c33448660ee2ed2db02694e57daa1875d004525c40633a6d95 SHA512 efd7ec94bbcc069d8bf0d160480e7ef2c7c0f9febe21a684b46b6b14c69cebb0b3d9f2c315897be6b0ae888ed40731e2f5a16dee45b9c932b05c2c0209b62b84 WHIRLPOOL 1429e59bbb1b29ba116864e577d4be2f1b988e3a82b07c65525eae825b2a742b52da86ed49c837ba461814abf79f2e70d0ea43ee7d4f7906d6a38b39f0ad98f4
23 +DIST biopandas-0.2.1.tar.gz 209379 SHA256 8952e1177d09b920b24d71e2a83ee76cbbd08055dd2672a366f03cc4fa9678c8 SHA512 0ea7aec84251d8d6ec4736c4968228133bd8622afb17d6916287168cb9f9757c5a97a4d5a52ac0e2f30027bf0edf9d76413db142f70d606f1359b8a4e06de7c8 WHIRLPOOL 9f3d088fde230cbc8c9efc25e06430ab8ea87a7050bcbb26bba1b3bb2ef2a300d7f9ebd77490652423a93b517f604156af6f11bde1702b7187c849b171f030f6
24
25 diff --git a/sci-biology/biopandas/biopandas-0.2.1.ebuild b/sci-biology/biopandas/biopandas-0.2.1.ebuild
26 new file mode 100644
27 index 00000000000..5243039d53b
28 --- /dev/null
29 +++ b/sci-biology/biopandas/biopandas-0.2.1.ebuild
30 @@ -0,0 +1,42 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
37 +
38 +inherit distutils-r1
39 +
40 +MY_PN="BioPandas"
41 +MY_P="${MY_PN}-${PV}"
42 +
43 +DESCRIPTION="Molecular Structures in Pandas DataFrames"
44 +HOMEPAGE="
45 + https://rasbt.github.io/biopandas/
46 + https://github.com/rasbt/biopandas
47 + https://pypi.python.org/pypi/BioPandas"
48 +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${P}.tar.gz"
49 +
50 +LICENSE="BSD"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
53 +IUSE="test"
54 +
55 +RDEPEND="
56 + dev-python/numpy[${PYTHON_USEDEP}]
57 + dev-python/pandas[${PYTHON_USEDEP}]
58 + sci-libs/scipy[${PYTHON_USEDEP}]
59 +"
60 +DEPEND="${RDEPEND}
61 + dev-python/setuptools[${PYTHON_USEDEP}]
62 + test? (
63 + dev-python/nose[${PYTHON_USEDEP}]
64 + )"
65 +
66 +python_test() {
67 + "${EPYTHON}" --version
68 + "${EPYTHON}" -c "import numpy; print('numpy %s' % numpy.__version__)"
69 + "${EPYTHON}" -c "import scipy; print('scipy %s' % scipy.__version__)"
70 + "${EPYTHON}" -c "import pandas; print('pandas %s' % pandas.__version__)"
71 + nosetests -s --verbose ${PN} || die
72 +}