summaryrefslogtreecommitdiff
path: root/dev-python/pygpu
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
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')
-rw-r--r--dev-python/pygpu/Manifest1
-rw-r--r--dev-python/pygpu/metadata.xml16
-rw-r--r--dev-python/pygpu/pygpu-0.6.7.ebuild39
3 files changed, 0 insertions, 56 deletions
diff --git a/dev-python/pygpu/Manifest b/dev-python/pygpu/Manifest
deleted file mode 100644
index 95554ae2bb41..000000000000
--- a/dev-python/pygpu/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pygpu-0.6.7.tar.gz 256440 BLAKE2B cc0880259c368c02fe0fca1a7f9424ad78f057540426d28179ee2cb20a2559853566c9ebb7de3488d5fdf0fa0eefb4e9f16db198cda2727370d567fd16363480 SHA512 39cdb67ec12d0f939d7a3ebef9726c40e64387413200addbeaf205db4151d09efd90118fec4a71b9d1f81fdde9b52e37d2d97763bf2cc9efa1667c5b9ff716b2
diff --git a/dev-python/pygpu/metadata.xml b/dev-python/pygpu/metadata.xml
deleted file mode 100644
index 0c9a6de2561d..000000000000
--- a/dev-python/pygpu/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <upstream>
- <remote-id type="github">Theano/libgpuarray</remote-id>
- </upstream>
- <use>
- <flag name="cuda">Enable NVIDIA CUDA toolkit support</flag>
- <flag name="opencl">Enable OpenCL support</flag>
- </use>
- <origin>gentoo-staging</origin>
-</pkgmetadata>
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
-}