sci-biology/biopandas: Drop old

Package-Manager: Portage-2.3.36, Repoman-2.3.9
This commit is contained in:
Andreas Sturmlechner
2018-05-16 15:57:12 +02:00
parent b036ba859f
commit 45ffc81e7a
2 changed files with 0 additions and 43 deletions

View File

@@ -1,2 +1 @@
DIST biopandas-0.1.4.tar.gz 5386 BLAKE2B 0ee7f9ddc9d6c51466ad601e0144ef4f073d7e4dd41be804ff9a0f1cd9e00f0b0dffb240985a92bfa948588521e8a17c68e498ec2b824421fc73754d17cb2722 SHA512 efd7ec94bbcc069d8bf0d160480e7ef2c7c0f9febe21a684b46b6b14c69cebb0b3d9f2c315897be6b0ae888ed40731e2f5a16dee45b9c932b05c2c0209b62b84
DIST biopandas-0.2.1.tar.gz 209379 BLAKE2B 839a6f569f12b95c9b1c75dc755d009c77d7ef8224e517aed5026ffa6c33bd3826fe3862fec03469e967005a500600782fc372951d61358e2fe3bb56af734228 SHA512 0ea7aec84251d8d6ec4736c4968228133bd8622afb17d6916287168cb9f9757c5a97a4d5a52ac0e2f30027bf0edf9d76413db142f70d606f1359b8a4e06de7c8

View File

@@ -1,42 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 python3_{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.org/project/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="${RDEPEND}
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
}