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 8A4011382C5 for ; Fri, 19 Jun 2020 16:12:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B47AE0870; Fri, 19 Jun 2020 16:12:49 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 18E87E0870 for ; Fri, 19 Jun 2020 16:12:48 +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 1CD6B34F428 for ; Fri, 19 Jun 2020 16:12:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2BBFD2AB for ; Fri, 19 Jun 2020 16:12:44 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1592583129.b39532695e98d2f34cafae8c283f641e0f68443a.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/clhpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/clhpp/Manifest dev-libs/clhpp/clhpp-2.0.12.ebuild X-VCS-Directories: dev-libs/clhpp/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: b39532695e98d2f34cafae8c283f641e0f68443a X-VCS-Branch: master Date: Fri, 19 Jun 2020 16:12:44 +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: 1a2b9c66-ab8f-4ea5-bc68-94d561855fff X-Archives-Hash: 32fcdf030974a3cc53dbd69b51df7a9c commit: b39532695e98d2f34cafae8c283f641e0f68443a Author: Marek Szuba gentoo org> AuthorDate: Fri Jun 19 15:46:19 2020 +0000 Commit: Marek Szuba gentoo org> CommitDate: Fri Jun 19 16:12:09 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3953269 dev-libs/clhpp: bump to 2.0.12 Signed-off-by: Marek Szuba gentoo.org> dev-libs/clhpp/Manifest | 1 + dev-libs/clhpp/clhpp-2.0.12.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-libs/clhpp/Manifest b/dev-libs/clhpp/Manifest index 18d6122ebab..8cd795cf089 100644 --- a/dev-libs/clhpp/Manifest +++ b/dev-libs/clhpp/Manifest @@ -1 +1,2 @@ DIST clhpp-2.0.11.tar.gz 172006 BLAKE2B a346e4e9a5e9090a407946cd8dcb321188a9e66ff003ec65c42ceed8a9690d6decd2c47417e149e061e8ffc975a1bfd919134639ca5ed2d91ae94cf669eac81b SHA512 f73dd41ae0e14b6e42ba993f700103f99bb78230c7c8d9248fb32977b7d1694280a8cab1cefbb8d7171dd207b41623d98eb7524667f24a6925e1ee9d47787f7e +DIST clhpp-2.0.12.tar.gz 96922 BLAKE2B ae4df7e2b65865fbaea8066d508e4058a076aace4598ca97594237541df44e5c2d20978274124cbc5d331c4983df3e0776b8afafb2204f0d96b6830999d72589 SHA512 521f0e6bd32f9bfdf764011d9e83691a574c27a9c27580601529a2665a2785ca5815407381adfa2e247547bdb79c6083d79b5d716d54e2aafa55bdd5751f1e78 diff --git a/dev-libs/clhpp/clhpp-2.0.12.ebuild b/dev-libs/clhpp/clhpp-2.0.12.ebuild new file mode 100644 index 00000000000..2325c35bccc --- /dev/null +++ b/dev-libs/clhpp/clhpp-2.0.12.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Khronos OpenCL C++ bindings" +HOMEPAGE="https://github.com/KhronosGroup/OpenCL-CLHPP/" +SRC_URI="https://github.com/KhronosGroup/OpenCL-CLHPP/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Khronos-CLHPP" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="virtual/opencl" +RDEPEND="${DEPEND}" + +S="${WORKDIR}"/OpenCL-CLHPP-${PV} + +src_configure() { + local mycmakeargs=( + -DBUILD_DOCS=OFF + -DBUILD_EXAMPLES=OFF + -DBUILD_TESTS=OFF + ) + cmake_src_configure +}