From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8901A13835A for ; Fri, 25 Sep 2020 20:56:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CB49E069C; Fri, 25 Sep 2020 20:56:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 73257E069C for ; Fri, 25 Sep 2020 20:56:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D6447340CD7 for ; Fri, 25 Sep 2020 20:56:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4DC74318 for ; Fri, 25 Sep 2020 20:56:41 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1601065470.72ad0b806262cbc73ca923ac1a6b50a19c3a0ef7.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-libs/boost-compute/ X-VCS-Repository: proj/sci X-VCS-Files: dev-libs/boost-compute/boost-compute-1.74.0.ebuild X-VCS-Directories: dev-libs/boost-compute/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 72ad0b806262cbc73ca923ac1a6b50a19c3a0ef7 X-VCS-Branch: master Date: Fri, 25 Sep 2020 20:56:41 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8ca840d5-0f99-43fd-aed9-df571943d006 X-Archives-Hash: 18355e78ba2011f06d96b08b94d3358d commit: 72ad0b806262cbc73ca923ac1a6b50a19c3a0ef7 Author: Aisha Tammy aisha cc> AuthorDate: Fri Sep 25 20:24:30 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Fri Sep 25 20:24:30 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=72ad0b80 dev-libs/boost-compute: version bump to 1.74.0 Package-Manager: Portage-3.0.8, Repoman-3.0.1 RepoMan-Options: --force Signed-off-by: Aisha Tammy aisha.cc> dev-libs/boost-compute/boost-compute-1.74.0.ebuild | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/dev-libs/boost-compute/boost-compute-1.74.0.ebuild b/dev-libs/boost-compute/boost-compute-1.74.0.ebuild new file mode 100644 index 000000000..f01c5c268 --- /dev/null +++ b/dev-libs/boost-compute/boost-compute-1.74.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="A header-only C++ Computing Library for OpenCL" +HOMEPAGE="https://github.com/boostorg/compute" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/boostorg/compute" +else + SRC_URI="https://github.com/boostorg/compute/archive/boost-${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}"/compute-boost-${PV} + KEYWORDS="~amd64" +fi + +LICENSE="Boost-1.0" +SLOT="0" +IUSE="benchmark bolt cache cuda eigen examples opencv qt tbb test threads vtk" + +RDEPEND=" + dev-libs/boost + virtual/opencl +" +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + -DBOOST_COMPUTE_USE_OFFLINE_CACHE=$(usex cache) + -DBOOST_COMPUTE_THREAD_SAFE=$(usex threads) + -DBOOST_COMPUTE_HAVE_EIGEN=$(usex eigen) + -DBOOST_COMPUTE_HAVE_OPENCV=$(usex opencv) + -DBOOST_COMPUTE_HAVE_QT=$(usex qt) + -DBOOST_COMPUTE_HAVE_VTK=$(usex vtk) + -DBOOST_COMPUTE_HAVE_CUDA=$(usex cuda) + -DBOOST_COMPUTE_HAVE_TBB=$(usex tbb) + -DBOOST_COMPUTE_HAVE_BOLT=$(usex bolt) + -DBOOST_COMPUTE_BUILD_TESTS=$(usex test) + -DBOOST_COMPUTE_BUILD_BENCHMARKS=$(usex benchmark) + -DBOOST_COMPUTE_BUILD_EXAMPLES=$(usex examples) + ) + cmake_src_configure +}