summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2019-12-29 14:06:16 +0100
committerDavid Seifert <soap@gentoo.org>2019-12-29 14:06:16 +0100
commit8d68828f49c27e3be361893c14dafce22aeb350b (patch)
treef62653a31f7c5152e5aaaac71d6ca82ecad7dafd /dev-python/pygpu
parentdev-python/pycuda: Remove old (diff)
downloadgentoo-8d68828f49c27e3be361893c14dafce22aeb350b.tar.gz
gentoo-8d68828f49c27e3be361893c14dafce22aeb350b.tar.bz2
gentoo-8d68828f49c27e3be361893c14dafce22aeb350b.zip
dev-python/pygpu: Remove old
Package-Manager: Portage-2.3.83, Repoman-2.3.20 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/pygpu')
-rw-r--r--dev-python/pygpu/Manifest1
-rw-r--r--dev-python/pygpu/pygpu-0.6.0.ebuild39
2 files changed, 0 insertions, 40 deletions
diff --git a/dev-python/pygpu/Manifest b/dev-python/pygpu/Manifest
index cbf2f119db4d..95554ae2bb41 100644
--- a/dev-python/pygpu/Manifest
+++ b/dev-python/pygpu/Manifest
@@ -1,2 +1 @@
-DIST pygpu-0.6.0.tar.gz 232281 BLAKE2B 73c4fd5598edc3b81296aea7acd24fa48d0302f54a0050de8bc5539a5150dcc4be052dbf8d0c1d822f79a8529ba47d60d51c3216ad774b5954915cab4c65b5c8 SHA512 ef2b37d7752d7b19e6034ca1992dfa0c82806bae7a15ce54aad785f5abbe06e57a77b804699c55b3b7dc94496afb22acaf3a43cfc15148c150f2c93085c23080
DIST pygpu-0.6.7.tar.gz 256440 BLAKE2B cc0880259c368c02fe0fca1a7f9424ad78f057540426d28179ee2cb20a2559853566c9ebb7de3488d5fdf0fa0eefb4e9f16db198cda2727370d567fd16363480 SHA512 39cdb67ec12d0f939d7a3ebef9726c40e64387413200addbeaf205db4151d09efd90118fec4a71b9d1f81fdde9b52e37d2d97763bf2cc9efa1667c5b9ff716b2
diff --git a/dev-python/pygpu/pygpu-0.6.0.ebuild b/dev-python/pygpu/pygpu-0.6.0.ebuild
deleted file mode 100644
index ea67d225297f..000000000000
--- a/dev-python/pygpu/pygpu-0.6.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_5 )
-
-inherit distutils-r1
-
-MYPV=${PV/_/-}
-
-DESCRIPTION="Python bindings to libgpuarray"
-HOMEPAGE="http://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
-}