Gentoo Archives: gentoo-commits

From: Marius Brehler <marbre@××××××××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/
Date: Mon, 06 Mar 2017 15:12:55
Message-Id: 1488813088.bc64dbbfbcb91ea65d47f631ce2465c3c4d8d487.marbre@gentoo
1 commit: bc64dbbfbcb91ea65d47f631ce2465c3c4d8d487
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Mon Mar 6 15:11:28 2017 +0000
4 Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
5 CommitDate: Mon Mar 6 15:11:28 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=bc64dbbf
7
8 dev-python/arrayfire-python: Version bump to 3.4.20170222
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 .../arrayfire-python-3.4.20170222.ebuild | 26 ++++++++++++++++++++++
13 1 file changed, 26 insertions(+)
14
15 diff --git a/dev-python/arrayfire-python/arrayfire-python-3.4.20170222.ebuild b/dev-python/arrayfire-python/arrayfire-python-3.4.20170222.ebuild
16 new file mode 100644
17 index 000000000..32818eef8
18 --- /dev/null
19 +++ b/dev-python/arrayfire-python/arrayfire-python-3.4.20170222.ebuild
20 @@ -0,0 +1,26 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +PYTHON_COMPAT=( python2_7 python3_{4,5} )
26 +
27 +inherit distutils-r1
28 +
29 +DESCRIPTION="Python bindings for ArrayFire"
30 +HOMEPAGE="http://www.arrayfire.com"
31 +SRC_URI="https://github.com/arrayfire/arrayfire-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
32 +
33 +LICENSE="BSD"
34 +SLOT="0"
35 +IUSE="test"
36 +KEYWORDS="~amd64"
37 +
38 +RDEPEND="
39 + >=sci-libs/arrayfire-3.4.0
40 + <sci-libs/arrayfire-3.5.0
41 + "
42 +DEPEND="${RDEPEND}"
43 +
44 +python_test() {
45 + ${EPYTHON} -m arrayfire.tests
46 +}