From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B71B8139BC6 for ; Thu, 17 Sep 2015 21:56:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC03B21C014; Thu, 17 Sep 2015 21:56:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D2D9621C019 for ; Thu, 17 Sep 2015 21:56:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BB340340B28 for ; Thu, 17 Sep 2015 21:56:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F11DF186 for ; Thu, 17 Sep 2015 21:56:39 +0000 (UTC) From: "Jauhien Piatlicki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jauhien Piatlicki" Message-ID: <1442394610.27e77ad519c3d49a3c04c21896cd678c73e2a150.jauhien@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/arrayfire-python/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/arrayfire-python/ChangeLog dev-python/arrayfire-python/arrayfire-python-3.0.20150914.ebuild dev-python/arrayfire-python/arrayfire-python-9999.ebuild dev-python/arrayfire-python/metadata.xml X-VCS-Directories: dev-python/arrayfire-python/ X-VCS-Committer: jauhien X-VCS-Committer-Name: Jauhien Piatlicki X-VCS-Revision: 27e77ad519c3d49a3c04c21896cd678c73e2a150 X-VCS-Branch: master Date: Thu, 17 Sep 2015 21:56:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8523e63d-5080-48cb-a239-4dbd2a643e19 X-Archives-Hash: bd02819c9762f6940f3780024cef24ec commit: 27e77ad519c3d49a3c04c21896cd678c73e2a150 Author: Marius Brehler linux sungazer de> AuthorDate: Wed Sep 16 09:10:10 2015 +0000 Commit: Jauhien Piatlicki gentoo 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 + +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 @@ + + + + sci + + marbre@linux.sungazer.de + Marius Brehler + + + ArrayFire is a high performance library for parallel computing + wih an easy-to-use API. This package project Python bindings + for the ArrayFire library. + + + arrayfire/arrayfire-python + +