public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2015-09-17 21:56 Jauhien Piatlicki
  0 siblings, 0 replies; 18+ messages in thread
From: Jauhien Piatlicki @ 2015-09-17 21:56 UTC (permalink / raw
  To: gentoo-commits

commit:     27e77ad519c3d49a3c04c21896cd678c73e2a150
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Wed Sep 16 09:10:10 2015 +0000
Commit:     Jauhien Piatlicki <jauhien <AT> gentoo <DOT> org>
CommitDate: Wed Sep 16 09:10:10 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=27e77ad5

dev-python/arrayfire-python: New package, ebuild wirtten by me

Package-Manager: portage-2.2.20.1

 dev-python/arrayfire-python/ChangeLog              | 11 ++++++++
 .../arrayfire-python-3.0.20150914.ebuild           |  1 +
 .../arrayfire-python/arrayfire-python-9999.ebuild  | 30 ++++++++++++++++++++++
 dev-python/arrayfire-python/metadata.xml           | 17 ++++++++++++
 4 files changed, 59 insertions(+)

diff --git a/dev-python/arrayfire-python/ChangeLog b/dev-python/arrayfire-python/ChangeLog
new file mode 100644
index 0000000..94eafd2
--- /dev/null
+++ b/dev-python/arrayfire-python/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for dev-python/arrayfire-python
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Id$
+
+*arrayfire-python-3.0.20150914 (16 Sep 2015)
+*arrayfire-python-9999 (16 Sep 2015)
+
+  16 Sep 2015; Marius Brehler <marbre@linux.sungazer.de>
+  +arrayfire-python-3.0.20150914.ebuild, +arrayfire-python-9999.ebuild,
+  +metadata.xml:
+  dev-python/arrayfire-python: New package, ebuild wirtten by me

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.0.20150914.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.0.20150914.ebuild
new file mode 120000
index 0000000..a61966c
--- /dev/null
+++ b/dev-python/arrayfire-python/arrayfire-python-3.0.20150914.ebuild
@@ -0,0 +1 @@
+arrayfire-python-9999.ebuild
\ No newline at end of file

diff --git a/dev-python/arrayfire-python/arrayfire-python-9999.ebuild b/dev-python/arrayfire-python/arrayfire-python-9999.ebuild
new file mode 100644
index 0000000..c4d561b
--- /dev/null
+++ b/dev-python/arrayfire-python/arrayfire-python-9999.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python bindings for ArrayFire"
+HOMEPAGE="http://www.arrayfire.com"
+
+MY_PN="arrayfire"
+
+if [ ${PV} == "9999" ] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/arrayfire/${PN}.git git://github.com/arrayfire/${PN}.git"
+else
+	SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+	KEYWORDS="~amd64"
+	S="${WORKDIR}/${MY_PN}-${PV}"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+
+RDEPEND="
+	>=sci-libs/arrayfire-3.0.0
+	"
+DEPEND="${RDEPEND}"

diff --git a/dev-python/arrayfire-python/metadata.xml b/dev-python/arrayfire-python/metadata.xml
new file mode 100644
index 0000000..6209f0d
--- /dev/null
+++ b/dev-python/arrayfire-python/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <herd>sci</herd>
+  <maintainer>
+    <email>marbre@linux.sungazer.de</email>
+    <name>Marius Brehler</name>
+  </maintainer>
+  <longdescription>
+    ArrayFire is a high performance library for parallel computing
+	wih an easy-to-use API. This package project Python bindings
+	for the ArrayFire library.
+  </longdescription>
+  <upstream>
+    <remote-id type="github">arrayfire/arrayfire-python</remote-id>
+  </upstream>
+</pkgmetadata>


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2015-11-06  9:58 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2015-11-06  9:58 UTC (permalink / raw
  To: gentoo-commits

commit:     4a234555bf52526861116d4fade7ad578bdef0d1
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Fri Nov  6 09:40:22 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Fri Nov  6 09:40:22 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=4a234555

dev-python/arrayfire-python: Add python3.5 support

Package-Manager: portage-2.2.20.1

 dev-python/arrayfire-python/ChangeLog                            | 4 ++++
 dev-python/arrayfire-python/arrayfire-python-3.0.20150914.ebuild | 2 +-
 dev-python/arrayfire-python/arrayfire-python-9999.ebuild         | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/dev-python/arrayfire-python/ChangeLog b/dev-python/arrayfire-python/ChangeLog
index 94eafd2..59cd8c2 100644
--- a/dev-python/arrayfire-python/ChangeLog
+++ b/dev-python/arrayfire-python/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  06 Nov 2015; Marius Brehler <marbre@linux.sungazer.de>
+  arrayfire-python-3.0.20150914.ebuild, arrayfire-python-9999.ebuild:
+  dev-python/arrayfire-python: Add python3.5 support
+
 *arrayfire-python-3.0.20150914 (16 Sep 2015)
 *arrayfire-python-9999 (16 Sep 2015)
 

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.0.20150914.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.0.20150914.ebuild
index c4d561b..659b7bb 100644
--- a/dev-python/arrayfire-python/arrayfire-python-3.0.20150914.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-3.0.20150914.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
 inherit distutils-r1
 

diff --git a/dev-python/arrayfire-python/arrayfire-python-9999.ebuild b/dev-python/arrayfire-python/arrayfire-python-9999.ebuild
index c4d561b..659b7bb 100644
--- a/dev-python/arrayfire-python/arrayfire-python-9999.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-9999.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2015-11-12  7:29 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2015-11-12  7:29 UTC (permalink / raw
  To: gentoo-commits

commit:     eae237c0cc669b54765418d89b4b48ee86130fb3
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Thu Nov 12 07:28:54 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Thu Nov 12 07:28:54 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=eae237c0

dev-python/arrayfire-python: Version bump

Package-Manager: portage-2.2.20.1

 dev-python/arrayfire-python/ChangeLog              |  6 +++++
 .../arrayfire-python-3.1.20151111.ebuild           | 30 ++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/dev-python/arrayfire-python/ChangeLog b/dev-python/arrayfire-python/ChangeLog
index 59cd8c2..7077a13 100644
--- a/dev-python/arrayfire-python/ChangeLog
+++ b/dev-python/arrayfire-python/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*arrayfire-python-3.1.20151111 (12 Nov 2015)
+
+  12 Nov 2015; Marius Brehler <marbre@linux.sungazer.de>
+  +arrayfire-python-3.1.20151111.ebuild:
+  dev-python/arrayfire-python: Version bump
+
   06 Nov 2015; Marius Brehler <marbre@linux.sungazer.de>
   arrayfire-python-3.0.20150914.ebuild, arrayfire-python-9999.ebuild:
   dev-python/arrayfire-python: Add python3.5 support

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild
new file mode 100644
index 0000000..659b7bb
--- /dev/null
+++ b/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python bindings for ArrayFire"
+HOMEPAGE="http://www.arrayfire.com"
+
+MY_PN="arrayfire"
+
+if [ ${PV} == "9999" ] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/arrayfire/${PN}.git git://github.com/arrayfire/${PN}.git"
+else
+	SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+	KEYWORDS="~amd64"
+	S="${WORKDIR}/${MY_PN}-${PV}"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+
+RDEPEND="
+	>=sci-libs/arrayfire-3.0.0
+	"
+DEPEND="${RDEPEND}"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2015-12-19 12:36 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2015-12-19 12:36 UTC (permalink / raw
  To: gentoo-commits

commit:     66da28d8aca66b322e953ea8cb88b6b3fdcc5390
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sat Dec 19 12:28:02 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Sat Dec 19 12:28:02 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=66da28d8

dev-python/arrayfire-python: Drop old

Package-Manager: portage-2.2.24

 dev-python/arrayfire-python/ChangeLog              |  4 +++
 .../arrayfire-python-3.0.20150914.ebuild           | 30 ----------------------
 2 files changed, 4 insertions(+), 30 deletions(-)

diff --git a/dev-python/arrayfire-python/ChangeLog b/dev-python/arrayfire-python/ChangeLog
index 7077a13..7864a80 100644
--- a/dev-python/arrayfire-python/ChangeLog
+++ b/dev-python/arrayfire-python/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  19 Dec 2015; Marius Brehler <marbre@linux.sungazer.de>
+  -arrayfire-python-3.0.20150914.ebuild:
+  dev-python/arrayfire-python: Drop old
+
 *arrayfire-python-3.1.20151111 (12 Nov 2015)
 
   12 Nov 2015; Marius Brehler <marbre@linux.sungazer.de>

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.0.20150914.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.0.20150914.ebuild
deleted file mode 100644
index 659b7bb..0000000
--- a/dev-python/arrayfire-python/arrayfire-python-3.0.20150914.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for ArrayFire"
-HOMEPAGE="http://www.arrayfire.com"
-
-MY_PN="arrayfire"
-
-if [ ${PV} == "9999" ] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/arrayfire/${PN}.git git://github.com/arrayfire/${PN}.git"
-else
-	SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-	KEYWORDS="~amd64"
-	S="${WORKDIR}/${MY_PN}-${PV}"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-
-RDEPEND="
-	>=sci-libs/arrayfire-3.0.0
-	"
-DEPEND="${RDEPEND}"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2015-12-19 12:36 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2015-12-19 12:36 UTC (permalink / raw
  To: gentoo-commits

commit:     2393df4beea8e89b4ef06a11b66ea5a2013b62a1
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sat Dec 19 12:32:18 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Sat Dec 19 12:32:18 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=2393df4b

dev-python/arrayfire-python: Version bump

Package-Manager: portage-2.2.24

 dev-python/arrayfire-python/ChangeLog              |  6 ++++++
 .../arrayfire-python-3.2.20151214.ebuild           | 25 ++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/arrayfire-python/ChangeLog b/dev-python/arrayfire-python/ChangeLog
index 7864a80..e8b40e6 100644
--- a/dev-python/arrayfire-python/ChangeLog
+++ b/dev-python/arrayfire-python/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*arrayfire-python-3.2.20151214 (19 Dec 2015)
+
+  19 Dec 2015; Marius Brehler <marbre@linux.sungazer.de>
+  +arrayfire-python-3.2.20151214.ebuild:
+  dev-python/arrayfire-python: Version bump
+
   19 Dec 2015; Marius Brehler <marbre@linux.sungazer.de>
   -arrayfire-python-3.0.20150914.ebuild:
   dev-python/arrayfire-python: Drop old

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.2.20151214.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.2.20151214.ebuild
new file mode 100644
index 0000000..0a6ea83
--- /dev/null
+++ b/dev-python/arrayfire-python/arrayfire-python-3.2.20151214.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+MY_PN="arrayfire"
+
+DESCRIPTION="Python bindings for ArrayFire"
+HOMEPAGE="http://www.arrayfire.com"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+RDEPEND="
+	>=sci-libs/arrayfire-3.2.0
+	"
+DEPEND="${RDEPEND}"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2015-12-25 20:01 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2015-12-25 20:01 UTC (permalink / raw
  To: gentoo-commits

commit:     e34002b2d638180c0a3a1c6b5c6f475de08c45cb
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Fri Dec 25 20:00:44 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Fri Dec 25 20:00:44 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=e34002b2

dev-python/arrayfire-python: Version bump

Package-Manager: portage-2.2.24

 dev-python/arrayfire-python/ChangeLog              |  6 ++++++
 .../arrayfire-python-3.2.20151224.ebuild           | 25 ++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/arrayfire-python/ChangeLog b/dev-python/arrayfire-python/ChangeLog
index e8b40e6..a63c10f 100644
--- a/dev-python/arrayfire-python/ChangeLog
+++ b/dev-python/arrayfire-python/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*arrayfire-python-3.2.20151224 (25 Dec 2015)
+
+  25 Dec 2015; Marius Brehler <marbre@linux.sungazer.de>
+  +arrayfire-python-3.2.20151224.ebuild:
+  dev-python/arrayfire-python: Version bump
+
 *arrayfire-python-3.2.20151214 (19 Dec 2015)
 
   19 Dec 2015; Marius Brehler <marbre@linux.sungazer.de>

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild
new file mode 100644
index 0000000..0a6ea83
--- /dev/null
+++ b/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+MY_PN="arrayfire"
+
+DESCRIPTION="Python bindings for ArrayFire"
+HOMEPAGE="http://www.arrayfire.com"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+RDEPEND="
+	>=sci-libs/arrayfire-3.2.0
+	"
+DEPEND="${RDEPEND}"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2016-02-08 13:39 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2016-02-08 13:39 UTC (permalink / raw
  To: gentoo-commits

commit:     bcb77272ceec70b0e26afe6f50ac87b464d66d09
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Mon Feb  8 13:21:55 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Mon Feb  8 13:21:55 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=bcb77272

dev-python/arrayfire-python: Bump to EAPI=6, cleanup ebuilds

Package-Manager: portage-2.2.26

 .../arrayfire-python-3.1.20151111.ebuild            | 21 ++++++++-------------
 .../arrayfire-python-3.2.20151214.ebuild            |  4 ++--
 .../arrayfire-python-3.2.20151224.ebuild            |  4 ++--
 .../arrayfire-python/arrayfire-python-9999.ebuild   | 18 ++++--------------
 4 files changed, 16 insertions(+), 31 deletions(-)

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild
index 659b7bb..ee1d067 100644
--- a/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild
@@ -1,28 +1,23 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
 inherit distutils-r1
 
-DESCRIPTION="Python bindings for ArrayFire"
-HOMEPAGE="http://www.arrayfire.com"
-
 MY_PN="arrayfire"
 
-if [ ${PV} == "9999" ] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/arrayfire/${PN}.git git://github.com/arrayfire/${PN}.git"
-else
-	SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-	KEYWORDS="~amd64"
-	S="${WORKDIR}/${MY_PN}-${PV}"
-fi
+DESCRIPTION="Python bindings for ArrayFire"
+HOMEPAGE="http://www.arrayfire.com"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
+KEYWORDS="~amd64"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
 
 RDEPEND="
 	>=sci-libs/arrayfire-3.0.0

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.2.20151214.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.2.20151214.ebuild
index 0a6ea83..6434562 100644
--- a/dev-python/arrayfire-python/arrayfire-python-3.2.20151214.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-3.2.20151214.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
 inherit distutils-r1

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild
index 0a6ea83..6434562 100644
--- a/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
 inherit distutils-r1

diff --git a/dev-python/arrayfire-python/arrayfire-python-9999.ebuild b/dev-python/arrayfire-python/arrayfire-python-9999.ebuild
index 659b7bb..f725dca 100644
--- a/dev-python/arrayfire-python/arrayfire-python-9999.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-9999.ebuild
@@ -1,25 +1,15 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
-inherit distutils-r1
+inherit distutils-r1 git-r3
 
 DESCRIPTION="Python bindings for ArrayFire"
 HOMEPAGE="http://www.arrayfire.com"
-
-MY_PN="arrayfire"
-
-if [ ${PV} == "9999" ] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/arrayfire/${PN}.git git://github.com/arrayfire/${PN}.git"
-else
-	SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-	KEYWORDS="~amd64"
-	S="${WORKDIR}/${MY_PN}-${PV}"
-fi
+EGIT_REPO_URI="https://github.com/arrayfire/${PN}.git git://github.com/arrayfire/${PN}.git"
 
 LICENSE="BSD"
 SLOT="0"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2016-05-19  7:20 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2016-05-19  7:20 UTC (permalink / raw
  To: gentoo-commits

commit:     39a2673f0176a22f03983e91991ba5038add2900
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Thu May 19 07:18:35 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Thu May 19 07:18:35 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=39a2673f

dev-python/arrayfire-python: Version bump

Package-Manager: portage-2.2.28

 .../arrayfire-python-3.3.20160516.ebuild            | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild
new file mode 100644
index 0000000..4b84ce8
--- /dev/null
+++ b/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python bindings for ArrayFire"
+HOMEPAGE="http://www.arrayfire.com"
+SRC_URI="https://github.com/arrayfire/arrayfire-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=sci-libs/arrayfire-3.3.2
+	"
+DEPEND="${RDEPEND}"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2016-06-28 12:59 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2016-06-28 12:59 UTC (permalink / raw
  To: gentoo-commits

commit:     2e7115b27583d77202b5c51ad780caf589b34e31
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Jun 28 12:48:46 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Jun 28 12:48:46 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=2e7115b2

dev-python/arrayfire-python: Drop old

Package-Manager: portage-2.2.28

 .../arrayfire-python-3.2.20151214.ebuild           | 25 ----------------------
 1 file changed, 25 deletions(-)

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.2.20151214.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.2.20151214.ebuild
deleted file mode 100644
index 6434562..0000000
--- a/dev-python/arrayfire-python/arrayfire-python-3.2.20151214.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
-
-inherit distutils-r1
-
-MY_PN="arrayfire"
-
-DESCRIPTION="Python bindings for ArrayFire"
-HOMEPAGE="http://www.arrayfire.com"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-RDEPEND="
-	>=sci-libs/arrayfire-3.2.0
-	"
-DEPEND="${RDEPEND}"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2016-11-29 10:16 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2016-11-29 10:16 UTC (permalink / raw
  To: gentoo-commits

commit:     a8bbe6c60e8f09277e65a63b7113646a97b6d687
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Nov 29 08:55:19 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Nov 29 10:15:17 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=a8bbe6c6

dev-python/arrayfire-python: Drop old

Package-Manager: portage-2.3.0

 .../arrayfire-python-3.3.20160516.ebuild           | 22 ----------------------
 1 file changed, 22 deletions(-)

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild
deleted file mode 100644
index 4214229..0000000
--- a/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2016 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
-
-DESCRIPTION="Python bindings for ArrayFire"
-HOMEPAGE="http://www.arrayfire.com"
-SRC_URI="https://github.com/arrayfire/arrayfire-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	>=sci-libs/arrayfire-3.3.2
-	<sci-libs/arrayfire-3.4.0
-	"
-DEPEND="${RDEPEND}"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2016-11-29 10:16 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2016-11-29 10:16 UTC (permalink / raw
  To: gentoo-commits

commit:     dac65a95bbee4a182984bbe6a73940581f334e34
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Nov 29 08:54:43 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Nov 29 10:15:17 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=dac65a95

dev-python/arrayfire-python: Drop python3_3

Package-Manager: portage-2.3.0

 dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild | 2 +-
 dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild | 2 +-
 dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild | 2 +-
 dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild | 2 +-
 dev-python/arrayfire-python/arrayfire-python-9999.ebuild         | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild
index e7971bf..d6d99c2 100644
--- a/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
 
 inherit distutils-r1
 

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild
index 3af7ab3..a7de123 100644
--- a/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
 
 inherit distutils-r1
 

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild
index 7d15b76..4214229 100644
--- a/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
 
 inherit distutils-r1
 

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild
index 7d15b76..4214229 100644
--- a/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
 
 inherit distutils-r1
 

diff --git a/dev-python/arrayfire-python/arrayfire-python-9999.ebuild b/dev-python/arrayfire-python/arrayfire-python-9999.ebuild
index f725dca..01f7c4f 100644
--- a/dev-python/arrayfire-python/arrayfire-python-9999.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-9999.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
 
 inherit distutils-r1 git-r3
 


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2016-11-29 10:16 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2016-11-29 10:16 UTC (permalink / raw
  To: gentoo-commits

commit:     cb304266273eb0791fc33874510f55c88d8cdc0e
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Nov 29 08:51:06 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Nov 29 10:15:17 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=cb304266

dev-python/arrayfire-python: Version bump to 3.3.20160624

Package-Manager: portage-2.3.0

 .../arrayfire-python-3.3.20160624.ebuild            | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild
new file mode 100644
index 0000000..4b84ce8
--- /dev/null
+++ b/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python bindings for ArrayFire"
+HOMEPAGE="http://www.arrayfire.com"
+SRC_URI="https://github.com/arrayfire/arrayfire-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=sci-libs/arrayfire-3.3.2
+	"
+DEPEND="${RDEPEND}"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2016-11-29 10:16 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2016-11-29 10:16 UTC (permalink / raw
  To: gentoo-commits

commit:     a3b4e3b2307fdf04a870fe632ebc8500b0b43e8c
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Nov 29 08:54:09 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Nov 29 10:15:17 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=a3b4e3b2

dev-python/arrayfire-python: Restrict package to corresponding arrayfire version

Package-Manager: portage-2.3.0

 dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild | 1 +
 dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild | 1 +
 dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild | 1 +
 dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild | 1 +
 4 files changed, 4 insertions(+)

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild
index ee1d067..e7971bf 100644
--- a/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild
@@ -21,5 +21,6 @@ S="${WORKDIR}/${MY_PN}-${PV}"
 
 RDEPEND="
 	>=sci-libs/arrayfire-3.0.0
+	<sci-libs/arrayfire-3.2
 	"
 DEPEND="${RDEPEND}"

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild
index 6434562..3af7ab3 100644
--- a/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild
@@ -21,5 +21,6 @@ S="${WORKDIR}/${MY_PN}-${PV}"
 
 RDEPEND="
 	>=sci-libs/arrayfire-3.2.0
+	<sci-libs/arrayfire-3.3.0
 	"
 DEPEND="${RDEPEND}"

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild
index 4b84ce8..7d15b76 100644
--- a/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-3.3.20160516.ebuild
@@ -17,5 +17,6 @@ KEYWORDS="~amd64"
 
 RDEPEND="
 	>=sci-libs/arrayfire-3.3.2
+	<sci-libs/arrayfire-3.4.0
 	"
 DEPEND="${RDEPEND}"

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild
index 4b84ce8..7d15b76 100644
--- a/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild
@@ -17,5 +17,6 @@ KEYWORDS="~amd64"
 
 RDEPEND="
 	>=sci-libs/arrayfire-3.3.2
+	<sci-libs/arrayfire-3.4.0
 	"
 DEPEND="${RDEPEND}"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2016-11-29 10:16 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2016-11-29 10:16 UTC (permalink / raw
  To: gentoo-commits

commit:     ea20cf37671f33b1d00aff3f96844adc8f199ba4
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Nov 29 10:14:34 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Nov 29 10:15:17 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=ea20cf37

dev-python/arrayfire-python: Version bump to 3.4.20161126

Package-Manager: portage-2.3.0

 .../arrayfire-python-3.4.20161126.ebuild           | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.4.20161126.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.4.20161126.ebuild
new file mode 100644
index 0000000..beae8f2
--- /dev/null
+++ b/dev-python/arrayfire-python/arrayfire-python-3.4.20161126.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 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
+
+DESCRIPTION="Python bindings for ArrayFire"
+HOMEPAGE="http://www.arrayfire.com"
+SRC_URI="https://github.com/arrayfire/arrayfire-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=sci-libs/arrayfire-3.4.0
+	<sci-libs/arrayfire-3.5.0
+	"
+DEPEND="${RDEPEND}"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2016-11-29 12:26 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2016-11-29 12:26 UTC (permalink / raw
  To: gentoo-commits

commit:     cfc31ee28f29e626d741d4273ce8f4f5a1f29b03
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Nov 29 12:25:45 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Nov 29 12:25:45 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=cfc31ee2

dev-python/arrayfire-python: Add test phase

Package-Manager: portage-2.3.0

 dev-python/arrayfire-python/arrayfire-python-3.4.20161126.ebuild | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.4.20161126.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.4.20161126.ebuild
index beae8f2..5ca9649 100644
--- a/dev-python/arrayfire-python/arrayfire-python-3.4.20161126.ebuild
+++ b/dev-python/arrayfire-python/arrayfire-python-3.4.20161126.ebuild
@@ -13,6 +13,7 @@ SRC_URI="https://github.com/arrayfire/arrayfire-python/archive/${PV}.tar.gz -> $
 
 LICENSE="BSD"
 SLOT="0"
+IUSE="test"
 KEYWORDS="~amd64"
 
 RDEPEND="
@@ -20,3 +21,7 @@ RDEPEND="
 	<sci-libs/arrayfire-3.5.0
 	"
 DEPEND="${RDEPEND}"
+
+python_test() {
+	${EPYTHON} -m arrayfire.tests
+}


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2017-03-06 15:12 Marius Brehler
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Brehler @ 2017-03-06 15:12 UTC (permalink / raw
  To: gentoo-commits

commit:     bc64dbbfbcb91ea65d47f631ce2465c3c4d8d487
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Mon Mar  6 15:11:28 2017 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Mon Mar  6 15:11:28 2017 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=bc64dbbf

dev-python/arrayfire-python: Version bump to 3.4.20170222

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../arrayfire-python-3.4.20170222.ebuild           | 26 ++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.4.20170222.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.4.20170222.ebuild
new file mode 100644
index 000000000..32818eef8
--- /dev/null
+++ b/dev-python/arrayfire-python/arrayfire-python-3.4.20170222.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python bindings for ArrayFire"
+HOMEPAGE="http://www.arrayfire.com"
+SRC_URI="https://github.com/arrayfire/arrayfire-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=sci-libs/arrayfire-3.4.0
+	<sci-libs/arrayfire-3.5.0
+	"
+DEPEND="${RDEPEND}"
+
+python_test() {
+	${EPYTHON} -m arrayfire.tests
+}


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2020-09-25 13:02 Aisha Tammy
  0 siblings, 0 replies; 18+ messages in thread
From: Aisha Tammy @ 2020-09-25 13:02 UTC (permalink / raw
  To: gentoo-commits

commit:     65bb092988e90c6cd69eb421e6184c2f36cb9aa3
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri Sep 25 12:21:59 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Fri Sep 25 12:21:59 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=65bb0929

dev-python/arrayfire-python: drop old versions

Package-Manager: Portage-3.0.8, Repoman-3.0.1
RepoMan-Options: --force
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 .../arrayfire-python-3.1.20151111.ebuild           | 25 ---------------------
 .../arrayfire-python-3.2.20151224.ebuild           | 25 ---------------------
 .../arrayfire-python-3.3.20160624.ebuild           | 21 -----------------
 .../arrayfire-python-3.4.20161126.ebuild           | 26 ----------------------
 4 files changed, 97 deletions(-)

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild
deleted file mode 100644
index a5518e365..000000000
--- a/dev-python/arrayfire-python/arrayfire-python-3.1.20151111.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1
-
-MY_PN="arrayfire"
-
-DESCRIPTION="Python bindings for ArrayFire"
-HOMEPAGE="http://www.arrayfire.com"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-RDEPEND="
-	>=sci-libs/arrayfire-3.0.0
-	<sci-libs/arrayfire-3.2
-	"
-DEPEND="${RDEPEND}"

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild
deleted file mode 100644
index 40e30d21e..000000000
--- a/dev-python/arrayfire-python/arrayfire-python-3.2.20151224.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1
-
-MY_PN="arrayfire"
-
-DESCRIPTION="Python bindings for ArrayFire"
-HOMEPAGE="http://www.arrayfire.com"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-RDEPEND="
-	>=sci-libs/arrayfire-3.2.0
-	<sci-libs/arrayfire-3.3.0
-	"
-DEPEND="${RDEPEND}"

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild
deleted file mode 100644
index 29d275cf3..000000000
--- a/dev-python/arrayfire-python/arrayfire-python-3.3.20160624.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for ArrayFire"
-HOMEPAGE="http://www.arrayfire.com"
-SRC_URI="https://github.com/arrayfire/arrayfire-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	>=sci-libs/arrayfire-3.3.2
-	<sci-libs/arrayfire-3.4.0
-	"
-DEPEND="${RDEPEND}"

diff --git a/dev-python/arrayfire-python/arrayfire-python-3.4.20161126.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.4.20161126.ebuild
deleted file mode 100644
index cf6980807..000000000
--- a/dev-python/arrayfire-python/arrayfire-python-3.4.20161126.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for ArrayFire"
-HOMEPAGE="http://www.arrayfire.com"
-SRC_URI="https://github.com/arrayfire/arrayfire-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	>=sci-libs/arrayfire-3.4.0
-	<sci-libs/arrayfire-3.5.0
-	"
-DEPEND="${RDEPEND}"
-
-python_test() {
-	${EPYTHON} -m arrayfire.tests
-}


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

* [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
@ 2020-09-25 13:13 Aisha Tammy
  0 siblings, 0 replies; 18+ messages in thread
From: Aisha Tammy @ 2020-09-25 13:13 UTC (permalink / raw
  To: gentoo-commits

commit:     fff7e38e7f3bee84d71dd9685aae0df9ba614f67
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri Sep 25 13:13:04 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Fri Sep 25 13:13:04 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=fff7e38e

dev-python/arrayfire-python: update maintainer

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 dev-python/arrayfire-python/metadata.xml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-python/arrayfire-python/metadata.xml b/dev-python/arrayfire-python/metadata.xml
index 8d4d250f0..8cbbb986a 100644
--- a/dev-python/arrayfire-python/metadata.xml
+++ b/dev-python/arrayfire-python/metadata.xml
@@ -2,18 +2,18 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<maintainer type="person">
-		<email>marbre@linux.sungazer.de</email>
-		<name>Marius Brehler</name>
+		<email>gentoo@aisha.cc</email>
+		<name>Aisha Tammy</name>
 	</maintainer>
 	<maintainer type="project">
 		<email>sci@gentoo.org</email>
 		<name>Gentoo Science Project</name>
 	</maintainer>
 	<longdescription>
-ArrayFire is a high performance library for parallel computing
-wih an easy-to-use API. This package project Python bindings
-for the ArrayFire library.
-</longdescription>
+		ArrayFire is a high performance library for parallel computing
+		wih an easy-to-use API. This package project Python bindings
+		for the ArrayFire library.
+	</longdescription>
 	<upstream>
 		<remote-id type="github">arrayfire/arrayfire-python</remote-id>
 		<remote-id type="pypi">arrayfire</remote-id>


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

end of thread, other threads:[~2020-09-25 13:13 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-29 12:26 [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/ Marius Brehler
  -- strict thread matches above, loose matches on Subject: below --
2020-09-25 13:13 Aisha Tammy
2020-09-25 13:02 Aisha Tammy
2017-03-06 15:12 Marius Brehler
2016-11-29 10:16 Marius Brehler
2016-11-29 10:16 Marius Brehler
2016-11-29 10:16 Marius Brehler
2016-11-29 10:16 Marius Brehler
2016-11-29 10:16 Marius Brehler
2016-06-28 12:59 Marius Brehler
2016-05-19  7:20 Marius Brehler
2016-02-08 13:39 Marius Brehler
2015-12-25 20:01 Marius Brehler
2015-12-19 12:36 Marius Brehler
2015-12-19 12:36 Marius Brehler
2015-11-12  7:29 Marius Brehler
2015-11-06  9:58 Marius Brehler
2015-09-17 21:56 Jauhien Piatlicki

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