summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-01-05 10:53:32 +0100
committerMichał Górny <mgorny@gentoo.org>2018-01-05 14:25:42 +0100
commitcca16920cac49c1617d84bf5d2236f685e3f2556 (patch)
tree22c2994b1674c1c9fd6aa0cb29e80db9b14e55a0 /dev-python/numba
parentdev-python/node-semver: Clean old up (diff)
downloadgentoo-cca16920cac49c1617d84bf5d2236f685e3f2556.tar.gz
gentoo-cca16920cac49c1617d84bf5d2236f685e3f2556.tar.bz2
gentoo-cca16920cac49c1617d84bf5d2236f685e3f2556.zip
dev-python/numba: Clean old up
Diffstat (limited to 'dev-python/numba')
-rw-r--r--dev-python/numba/Manifest1
-rw-r--r--dev-python/numba/numba-0.34.0.ebuild43
2 files changed, 0 insertions, 44 deletions
diff --git a/dev-python/numba/Manifest b/dev-python/numba/Manifest
index fd346567d6b6..cb75c8b78056 100644
--- a/dev-python/numba/Manifest
+++ b/dev-python/numba/Manifest
@@ -1,3 +1,2 @@
DIST numba-0.27.0.tar.gz 1247144 BLAKE2B 42de6e0f7865efb597ed1dd3680eafc66906d5d9cc7a8b583847cdd12a936174af976933de5aa02859c2025b86f51da3d0148f89ecd35287caadd8da8fa8bb53 SHA512 3c84fa58bc5e84683b5e593b99f8c48cfc6e9fd0f41a2a18d8a4d9deba618cec1e764a0202bb71166cbeebf27b908044be29e3b183b01f31edc8e85c962df876
-DIST numba-0.34.0.tar.gz 1603388 BLAKE2B 14d1647502e945dd86e61f9ba6725bc89c8321df3588e7d9f42eead39404f8b3dd1e04295f26c9d829c4872876a50130b9973d714cfecf4ae067cee8e8c6a415 SHA512 270bc9b2ea86e96285bd4075a216a31c3654b782e5e7fb26824ed0e57283a48f753542dab54995c14c0c7c303d8794659a1155eba1deb121c670fc4edde0f3aa
DIST numba-0.35.0.tar.gz 1647189 BLAKE2B f0dfd6fe03e1a60b4d19f0f4d1b158d418686376f4317b7f4b5fa0734b35b6ce670661705f92994910a8b47bbd0689dca652f36cea1a2f9d5afa419ae1c8b5fd SHA512 48ee1e33e7ec1327a78c3485602e911f045df8b8dbb69da3004133e6da8cbb52388712b4aeffa1e41b83d20aaa88cc8c1202ef35aabbf3e0e04ad2875df789f0
diff --git a/dev-python/numba/numba-0.34.0.ebuild b/dev-python/numba/numba-0.34.0.ebuild
deleted file mode 100644
index 40122f0ca614..000000000000
--- a/dev-python/numba/numba-0.34.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-
-inherit distutils-r1
-
-DESCRIPTION="NumPy aware dynamic Python compiler using LLVM"
-HOMEPAGE="http://numba.pydata.org/"
-SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="examples test"
-
-RDEPEND="
- >=dev-python/llvmlite-0.19[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
- virtual/python-enum34[${PYTHON_USEDEP}]
- virtual/python-funcsigs[${PYTHON_USEDEP}]
- virtual/python-singledispatch[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( dev-python/pytest[${PYTHON_USEDEP}] )
-"
-
-python_test() {
- cd "${BUILD_DIR}"/lib* || die
- ${PYTHON} -c "import numba; numba.test()" || die
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r examples
- docompress -x /usr/share/doc/${PF}/examples
- fi
-}