summaryrefslogtreecommitdiff
path: root/sci-biology
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-05-17 22:49:47 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-05-17 22:49:47 +0100
commit30c53e395853f5bfe805a1e429fcf26666eed8f8 (patch)
treea0670eaf9babda7b83503f7d36806a944bb49752 /sci-biology
parentd302a5d7fc9caafba5c8a404f2891bb6ccdec311 (diff)
gentoo resync : 17.05.2018
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/Manifest.gzbin25297 -> 25302 bytes
-rw-r--r--sci-biology/biopandas/Manifest2
-rw-r--r--sci-biology/biopandas/biopandas-0.1.4.ebuild42
3 files changed, 0 insertions, 44 deletions
diff --git a/sci-biology/Manifest.gz b/sci-biology/Manifest.gz
index d635f9c6b005..611e8b339045 100644
--- a/sci-biology/Manifest.gz
+++ b/sci-biology/Manifest.gz
Binary files differ
diff --git a/sci-biology/biopandas/Manifest b/sci-biology/biopandas/Manifest
index da5391211d4c..7e79ddd4d104 100644
--- a/sci-biology/biopandas/Manifest
+++ b/sci-biology/biopandas/Manifest
@@ -1,5 +1,3 @@
-DIST biopandas-0.1.4.tar.gz 5386 BLAKE2B 0ee7f9ddc9d6c51466ad601e0144ef4f073d7e4dd41be804ff9a0f1cd9e00f0b0dffb240985a92bfa948588521e8a17c68e498ec2b824421fc73754d17cb2722 SHA512 efd7ec94bbcc069d8bf0d160480e7ef2c7c0f9febe21a684b46b6b14c69cebb0b3d9f2c315897be6b0ae888ed40731e2f5a16dee45b9c932b05c2c0209b62b84
DIST biopandas-0.2.1.tar.gz 209379 BLAKE2B 839a6f569f12b95c9b1c75dc755d009c77d7ef8224e517aed5026ffa6c33bd3826fe3862fec03469e967005a500600782fc372951d61358e2fe3bb56af734228 SHA512 0ea7aec84251d8d6ec4736c4968228133bd8622afb17d6916287168cb9f9757c5a97a4d5a52ac0e2f30027bf0edf9d76413db142f70d606f1359b8a4e06de7c8
-EBUILD biopandas-0.1.4.ebuild 1064 BLAKE2B a7bc5d9755446107447ec155c655d0a00009e55e5be6394cabcc3bd29e8928ee7ac55ae612ea68875eab72011ecceecf08f9438d2b451ea8818eb7374f630dbe SHA512 8698dc5efc114fb5645200272d154ae4d938f7fc69daca042e0420d08ee76f151e66178bf8e42944dbd8e1a1028e38dc710258368b5a9ab3b52c75a4703431cb
EBUILD biopandas-0.2.1.ebuild 1066 BLAKE2B 6e435b3e5cec6751551eacfaf351df69b16dfd43b4e4173aed3a7dfea3740dd7e395b4d78092267a43a38d6e4b5ccee0d5e4f688174125b6a8498f594ab3bbf7 SHA512 7226499bd7d132150b6c2caeb7fcbdda3ff8d2fd47755d535834584c6d3aa426b65d30a87d7265f638be9019b0fbf0f5f73e9dd3495c468c6a79624a1e908916
MISC metadata.xml 536 BLAKE2B e3cb776d0332fff486a7e1ea1353c54694ff687d4685bbb51728db0ed2025bb3d09d39cf7c9ea9f11546cbf9c4727661348e2f5fdfc13ffac2329ef6dfbe7450 SHA512 502803e30ecfac53516b56501a7bffeb49c3c0bc44ce5b3dd87aac5c745de614c235523ba3be374fcbede1a9a7bcf11c328abb27d82e087b275303f38b80b166
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
-}