public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/vexcl/
@ 2021-05-12 10:23 Alessandro Barbieri
  0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2021-05-12 10:23 UTC (permalink / raw
  To: gentoo-commits

commit:     9c42327dd7e99c24595c265ee3174c425a61c52e
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed May 12 10:19:00 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Wed May 12 10:23:43 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9c42327d

dev-cpp/vexcl: new package WIP

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/vexcl/Manifest           |  1 +
 dev-cpp/vexcl/metadata.xml       | 17 +++++++++++++++++
 dev-cpp/vexcl/vexcl-1.4.2.ebuild | 30 ++++++++++++++++++++++++++++++
 3 files changed, 48 insertions(+)

diff --git a/dev-cpp/vexcl/Manifest b/dev-cpp/vexcl/Manifest
new file mode 100644
index 000000000..4d6698137
--- /dev/null
+++ b/dev-cpp/vexcl/Manifest
@@ -0,0 +1 @@
+DIST vexcl-1.4.2.tar.gz 412861 BLAKE2B 145948d2c2e6712a30542eca6690fe9f260cc9fe2064ffd01aaa89c3ddae1e0826206ffedfc362a6fb128f2909fc22948957f40cb45dc963d703abdff2ddd386 SHA512 b8bc759269025be21865178485015eb8489596be80c505d4699efdb517cb610a2d5fed10545ec7888f4cb4c7b3e2db5e3c2dd879c0d2fd95d2d0e59d1d3b790f

diff --git a/dev-cpp/vexcl/metadata.xml b/dev-cpp/vexcl/metadata.xml
new file mode 100644
index 000000000..7f91bd111
--- /dev/null
+++ b/dev-cpp/vexcl/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<longdescription>VexCL is a vector expression template library for OpenCL/CUDA. It has been created for ease of GPGPU development with C++. VexCL strives to reduce amount of boilerplate code needed to develop GPGPU applications. The library provides convenient and intuitive notation for vector arithmetic, reduction, sparse matrix-vector products, etc. Multi-device and even multi-platform computations are supported. The source code of the library is distributed under very permissive MIT license.</longdescription>
+	<maintainer type="person">
+		<description>comaintainers welcome</description>
+		<email>lssndrbarbieri@gmail.com</email>
+		<name>Alessandro Barbieri</name>
+	</maintainer>
+	<upstream>
+		<maintainer>
+			<email>dennis.demidov@gmail.com</email>
+			<name>Denis Demidov</name>
+		</maintainer>
+		<remote-id type="github">ddemidov/vexcl</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-cpp/vexcl/vexcl-1.4.2.ebuild b/dev-cpp/vexcl/vexcl-1.4.2.ebuild
new file mode 100644
index 000000000..8190e38bb
--- /dev/null
+++ b/dev-cpp/vexcl/vexcl-1.4.2.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="VexCL - Vector expression template library for OpenCL"
+HOMEPAGE="https://github.com/ddemidov/vexcl"
+SRC_URI="https://github.com/ddemidov/vexcl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+#TODO: cuda doc test
+IUSE="examples"
+
+RDEPEND="
+	dev-libs/boost:=
+	virtual/opencl
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+	cmake_src_install
+	if use examples; then
+		dodoc -r examples
+		docompress -x "/usr/share/doc/${P}/examples"
+	fi
+}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/vexcl/
@ 2021-05-12 14:59 Alessandro Barbieri
  0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2021-05-12 14:59 UTC (permalink / raw
  To: gentoo-commits

commit:     052f2c8bff49e935e7850ba112742cc9cdf4a9b4
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed May 12 14:58:24 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Wed May 12 14:58:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=052f2c8b

dev-cpp/vexcl: improvements

someone practical with docs eclass should review
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/vexcl/metadata.xml          |  9 +++++
 dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild | 74 +++++++++++++++++++++++++++++++++++++
 dev-cpp/vexcl/vexcl-1.4.2.ebuild    | 30 ---------------
 3 files changed, 83 insertions(+), 30 deletions(-)

diff --git a/dev-cpp/vexcl/metadata.xml b/dev-cpp/vexcl/metadata.xml
index 7f91bd111..f9645efc3 100644
--- a/dev-cpp/vexcl/metadata.xml
+++ b/dev-cpp/vexcl/metadata.xml
@@ -14,4 +14,13 @@
 		</maintainer>
 		<remote-id type="github">ddemidov/vexcl</remote-id>
 	</upstream>
+	<use>
+		<flag name="amdsi">Implement workaround for AMD SI GPUs</flag>
+		<flag name="clhpp">Install the OpenCL C++ header provided by VexCL</flag>
+		<!--<flag name="clogs">Use clogs algorithms</flag>-->
+		<flag name="compute">Use Boost.Compute algorithms</flag>
+		<!--<flag name="cuda">Use CUDA as backend</flag>-->
+		<flag name="jit">Use the JIT backend</flag>
+		<flag name="opencl">Use OpenCL as backend</flag>
+	</use>
 </pkgmetadata>

diff --git a/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild b/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild
new file mode 100644
index 000000000..4385b24d4
--- /dev/null
+++ b/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+#DOCS_AUTODOC=0
+DOCS_BUILDER="sphinx"
+DOCS_DEPEND="dev-python/sphinx-bootstrap-theme"
+DOCS_DIR="docs"
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit cmake python-any-r1 docs
+
+DESCRIPTION="VexCL - Vector expression template library for OpenCL"
+HOMEPAGE="https://github.com/ddemidov/vexcl"
+SRC_URI="https://github.com/ddemidov/vexcl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="amdsi clhpp compute examples jit +opencl test" #cuda clogs
+REQUIRED_USE="^^ ( compute jit opencl )" #cuda
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	compute? ( dev-libs/boost:= )
+	jit? ( virtual/opencl )
+	opencl? ( virtual/opencl )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+	default
+	sed -e "s|git_version()|${PV}|g" -i docs/conf.py || die
+	cmake_src_prepare
+}
+
+src_configure() {
+	local backend
+#	use  && backend="All"
+	use compute && backend="Compute"
+#	use cuda && backend="CUDA"
+	use jit && backend="JIT"
+	use opencl && backend="OpenCL"
+
+	local mycmakeargs=(
+		-DVEXCL_BUILD_EXAMPLES=OFF
+
+		-DVEXCL_AMD_SI_WORKAROUND=$(usex amdsi)
+		-DVEXCL_BACKEND="${backend}"
+		-DVEXCL_BUILD_TESTS=$(usex test)
+		-DVEXCL_INSTALL_CL_HPP=$(usex clhpp)
+	)
+#		-DVEXCL_CLOGS=$(usex clogs)
+
+	cmake_src_configure
+}
+
+src_compile() {
+	cmake_src_compile
+        docs_compile
+}
+
+src_install() {
+	cmake_src_install
+	if use doc; then
+		dodoc -r docs/html
+		docompress -x "/usr/share/doc/${P}/html"
+	fi
+	if use examples; then
+		dodoc -r examples
+		docompress -x "/usr/share/doc/${P}/examples"
+	fi
+}

diff --git a/dev-cpp/vexcl/vexcl-1.4.2.ebuild b/dev-cpp/vexcl/vexcl-1.4.2.ebuild
deleted file mode 100644
index 8190e38bb..000000000
--- a/dev-cpp/vexcl/vexcl-1.4.2.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="VexCL - Vector expression template library for OpenCL"
-HOMEPAGE="https://github.com/ddemidov/vexcl"
-SRC_URI="https://github.com/ddemidov/vexcl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-#TODO: cuda doc test
-IUSE="examples"
-
-RDEPEND="
-	dev-libs/boost:=
-	virtual/opencl
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
-	cmake_src_install
-	if use examples; then
-		dodoc -r examples
-		docompress -x "/usr/share/doc/${P}/examples"
-	fi
-}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/vexcl/
@ 2021-05-13  6:39 Andrew Ammerlaan
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-05-13  6:39 UTC (permalink / raw
  To: gentoo-commits

commit:     5b1a9372269140b8c5da5da8019f708e213fb868
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu May 13 06:39:53 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu May 13 06:39:53 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5b1a9372

dev-cpp/vexcl: fix indentation, whitspace -> tab

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild b/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild
index 4385b24d4..a2599bbb7 100644
--- a/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild
+++ b/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild
@@ -58,7 +58,7 @@ src_configure() {
 
 src_compile() {
 	cmake_src_compile
-        docs_compile
+	docs_compile
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/vexcl/
@ 2021-08-22  2:00 Alessandro Barbieri
  0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2021-08-22  2:00 UTC (permalink / raw
  To: gentoo-commits

commit:     8fe125e027df6d4a43b2e38c83e52c4fcb71060e
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Aug 22 01:07:59 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Aug 22 01:17:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8fe125e0

dev-cpp/vexcl: always depend on boost, add IUSE_BACKEND

Closes: https://bugs.gentoo.org/799839
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/vexcl/metadata.xml          |  8 ++++----
 dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild | 29 +++++++++++++++++++----------
 2 files changed, 23 insertions(+), 14 deletions(-)

diff --git a/dev-cpp/vexcl/metadata.xml b/dev-cpp/vexcl/metadata.xml
index 419b97cb5..eba4a282b 100644
--- a/dev-cpp/vexcl/metadata.xml
+++ b/dev-cpp/vexcl/metadata.xml
@@ -18,9 +18,9 @@
 		<flag name="amdsi">Implement workaround for AMD SI GPUs</flag>
 		<flag name="clhpp">Install the OpenCL C++ header provided by VexCL</flag>
 		<!--<flag name="clogs">Use clogs algorithms</flag>-->
-		<flag name="compute">Use Boost.Compute algorithms</flag>
-		<!--<flag name="cuda">Use CUDA as backend</flag>-->
-		<flag name="jit">Use the JIT backend</flag>
-		<flag name="opencl">Use OpenCL as backend</flag>
+		<flag name="backend-compute">Use Boost.Compute algorithms</flag>
+		<!--<flag name="backend-cuda">Use CUDA as backend</flag>-->
+		<flag name="backend-jit">Use the JIT backend</flag>
+		<flag name="backend-opencl">Use OpenCL as backend</flag>
 	</use>
 </pkgmetadata>

diff --git a/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild b/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild
index b3c196c69..d5eac888d 100644
--- a/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild
+++ b/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild
@@ -20,18 +20,27 @@ SRC_URI="https://github.com/ddemidov/vexcl/archive/refs/tags/${PV}.tar.gz -> ${P
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="amdsi clhpp compute examples jit +opencl test" #cuda clogs
-REQUIRED_USE="^^ ( compute jit opencl )" #cuda
-RESTRICT="!test? ( test )"
+IUSE_BACKEND="
+	backend-compute
+	backend-jit
+	+backend-opencl
+"
+#	backend-cuda
+IUSE_EXPAND="BACKEND"
+IUSE="${IUSE_BACKEND} amdsi clhpp examples test" #clogs
 
 RDEPEND="
-	compute? ( dev-libs/boost:= )
-	jit? ( virtual/opencl )
-	opencl? ( virtual/opencl )
+	dev-libs/boost:=
+	backend-jit? ( virtual/opencl )
+	backend-opencl? ( virtual/opencl )
 "
 DEPEND="${RDEPEND}"
 
 PATCHES=( "${FILESDIR}/add-sphinx-ext-autodoc-to-conf-py.patch" )
+REQUIRED_USE="
+	^^ ( ${IUSE_BACKEND//+/} )
+"
+RESTRICT="!test? ( test )"
 
 src_prepare() {
 	sed -e "s|git_version()|\'${PV}\'|g" -i docs/conf.py || die
@@ -41,10 +50,10 @@ src_prepare() {
 src_configure() {
 	local backend
 #	use  && backend="All"
-	use compute && backend="Compute"
-#	use cuda && backend="CUDA"
-	use jit && backend="JIT"
-	use opencl && backend="OpenCL"
+	use backend-compute && backend="Compute"
+#	use backend-cuda && backend="CUDA"
+	use backend-jit && backend="JIT"
+	use backend-opencl && backend="OpenCL"
 
 	local mycmakeargs=(
 		-DVEXCL_BUILD_EXAMPLES=OFF


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/vexcl/
@ 2022-05-06 16:34 Alessandro Barbieri
  0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2022-05-06 16:34 UTC (permalink / raw
  To: gentoo-commits

commit:     9cea496c44181f0edd9a4e516fdc348bce43469f
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Fri May  6 15:58:28 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Fri May  6 15:58:28 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9cea496c

dev-cpp/vexcl: add 1.4.3, drop 1.4.2-r2

Closes: https://bugs.gentoo.org/810289
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/vexcl/Manifest                                      | 2 +-
 dev-cpp/vexcl/{vexcl-1.4.2-r2.ebuild => vexcl-1.4.3.ebuild} | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/vexcl/Manifest b/dev-cpp/vexcl/Manifest
index 4d6698137..818b5fa5d 100644
--- a/dev-cpp/vexcl/Manifest
+++ b/dev-cpp/vexcl/Manifest
@@ -1 +1 @@
-DIST vexcl-1.4.2.tar.gz 412861 BLAKE2B 145948d2c2e6712a30542eca6690fe9f260cc9fe2064ffd01aaa89c3ddae1e0826206ffedfc362a6fb128f2909fc22948957f40cb45dc963d703abdff2ddd386 SHA512 b8bc759269025be21865178485015eb8489596be80c505d4699efdb517cb610a2d5fed10545ec7888f4cb4c7b3e2db5e3c2dd879c0d2fd95d2d0e59d1d3b790f
+DIST vexcl-1.4.3.tar.gz 425619 BLAKE2B 867ad520ba9e71dccf39c16b0979e134f296cd6a5010169735bb5e885f0aa6d566734a533320479740cf897cae7c7c8352db0c62053e5d38add379ca71a299c3 SHA512 9d0f3f64efb495f2caff76cccefda4e16f88cc279972cedc90d784c8578cba1f1be61d0cc438631386b5db2a1e06a92298d2901c54d65a394e7271eadf0ad843

diff --git a/dev-cpp/vexcl/vexcl-1.4.2-r2.ebuild b/dev-cpp/vexcl/vexcl-1.4.3.ebuild
similarity index 96%
rename from dev-cpp/vexcl/vexcl-1.4.2-r2.ebuild
rename to dev-cpp/vexcl/vexcl-1.4.3.ebuild
index 2e9867736..4dd650c5d 100644
--- a/dev-cpp/vexcl/vexcl-1.4.2-r2.ebuild
+++ b/dev-cpp/vexcl/vexcl-1.4.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -58,6 +58,7 @@ src_configure() {
 	use backend-opencl && backend="OpenCL"
 
 	local mycmakeargs=(
+		-DBoost_USE_STATIC_LIBS=OFF
 		-DVEXCL_BUILD_EXAMPLES=OFF
 
 		-DVEXCL_AMD_SI_WORKAROUND=$(usex amdsi)


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/vexcl/
@ 2023-03-08 19:40 Anna Vyalkova
  0 siblings, 0 replies; 7+ messages in thread
From: Anna Vyalkova @ 2023-03-08 19:40 UTC (permalink / raw
  To: gentoo-commits

commit:     e9788c3ba15ac9a1a30c87bd11ca4f62f409eb1c
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Mar  8 19:35:26 2023 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed Mar  8 19:37:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e9788c3b

dev-cpp/vexcl: enable py3.11

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild b/dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild
index 5d47f489b..0e81bdfe7 100644
--- a/dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild
+++ b/dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -9,7 +9,7 @@ DOCS_DEPEND="
 	dev-python/sphinx-bootstrap-theme
 "
 DOCS_DIR="docs"
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit cmake python-any-r1 docs
 


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/vexcl/
@ 2023-12-26  9:34 Takuya Wakazono
  0 siblings, 0 replies; 7+ messages in thread
From: Takuya Wakazono @ 2023-12-26  9:34 UTC (permalink / raw
  To: gentoo-commits

commit:     1d12132307c38bb189e80d46420b1176e29d4c99
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Tue Dec 26 09:32:55 2023 +0000
Commit:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
CommitDate: Tue Dec 26 09:32:55 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1d121323

dev-cpp/vexcl: rename dev-libs/clhpp to dev-cpp/clhpp

Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild b/dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild
index 0889431c99..0cf6f0ed78 100644
--- a/dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild
+++ b/dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild
@@ -30,7 +30,7 @@ IUSE="${IUSE_BACKEND} amdsi examples test" #clogs
 
 RDEPEND="
 	dev-libs/boost:=
-	dev-libs/clhpp
+	dev-cpp/clhpp
 	backend_jit? ( virtual/opencl )
 	backend_opencl? ( virtual/opencl )
 "


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-12-26  9:34 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-08-22  2:00 [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/vexcl/ Alessandro Barbieri
  -- strict thread matches above, loose matches on Subject: below --
2023-12-26  9:34 Takuya Wakazono
2023-03-08 19:40 Anna Vyalkova
2022-05-06 16:34 Alessandro Barbieri
2021-05-13  6:39 Andrew Ammerlaan
2021-05-12 14:59 Alessandro Barbieri
2021-05-12 10:23 Alessandro Barbieri

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox