summaryrefslogtreecommitdiff
path: root/dev-python/pygpu/pygpu-0.6.7.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [feature/flatten] <gitlab@liguros.net>2020-09-18 00:26:14 +0000
committerLiguros - Gitlab CI/CD [feature/flatten] <gitlab@liguros.net>2020-09-18 00:26:14 +0000
commit7ab4e247dcd5b243dda50c7cc3a300a71cae58a7 (patch)
tree954de8e960087ad99d497c376c188245616f0996 /dev-python/pygpu/pygpu-0.6.7.ebuild
parentf9bde51be7fdfd43896d4fd6374ed58415085903 (diff)
downloadbaldeagleos-repo-7ab4e247dcd5b243dda50c7cc3a300a71cae58a7.tar.gz
baldeagleos-repo-7ab4e247dcd5b243dda50c7cc3a300a71cae58a7.tar.xz
baldeagleos-repo-7ab4e247dcd5b243dda50c7cc3a300a71cae58a7.zip
Updating liguros repo
Diffstat (limited to 'dev-python/pygpu/pygpu-0.6.7.ebuild')
-rw-r--r--dev-python/pygpu/pygpu-0.6.7.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/dev-python/pygpu/pygpu-0.6.7.ebuild b/dev-python/pygpu/pygpu-0.6.7.ebuild
deleted file mode 100644
index 99417a5cac6e..000000000000
--- a/dev-python/pygpu/pygpu-0.6.7.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{5,6,7,8,9} )
-
-inherit distutils-r1
-
-MYPV=${PV/_/-}
-
-DESCRIPTION="Python bindings to libgpuarray"
-HOMEPAGE="https://deeplearning.net/software/libgpuarray/"
-SRC_URI="https://github.com/Theano/libgpuarray/archive/v${MYPV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="cuda opencl test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-python/mako[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
- dev-libs/libgpuarray:=[cuda?,opencl?]
-"
-DEPEND="${RDEPEND}
- dev-python/cython[${PYTHON_USEDEP}]
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-
-S="${WORKDIR}/libgpuarray-${MYPV}"
-
-python_test() {
- local DEVICE=cuda
- use opencl && DEVICE=opencl
- nosetests -svw "${BUILD_DIR}/lib/" || die
-}