public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pygpu/
@ 2017-01-04  6:02 Sebastien Fabbro
  0 siblings, 0 replies; 5+ messages in thread
From: Sebastien Fabbro @ 2017-01-04  6:02 UTC (permalink / raw
  To: gentoo-commits

commit:     eb516cecc8888df2a919bbdafc606d6fef3ef03b
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  3 05:02:40 2017 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Jan  4 06:02:04 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb516cec

dev-python/pygpu: initial import

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/pygpu/Manifest               |  1 +
 dev-python/pygpu/metadata.xml           | 19 +++++++++++++
 dev-python/pygpu/pygpu-0.6.0_rc1.ebuild | 50 +++++++++++++++++++++++++++++++++
 3 files changed, 70 insertions(+)

diff --git a/dev-python/pygpu/Manifest b/dev-python/pygpu/Manifest
new file mode 100644
index 00000000..f099125
--- /dev/null
+++ b/dev-python/pygpu/Manifest
@@ -0,0 +1 @@
+DIST pygpu-0.6.0_rc1.tar.gz 228152 SHA256 c49655af200920e539597f26f975388b02af2f3971567d7e713e1a4ccd0b2a58 SHA512 90b2d31ebe38c08610643b28262375ed093b6587d4fff0bff2b1bbe249de3ec1ff01893cce67401dfec2946095cf83545d5093e8e49d86cded332eb7063d5e2e WHIRLPOOL 44471721d6a75f6dbeac313fd6de9778db3f98bc48904f6333e18b7e24792d62c0def57d05d984908be5ea5241645fcab4d7c537d2dff1fad73e2883e42c8673

diff --git a/dev-python/pygpu/metadata.xml b/dev-python/pygpu/metadata.xml
new file mode 100644
index 00000000..e05423a
--- /dev/null
+++ b/dev-python/pygpu/metadata.xml
@@ -0,0 +1,19 @@
+<?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>
+  <longdescription>
+     This package contains the Python bindings to libgpuarray which
+     are build in the top of NumPy.
+  </longdescription>
+  <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>
+</pkgmetadata>

diff --git a/dev-python/pygpu/pygpu-0.6.0_rc1.ebuild b/dev-python/pygpu/pygpu-0.6.0_rc1.ebuild
new file mode 100644
index 00000000..680b6d4
--- /dev/null
+++ b/dev-python/pygpu/pygpu-0.6.0_rc1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,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 doc opencl 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}]
+	doc? (
+	   dev-python/sphinx[${PYTHON_USEDEP}]
+	   dev-python/breathe[${PYTHON_USEDEP}]
+	)
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+S="${WORKDIR}/libgpuarray-${MYPV}"
+
+python_compile_all() {
+	if use doc; then
+		python_setup
+		esetup.py build_sphinx
+	fi
+}
+
+python_test() {
+	local DEVICE=cuda
+	use opencl && DEVICE=opencl
+	nosetests -svw "${BUILD_DIR}/lib/" || die
+}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pygpu/
@ 2017-01-04 14:50 Sebastien Fabbro
  0 siblings, 0 replies; 5+ messages in thread
