Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pygpu/
Date: Sun, 29 Dec 2019 13:06:42
Message-Id: 1577624776.8d68828f49c27e3be361893c14dafce22aeb350b.soap@gentoo
1 commit: 8d68828f49c27e3be361893c14dafce22aeb350b
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 29 13:06:16 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 29 13:06:16 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d68828f
7
8 dev-python/pygpu: Remove old
9
10 Package-Manager: Portage-2.3.83, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-python/pygpu/Manifest | 1 -
14 dev-python/pygpu/pygpu-0.6.0.ebuild | 39 -------------------------------------
15 2 files changed, 40 deletions(-)
16
17 diff --git a/dev-python/pygpu/Manifest b/dev-python/pygpu/Manifest
18 index cbf2f119db4..95554ae2bb4 100644
19 --- a/dev-python/pygpu/Manifest
20 +++ b/dev-python/pygpu/Manifest
21 @@ -1,2 +1 @@
22 -DIST pygpu-0.6.0.tar.gz 232281 BLAKE2B 73c4fd5598edc3b81296aea7acd24fa48d0302f54a0050de8bc5539a5150dcc4be052dbf8d0c1d822f79a8529ba47d60d51c3216ad774b5954915cab4c65b5c8 SHA512 ef2b37d7752d7b19e6034ca1992dfa0c82806bae7a15ce54aad785f5abbe06e57a77b804699c55b3b7dc94496afb22acaf3a43cfc15148c150f2c93085c23080
23 DIST pygpu-0.6.7.tar.gz 256440 BLAKE2B cc0880259c368c02fe0fca1a7f9424ad78f057540426d28179ee2cb20a2559853566c9ebb7de3488d5fdf0fa0eefb4e9f16db198cda2727370d567fd16363480 SHA512 39cdb67ec12d0f939d7a3ebef9726c40e64387413200addbeaf205db4151d09efd90118fec4a71b9d1f81fdde9b52e37d2d97763bf2cc9efa1667c5b9ff716b2
24
25 diff --git a/dev-python/pygpu/pygpu-0.6.0.ebuild b/dev-python/pygpu/pygpu-0.6.0.ebuild
26 deleted file mode 100644
27 index ea67d225297..00000000000
28 --- a/dev-python/pygpu/pygpu-0.6.0.ebuild
29 +++ /dev/null
30 @@ -1,39 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python3_5 )
37 -
38 -inherit distutils-r1
39 -
40 -MYPV=${PV/_/-}
41 -
42 -DESCRIPTION="Python bindings to libgpuarray"
43 -HOMEPAGE="http://deeplearning.net/software/libgpuarray/"
44 -SRC_URI="https://github.com/Theano/libgpuarray/archive/v${MYPV}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
49 -IUSE="cuda opencl test"
50 -RESTRICT="!test? ( test )"
51 -
52 -RDEPEND="
53 - dev-python/mako[${PYTHON_USEDEP}]
54 - dev-python/numpy[${PYTHON_USEDEP}]
55 - dev-libs/libgpuarray:=[cuda?,opencl?]
56 -"
57 -DEPEND="${RDEPEND}
58 - dev-python/cython[${PYTHON_USEDEP}]
59 - dev-python/setuptools[${PYTHON_USEDEP}]
60 - test? ( dev-python/nose[${PYTHON_USEDEP}] )
61 -"
62 -
63 -S="${WORKDIR}/libgpuarray-${MYPV}"
64 -
65 -python_test() {
66 - local DEVICE=cuda
67 - use opencl && DEVICE=opencl
68 - nosetests -svw "${BUILD_DIR}/lib/" || die
69 -}