summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-05-20 09:33:37 +0200
committerMichał Górny <mgorny@gentoo.org>2023-05-20 09:33:37 +0200
commit019293221ea16834a72741d5a1de41236d415138 (patch)
treee82fd1a391b4e3bce5101424db3d72d4288a633e /sci-biology
parentnet-misc/ytmdl: Remove old (diff)
downloadgentoo-019293221ea16834a72741d5a1de41236d415138.tar.gz
gentoo-019293221ea16834a72741d5a1de41236d415138.tar.bz2
gentoo-019293221ea16834a72741d5a1de41236d415138.zip
sci-biology/biopandas: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/biopandas/Manifest1
-rw-r--r--sci-biology/biopandas/biopandas-0.2.7.ebuild40
2 files changed, 0 insertions, 41 deletions
diff --git a/sci-biology/biopandas/Manifest b/sci-biology/biopandas/Manifest
index 336fb1afefa4..1a153471c26b 100644
--- a/sci-biology/biopandas/Manifest
+++ b/sci-biology/biopandas/Manifest
@@ -1,2 +1 @@
-DIST biopandas-0.2.7.tar.gz 255846 BLAKE2B b8c6a66f51a00266bc1a271ecfe00b4cfddd24b9766e63e2ad4187048ddd8f985d70eb8083b1be3887a0fd9b666c97553029ecd90c7b73ae882e5347bbc54d2e SHA512 cf4f12601b7f63ca3d5e9a17c6628e4975968f722c9db72e32c00e80ec335c5bf6a928a5f887b16ecd316c49b298d77634cbe1c4ef1ca505379b1de5335e2569
DIST biopandas-0.4.1.gh.tar.gz 5330292 BLAKE2B 78b783ed77bbd8e6efd115a108f99c502fd71ef4c231746575599828699dac1de85125273df1af74d0bd51e092751113474ef2baf312a184e23b3057cd21222a SHA512 e08694fad927a5ac096b2cd78f641a2af262ebfc7351fc4dc37e5df39e98a6e984ccab26718109f18eed988a4a4af5b29d19c5cf3e8e2d794246b1410a9b5440
diff --git a/sci-biology/biopandas/biopandas-0.2.7.ebuild b/sci-biology/biopandas/biopandas-0.2.7.ebuild
deleted file mode 100644
index 7458dbcb1cb9..000000000000
--- a/sci-biology/biopandas/biopandas-0.2.7.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..10} )
-
-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"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/pandas[${PYTHON_USEDEP}]
- dev-python/scipy[${PYTHON_USEDEP}]"
-
-distutils_enable_tests nose
-
-python_test() {
- "${EPYTHON}" --version || die
- "${EPYTHON}" -c "import numpy; print('numpy %s' % numpy.__version__)" || die
- "${EPYTHON}" -c "import scipy; print('scipy %s' % scipy.__version__)" || die
- "${EPYTHON}" -c "import pandas; print('pandas %s' % pandas.__version__)" || die
-
- nosetests -s --verbose ${PN} || die
-}