From: Sebastien Fabbro @ 2017-01-04 14:50 UTC (permalink / raw
  To: gentoo-commits

commit:     b9e5129e30f737191e68212f8d3d1e71948221a5
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Jan  4 14:49:26 2017 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Jan  4 14:49:26 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9e5129e

dev-python/pygpu: remove doc building, not ready yet

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/pygpu/pygpu-0.6.0_rc1.ebuild | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/dev-python/pygpu/pygpu-0.6.0_rc1.ebuild b/dev-python/pygpu/pygpu-0.6.0_rc1.ebuild
index 680b6d4..dfa5aad 100644
--- a/dev-python/pygpu/pygpu-0.6.0_rc1.ebuild
+++ b/dev-python/pygpu/pygpu-0.6.0_rc1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="https://github.com/Theano/libgpuarray/archive/v${MYPV}.tar.gz -> ${P}.t
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="cuda doc opencl test"
+IUSE="cuda opencl test"
 
 RDEPEND="
 	dev-python/mako[${PYTHON_USEDEP}]
@@ -27,22 +27,11 @@ RDEPEND="
 DEPEND="${RDEPEND}
 	dev-python/cython[${PYTHON_USEDEP}]
 	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? (
-	   dev-python/sphinx[${PYTHON_USEDEP}]
-	   dev-python/breathe[${PYTHON_USEDEP}]
-	)
 	test? ( dev-python/nose[${PYTHON_USEDEP}] )
 "
 
 S="${WORKDIR}/libgpuarray-${MYPV}"
 
-python_compile_all() {
-	if use doc; then
-		python_setup
-		esetup.py build_sphinx
-	fi
-}
-
 python_test() {
 	local DEVICE=cuda
 	use opencl && DEVICE=opencl


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pygpu/
@ 2017-02-26 18:02 Sebastien Fabbro
  0 siblings, 0 replies; 5+ messages in thread
From: Sebastien Fabbro @ 2017-02-26 18:02 UTC (permalink / raw
  To: gentoo-commits

commit:     44cbc4336636ae236bb06aac541f35b7489afbea
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 19 06:31:11 2017 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sun Feb 26 18:02:03 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44cbc433

dev-python/pygpu: version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/pygpu/Manifest                                       | 2 +-
 dev-python/pygpu/{pygpu-0.6.0_rc1.ebuild => pygpu-0.6.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pygpu/Manifest b/dev-python/pygpu/Manifest
index f0991252da..aa8ffb1ec9 100644
--- a/dev-python/pygpu/Manifest
+++ b/dev-python/pygpu/Manifest
@@ -1 +1 @@
-DIST pygpu-0.6.0_rc1.tar.gz 228152 SHA256 c49655af200920e539597f26f975388b02af2f3971567d7e713e1a4ccd0b2a58 SHA512 90b2d31ebe38c08610643b28262375ed093b6587d4fff0bff2b1bbe249de3ec1ff01893cce67401dfec2946095cf83545d5093e8e49d86cded332eb7063d5e2e WHIRLPOOL 44471721d6a75f6dbeac313fd6de9778db3f98bc48904f6333e18b7e24792d62c0def57d05d984908be5ea5241645fcab4d7c537d2dff1fad73e2883e42c8673
+DIST pygpu-0.6.0.tar.gz 232281 SHA256 a58a0624e894475a4955aaea25e82261c69b4d22c8f15ec07041a4ba176d35af SHA512 ef2b37d7752d7b19e6034ca1992dfa0c82806bae7a15ce54aad785f5abbe06e57a77b804699c55b3b7dc94496afb22acaf3a43cfc15148c150f2c93085c23080 WHIRLPOOL bf702ac1a6f7dd38e59bfc3af3854055730f0ac005ef03b206daf43bab90e930fbe04c8c2765bd673ed3d78b501a5c01f0ba93c22565c99e8aedd6a8049873ac

diff --git a/dev-python/pygpu/pygpu-0.6.0_rc1.ebuild b/dev-python/pygpu/pygpu-0.6.0.ebuild
similarity index 100%
rename from dev-python/pygpu/pygpu-0.6.0_rc1.ebuild
rename to dev-python/pygpu/pygpu-0.6.0.ebuild


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pygpu/
@ 2018-06-24 16:40 Pacho Ramos
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2018-06-24 16:40 UTC (permalink / raw
  To: gentoo-commits

commit:     914ea377c3b1f75887595e859ee0ccb016f0c974
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 24 16:35:55 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jun 24 16:40:26 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=914ea377

dev-python/pygpu: Support python3.6

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/pygpu/pygpu-0.6.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pygpu/pygpu-0.6.7.ebuild b/dev-python/pygpu/pygpu-0.6.7.ebuild
index 71838169b36..8979a9aa34c 100644
--- a/dev-python/pygpu/pygpu-0.6.7.ebuild
+++ b/dev-python/pygpu/pygpu-0.6.7.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pygpu/
@ 2019-12-29 13:06 David Seifert
  0 siblings, 0 replies; 5+ messages in thread
From: David Seifert @ 2019-12-29 13:06 UTC (permalink / raw
  To: gentoo-commits

commit:     8d68828f49c27e3be361893c14dafce22aeb350b
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 29 13:06:16 2019 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Dec 29 13:06:16 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d68828f

dev-python/pygpu: Remove old

Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-python/pygpu/Manifest           |  1 -
 dev-python/pygpu/pygpu-0.6.0.ebuild | 39 -------------------------------------
 2 files changed, 40 deletions(-)

diff --git a/dev-python/pygpu/Manifest b/dev-python/pygpu/Manifest
index cbf2f119db4..95554ae2bb4 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 ea67d225297..00000000000
--- 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
-}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-12-29 13:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-04  6:02 [gentoo-commits] repo/gentoo:master commit in: dev-python/pygpu/ Sebastien Fabbro
  -- strict thread matches above, loose matches on Subject: below --
2017-01-04 14:50 Sebastien Fabbro
2017-02-26 18:02 Sebastien Fabbro
2018-06-24 16:40 Pacho Ramos
2019-12-29 13:06 David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox