[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70252] [PATCH 2/4] gnu: opencl-clhpp: Update package style.
From: |
Ahmad Draidi |
Subject: |
[bug#70252] [PATCH 2/4] gnu: opencl-clhpp: Update package style. |
Date: |
Sun, 7 Apr 2024 12:09:14 +0400 |
* gnu/packages/opencl.scm: Add #:use-module (guix gexp).
(opencl-clhpp): [native-inputs]: Remove labels.
[arguments]: Use G-expressions.
Change-Id: I5de85d6c1ed9d62bc481626ec3df2d0f0f939f32
---
gnu/packages/opencl.scm | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/opencl.scm b/gnu/packages/opencl.scm
index f265d983f0..c70dc4655f 100644
--- a/gnu/packages/opencl.scm
+++ b/gnu/packages/opencl.scm
@@ -24,6 +24,7 @@ (define-module (gnu packages opencl)
#:use-module (guix build-system python)
#:use-module (guix download)
#:use-module (guix utils)
+ #:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
@@ -107,14 +108,16 @@ (define-public opencl-clhpp
(base32 "0hagizc636wfcfmdl0f4bghprjnz1dba2kvkwh2ysj485n8lmjh4"))
(file-name (git-file-name name version))))
(native-inputs
- `(("python" ,python-wrapper)))
+ (list python-wrapper))
(propagated-inputs
(list opencl-headers))
(arguments
- `(#:configure-flags (list "-DBUILD_EXAMPLES=OFF" "-DBUILD_TESTS=OFF"
- "-DBUILD_TESTING=OFF") ;; CTest needs this to
be turned off
- ;; The regression tests require a lot more dependencies.
- #:tests? #f))
+ (list #:configure-flags #~(list "-DBUILD_EXAMPLES=OFF"
+ "-DBUILD_TESTS=OFF"
+ ;; CTest needs this to be turned off
+ "-DBUILD_TESTING=OFF")
+ ;; The regression tests require a lot more dependencies.
+ #:tests? #f))
(build-system cmake-build-system)
(home-page "https://github.khronos.org/OpenCL-CLHPP/")
(synopsis "Khronos OpenCL-CLHPP")
--
2.41.0
- [bug#70252] [PATCH 0/4] Update and restyle Khronos OpenCL packages, Ahmad Draidi, 2024/04/07
- [bug#70252] [PATCH 1/4] gnu: opencl-headers, opencl-clhpp and opencl-icd-loader: Update to 2023.12.14., Ahmad Draidi, 2024/04/07
- [bug#70252] [PATCH 2/4] gnu: opencl-clhpp: Update package style.,
Ahmad Draidi <=
- [bug#70252] [PATCH 3/4] gnu: opencl-headers: Update package style., Ahmad Draidi, 2024/04/07
- [bug#70252] [PATCH 4/4] gnu: opencl-icd-loader: Update package style., Ahmad Draidi, 2024/04/07
- [bug#70252] [PATCH v2 0/5] Update and restyle Khronos OpenCL packages, Ahmad Draidi, 2024/04/07
- [bug#70252] [PATCH v2 1/5] gnu: opencl-headers, opencl-clhpp and opencl-icd-loader: Replace version with %opencl-sdk-version., Ahmad Draidi, 2024/04/07
- [bug#70252] [PATCH v2 2/5] gnu: %opencl-sdk-version: Update to 2023.12.14., Ahmad Draidi, 2024/04/07
- [bug#70252] [PATCH v2 3/5] gnu: opencl-clhpp: Update package style., Ahmad Draidi, 2024/04/07
- [bug#70252] [PATCH v2 4/5] gnu: opencl-headers: Update package style., Ahmad Draidi, 2024/04/07
- [bug#70252] [PATCH v2 5/5] gnu: opencl-icd-loader: Update package style., Ahmad Draidi, 2024/04/07