summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-05-16 15:57:12 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-05-16 16:25:52 +0200
commit45ffc81e7af8eef48deabc8c72f74366ebc763e5 (patch)
treeea7f574d88e7bd9464b6623e2c780b19551ac8c4 /sci-biology
parentsys-libs/libselinux: fix ruby dep on swig (diff)
downloadgentoo-45ffc81e7af8eef48deabc8c72f74366ebc763e5.tar.gz
gentoo-45ffc81e7af8eef48deabc8c72f74366ebc763e5.tar.bz2
gentoo-45ffc81e7af8eef48deabc8c72f74366ebc763e5.zip
sci-biology/biopandas: Drop old
Package-Manager: Portage-2.3.36, Repoman-2.3.9
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/biopandas/Manifest1
-rw-r--r--sci-biology/biopandas/biopandas-0.1.4.ebuild42
2 files changed, 0 insertions, 43 deletions
diff --git a/sci-biology/biopandas/Manifest b/sci-biology/biopandas/Manifest
index 1be8736c378d..edc8d21dfb49 100644
--- a/sci-biology/biopandas/Manifest
+++ b/sci-biology/biopandas/Manifest
@@ -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
diff --git a/sci-biology/biopandas/biopandas-0.1.4.ebuild b/sci-biology/biopandas/biopandas-0.1.4.ebuild
deleted file mode 100644
index 4a1008eda8a8..000000000000
--- a/sci-biology/biopandas/biopandas-0.1.4.ebuild
+++ /dev/null
@@ -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
-}