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 E47A2138262 for ; Thu, 19 May 2016 07:14:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53438E07F2; Thu, 19 May 2016 07:14:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C3997E07F2 for ; Thu, 19 May 2016 07:14:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8C763340CF4 for ; Thu, 19 May 2016 07:14:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02971971 for ; Thu, 19 May 2016 07:14:52 +0000 (UTC) From: "Marius Brehler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marius Brehler" Message-ID: <1463641955.1139d2d3e3dd50668e12f74f87c406a33cfb5f1c.marbre@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/arrayfire/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/arrayfire/arrayfire-3.1.3-r1.ebuild sci-libs/arrayfire/arrayfire-3.2.2.ebuild sci-libs/arrayfire/arrayfire-3.3.2.ebuild sci-libs/arrayfire/arrayfire-9999.ebuild X-VCS-Directories: sci-libs/arrayfire/ X-VCS-Committer: marbre X-VCS-Committer-Name: Marius Brehler X-VCS-Revision: 1139d2d3e3dd50668e12f74f87c406a33cfb5f1c X-VCS-Branch: master Date: Thu, 19 May 2016 07:14:52 +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: 5ad817dc-5af6-4c05-9fbe-f4601e7d3ed9 X-Archives-Hash: 592364cfbeb178bc14d0174e5d9f44b7 commit: 1139d2d3e3dd50668e12f74f87c406a33cfb5f1c Author: Marius Brehler linux sungazer de> AuthorDate: Thu May 19 07:12:35 2016 +0000 Commit: Marius Brehler linux sungazer de> CommitDate: Thu May 19 07:12:35 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1139d2d3 sci-libs/arrayfire: Bump to EAPI=6 Package-Manager: portage-2.2.28 sci-libs/arrayfire/arrayfire-3.1.3-r1.ebuild | 28 ++++++++++++------------ sci-libs/arrayfire/arrayfire-3.2.2.ebuild | 28 ++++++++++++------------ sci-libs/arrayfire/arrayfire-3.3.2.ebuild | 28 ++++++++++++------------ sci-libs/arrayfire/arrayfire-9999.ebuild | 32 ++++++++++++++-------------- 4 files changed, 58 insertions(+), 58 deletions(-) diff --git a/sci-libs/arrayfire/arrayfire-3.1.3-r1.ebuild b/sci-libs/arrayfire/arrayfire-3.1.3-r1.ebuild index 3b3591b..12f6fcf 100644 --- a/sci-libs/arrayfire/arrayfire-3.1.3-r1.ebuild +++ b/sci-libs/arrayfire/arrayfire-3.1.3-r1.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 inherit cmake-utils multilib @@ -85,18 +85,18 @@ src_configure() { fi local mycmakeargs=( - $(cmake-utils_use_build cpu CPU) - $(cmake-utils_use_build cuda CUDA) - $(cmake-utils_use_build opencl OPENCL) - $(cmake-utils_use_build examples EXAMPLES) - $(cmake-utils_use_build test TEST) - $(cmake-utils_use_build graphics GRAPHICS) - $(cmake-utils_use_build nonfree NONFREE) - -DUSE_SYSTEM_BOOST_COMPUTE=ON - -DUSE_SYSTEM_CLBLAS=ON - -DUSE_SYSTEM_CLFFT=ON - -DUSE_SYSTEM_FORGE=ON - -DAF_INSTALL_CMAKE_DIR=/usr/$(get_libdir)/cmake/ArrayFire + -DBUILD_CPU="$(usex cpu)" + -DBUILD_CUDA="$(usex cuda)" + -DBUILD_OPENCL="$(usex opencl)" + -DBUILD_EXAMPLES="$(usex examples)" + -DBUILD_TEST="$(usex test)" + -DBUILD_GRAPHICS="$(usex graphics)" + -DBUILD_NONFREE="$(usex nonfree)" + -DUSE_SYSTEM_BOOST_COMPUTE=ON + -DUSE_SYSTEM_CLBLAS=ON + -DUSE_SYSTEM_CLFFT=ON + -DUSE_SYSTEM_FORGE=ON + -DAF_INSTALL_CMAKE_DIR=/usr/$(get_libdir)/cmake/ArrayFire ) cmake-utils_src_configure } diff --git a/sci-libs/arrayfire/arrayfire-3.2.2.ebuild b/sci-libs/arrayfire/arrayfire-3.2.2.ebuild index b92c662..aa766c9 100644 --- a/sci-libs/arrayfire/arrayfire-3.2.2.ebuild +++ b/sci-libs/arrayfire/arrayfire-3.2.2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit cmake-utils multilib @@ -85,19 +85,19 @@ src_configure() { fi local mycmakeargs=( - $(cmake-utils_use_build cpu CPU) - $(cmake-utils_use_build cuda CUDA) - $(cmake-utils_use_build opencl OPENCL) - $(cmake-utils_use_build examples EXAMPLES) - $(cmake-utils_use_build test TEST) - $(cmake-utils_use_build graphics GRAPHICS) - $(cmake-utils_use_build nonfree NONFREE) - $(cmake-utils_use_build unified UNIFIED) - -DUSE_SYSTEM_BOOST_COMPUTE=ON - -DUSE_SYSTEM_CLBLAS=ON - -DUSE_SYSTEM_CLFFT=ON - -DUSE_SYSTEM_FORGE=ON - -DAF_INSTALL_CMAKE_DIR=/usr/$(get_libdir)/cmake/ArrayFire + -DBUILD_CPU="$(usex cpu)" + -DBUILD_CUDA="$(usex cuda)" + -DBUILD_OPENCL="$(usex opencl)" + -DBUILD_EXAMPLES="$(usex examples)" + -DBUILD_TEST="$(usex test)" + -DBUILD_GRAPHICS="$(usex graphics)" + -DBUILD_NONFREE="$(usex nonfree)" + -DBUILD_UNIFIED="$(usex unified)" + -DUSE_SYSTEM_BOOST_COMPUTE=ON + -DUSE_SYSTEM_CLBLAS=ON + -DUSE_SYSTEM_CLFFT=ON + -DUSE_SYSTEM_FORGE=ON + -DAF_INSTALL_CMAKE_DIR=/usr/$(get_libdir)/cmake/ArrayFire ) cmake-utils_src_configure } diff --git a/sci-libs/arrayfire/arrayfire-3.3.2.ebuild b/sci-libs/arrayfire/arrayfire-3.3.2.ebuild index 22b96bd..78c0ecc 100644 --- a/sci-libs/arrayfire/arrayfire-3.3.2.ebuild +++ b/sci-libs/arrayfire/arrayfire-3.3.2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit cmake-utils multilib @@ -87,19 +87,19 @@ src_configure() { fi local mycmakeargs=( - $(cmake-utils_use_build cpu CPU) - $(cmake-utils_use_build cuda CUDA) - $(cmake-utils_use_build opencl OPENCL) - $(cmake-utils_use_build examples EXAMPLES) - $(cmake-utils_use_build test TEST) - $(cmake-utils_use_build graphics GRAPHICS) - $(cmake-utils_use_build nonfree NONFREE) - $(cmake-utils_use_build unified UNIFIED) - -DUSE_SYSTEM_BOOST_COMPUTE=ON - -DUSE_SYSTEM_CLBLAS=ON - -DUSE_SYSTEM_CLFFT=ON - -DUSE_SYSTEM_FORGE=ON - -DAF_INSTALL_CMAKE_DIR=/usr/$(get_libdir)/cmake/ArrayFire + -DBUILD_CPU="$(usex cpu)" + -DBUILD_CUDA="$(usex cuda)" + -DBUILD_OPENCL="$(usex opencl)" + -DBUILD_EXAMPLES="$(usex examples)" + -DBUILD_TEST="$(usex test)" + -DBUILD_GRAPHICS="$(usex graphics)" + -DBUILD_NONFREE="$(usex nonfree)" + -DBUILD_UNIFIED="$(usex unified)" + -DUSE_SYSTEM_BOOST_COMPUTE=ON + -DUSE_SYSTEM_CLBLAS=ON + -DUSE_SYSTEM_CLFFT=ON + -DUSE_SYSTEM_FORGE=ON + -DAF_INSTALL_CMAKE_DIR=/usr/$(get_libdir)/cmake/ArrayFire ) cmake-utils_src_configure } diff --git a/sci-libs/arrayfire/arrayfire-9999.ebuild b/sci-libs/arrayfire/arrayfire-9999.ebuild index a4b1d90..b0494ea 100644 --- a/sci-libs/arrayfire/arrayfire-9999.ebuild +++ b/sci-libs/arrayfire/arrayfire-9999.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 inherit cmake-utils git-r3 multilib @@ -44,7 +44,7 @@ RDEPEND=" graphics? ( media-libs/glew >=media-libs/glfw-3.1.1 - >=sci-visualization/forge-3.1 + =sci-visualization/forge-3.2.2 )" DEPEND="${RDEPEND}" @@ -86,19 +86,19 @@ src_configure() { fi local mycmakeargs=( - $(cmake-utils_use_build cpu CPU) - $(cmake-utils_use_build cuda CUDA) - $(cmake-utils_use_build opencl OPENCL) - $(cmake-utils_use_build examples EXAMPLES) - $(cmake-utils_use_build test TEST) - $(cmake-utils_use_build graphics GRAPHICS) - $(cmake-utils_use_build nonfree NONFREE) - $(cmake-utils_use_build unified UNIFIED) - -DUSE_SYSTEM_BOOST_COMPUTE=ON - -DUSE_SYSTEM_CLBLAS=ON - -DUSE_SYSTEM_CLFFT=ON - -DUSE_SYSTEM_FORGE=ON - -DAF_INSTALL_CMAKE_DIR=/usr/$(get_libdir)/cmake/ArrayFire + -DBUILD_CPU="$(usex cpu)" + -DBUILD_CUDA="$(usex cuda)" + -DBUILD_OPENCL="$(usex opencl)" + -DBUILD_EXAMPLES="$(usex examples)" + -DBUILD_TEST="$(usex test)" + -DBUILD_GRAPHICS="$(usex graphics)" + -DBUILD_NONFREE="$(usex nonfree)" + -DBUILD_UNIFIED="$(usex unified)" + -DUSE_SYSTEM_BOOST_COMPUTE=ON + -DUSE_SYSTEM_CLBLAS=ON + -DUSE_SYSTEM_CLFFT=ON + -DUSE_SYSTEM_FORGE=ON + -DAF_INSTALL_CMAKE_DIR=/usr/$(get_libdir)/cmake/ArrayFire ) cmake-utils_src_configure }