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 74AD6138C9D for ; Wed, 3 Jun 2015 10:21:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1307BE0885; Wed, 3 Jun 2015 10:21:41 +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 A7952E0870 for ; Wed, 3 Jun 2015 10:21:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EB857340CE4 for ; Wed, 3 Jun 2015 10:21:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74C9BA2F for ; Wed, 3 Jun 2015 10:21:36 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1433084297.74de59ebeac0640e7a3ff828e33ade5d4825bc51.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/arrayfire/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/arrayfire/ChangeLog sci-libs/arrayfire/arrayfire-3.0_beta.ebuild X-VCS-Directories: sci-libs/arrayfire/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 74de59ebeac0640e7a3ff828e33ade5d4825bc51 X-VCS-Branch: master Date: Wed, 3 Jun 2015 10:21:36 +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: 12d7eb14-1fda-459f-b23b-98b4cb5f94c6 X-Archives-Hash: 8f1f8d6dcdab1bafc2061f45242951b5 commit: 74de59ebeac0640e7a3ff828e33ade5d4825bc51 Author: Marius Brehler linux sungazer de> AuthorDate: Sun May 31 14:58:17 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun May 31 14:58:17 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=74de59eb sci-libs/arrayfire: Fetch tarball instead of getting src from git Package-Manager: portage-2.2.18 sci-libs/arrayfire/ChangeLog | 4 ++++ sci-libs/arrayfire/arrayfire-3.0_beta.ebuild | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/sci-libs/arrayfire/ChangeLog b/sci-libs/arrayfire/ChangeLog index 6123184..7267d35 100644 --- a/sci-libs/arrayfire/ChangeLog +++ b/sci-libs/arrayfire/ChangeLog @@ -1,6 +1,10 @@ # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 31 May 2015; Marius Brehler + arrayfire-3.0_beta.ebuild: + Fetch tarball instead of getting src from git + 23 May 2015; Marius Brehler +files/FindBoostCompute.cmake, +files/arrayfire-3.0_beta-FindBoostCompute.patch, diff --git a/sci-libs/arrayfire/arrayfire-3.0_beta.ebuild b/sci-libs/arrayfire/arrayfire-3.0_beta.ebuild index 8a08c8c..0bc42c9 100644 --- a/sci-libs/arrayfire/arrayfire-3.0_beta.ebuild +++ b/sci-libs/arrayfire/arrayfire-3.0_beta.ebuild @@ -4,16 +4,15 @@ EAPI=5 -inherit cmake-utils git-r3 +inherit cmake-utils GTEST_PV="1.7.0" DESCRIPTION="A general purpose GPU library." HOMEPAGE="http://www.arrayfire.com/" -EGIT_REPO_URI="https://github.com/${PN}/${PN}.git git://github.com/${PN}/${PN}.git" -SRC_URI="test? ( https://googletest.googlecode.com/files/gtest-${GTEST_PV}.zip )" +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV//_/}.tar.gz -> ${P}.tar.gz + test? ( https://googletest.googlecode.com/files/gtest-${GTEST_PV}.zip )" KEYWORDS="~amd64" -EGIT_COMMIT="v3.0beta" LICENSE="BSD" SLOT="0" @@ -38,6 +37,7 @@ RDEPEND=" )" DEPEND="${RDEPEND}" +S="${WORKDIR}/${P//_/}" BUILD_DIR="${S}/build" CMAKE_BUILD_TYPE=Release @@ -60,7 +60,7 @@ pkg_pretend() { } src_unpack() { - git-r3_src_unpack + default if use test; then mkdir -p "${BUILD_DIR}"/third_party/src/ || die