From: David Seifert Date: Sun, 29 Dec 2019 13:06:16 +0000 (+0100) Subject: dev-python/pygpu: Remove old X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8d68828f49c27e3be361893c14dafce22aeb350b;p=gentoo.git dev-python/pygpu: Remove old Package-Manager: Portage-2.3.83, Repoman-2.3.20 Signed-off-by: David Seifert --- 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 -}