summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@gentoo.org>2024-12-23 13:49:54 +0100
committerPetr Vaněk <arkamar@gentoo.org>2024-12-23 14:02:42 +0100
commit914238ee33bbff90228e66eca05a00c31cc2162b (patch)
tree27707521c9f3691f3a9a5549b8a82e05465f88be /dev-cpp
parentdev-cpp/libmcpp: drop 2.7.2_p5-r1 (diff)
downloadgentoo-914238ee33bbff90228e66eca05a00c31cc2162b.tar.gz
gentoo-914238ee33bbff90228e66eca05a00c31cc2162b.tar.bz2
gentoo-914238ee33bbff90228e66eca05a00c31cc2162b.zip
dev-cpp/clhpp: drop 2023.12.14
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'dev-cpp')
-rw-r--r--dev-cpp/clhpp/Manifest1
-rw-r--r--dev-cpp/clhpp/clhpp-2023.12.14.ebuild38
2 files changed, 0 insertions, 39 deletions
diff --git a/dev-cpp/clhpp/Manifest b/dev-cpp/clhpp/Manifest
index 94d2399d96e1..7aa4a2629a49 100644
--- a/dev-cpp/clhpp/Manifest
+++ b/dev-cpp/clhpp/Manifest
@@ -1,2 +1 @@
-DIST clhpp-2023.12.14.tar.gz 123233 BLAKE2B 2b23639ad162921e01033fbacc1c4e57d9c28ce39c55b3564f162e5d6b6d9ed0e80aaefbd62de81157e165f01897e82d0ff4943c8ee620587840f4aece22319b SHA512 a90152d2f9c57d4724ef3ea33e1311914e49659042e916e467a9f16877d348ed62f909fe8423589976669b25241a3b996fbd7ac235a44e35947d1b87d3e3ef2b
DIST clhpp-2024.05.08.tar.gz 124818 BLAKE2B 57b22e1911d8e21b4f7bef1f39f9910dd80eb50844dc7c18b3c75e311991a37577a0671d9e1b10ff3fb3302568118e3fb69987beec6fbe8fc8da85fcd7addda0 SHA512 6396cd67a2edef6a76695857e3e45f7eeb8cdaa8c729197357c6374ac58b41caa37bbe8c3b7a1724d43d3805f8cd5edd53a8ed833d6415bf072745800b744572
diff --git a/dev-cpp/clhpp/clhpp-2023.12.14.ebuild b/dev-cpp/clhpp/clhpp-2023.12.14.ebuild
deleted file mode 100644
index d52bb6938cc5..000000000000
--- a/dev-cpp/clhpp/clhpp-2023.12.14.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-MY_PN="OpenCL-CLHPP"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Khronos OpenCL C++ bindings"
-HOMEPAGE="https://github.com/KhronosGroup/OpenCL-CLHPP/"
-SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Khronos-CLHPP"
-SLOT="0"
-KEYWORDS="amd64 ppc64 x86"
-
-# Tests require CMock (NOT cmocka), which is currently not in Gentoo
-# and has been found to be extremely awkward to package.
-# Should it ever get packaged, consult git history for how to set things up
-# for the clhpp test suite.
-RESTRICT="test"
-
-RDEPEND="virtual/opencl"
-DEPEND="${RDEPEND}
- >=dev-util/opencl-headers-${PV}"
-
-S="${WORKDIR}"/${MY_P}
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_DOCS=OFF
- -DBUILD_EXAMPLES=OFF
- -DBUILD_TESTING=OFF
- )
- cmake_src_configure
-}