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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 28531158086 for ; Thu, 2 Dec 2021 05:16:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76063E088F; Thu, 2 Dec 2021 05:16:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 57945E088F for ; Thu, 2 Dec 2021 05:16:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 67C3B342CF5 for ; Thu, 2 Dec 2021 05:16:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06C6E8E for ; Thu, 2 Dec 2021 05:16:30 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1638422184.e5c0a7535031659a36b10f3d7b404e9d9f3096c8.mattst88@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.14.ebuild X-VCS-Directories: dev-libs/clhpp/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: e5c0a7535031659a36b10f3d7b404e9d9f3096c8 X-VCS-Branch: master Date: Thu, 2 Dec 2021 05:16:30 +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: 5ba4bda6-796f-4305-beca-cb9cedb902dd X-Archives-Hash: 6c0467eb581d50b526109fe6aa6e0b59 commit: e5c0a7535031659a36b10f3d7b404e9d9f3096c8 Author: Matt Turner gentoo org> AuthorDate: Thu Dec 2 04:53:48 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Dec 2 05:16:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5c0a753 dev-libs/clhpp: Drop old Signed-off-by: Matt Turner gentoo.org> dev-libs/clhpp/Manifest | 1 - dev-libs/clhpp/clhpp-2.0.14.ebuild | 28 ---------------------------- 2 files changed, 29 deletions(-) diff --git a/dev-libs/clhpp/Manifest b/dev-libs/clhpp/Manifest index 13cba297cd33..5542473a31a7 100644 --- a/dev-libs/clhpp/Manifest +++ b/dev-libs/clhpp/Manifest @@ -1,2 +1 @@ -DIST clhpp-2.0.14.tar.gz 99791 BLAKE2B 4859f25359d09584bd96d63c06766ee8c8f05a09d2c79355489ab5554760511a9a500036b2988b0df85df04b591cc357f776097f91a3a9b9172ab45e8d385990 SHA512 f6b6a3c760292d0acad5eb2cb25b0d127c7615167f979c6138361376d03c66bb46735cf56716b3349f9d6691ac6557b983a767559ee5f94b163d85b90b046eb4 DIST clhpp-2.0.15.tar.gz 99826 BLAKE2B de5f6cab05d21199ffea37bbbcc5d312a4b812b602ce091d8fa22cb615060ce08454de1341881792996dd5c06378657a297505ff25ac159d85b59995e924bca5 SHA512 d24c035425c8204099e5264e61939c568e85b64e94d5ed3c58fe9430f4516495a974080a684b742f5aea1351455a0755efccd14317c20cd34885880cf1d8133b diff --git a/dev-libs/clhpp/clhpp-2.0.14.ebuild b/dev-libs/clhpp/clhpp-2.0.14.ebuild deleted file mode 100644 index 43da0bfe3323..000000000000 --- a/dev-libs/clhpp/clhpp-2.0.14.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2021 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 -}