all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ahmad Draidi via Guix-patches via <guix-patches@gnu.org>
To: 70252@debbugs.gnu.org
Cc: Ahmad Draidi <a.r.draidi@redscript.org>
Subject: [bug#70252] [PATCH 1/4] gnu: opencl-headers, opencl-clhpp and opencl-icd-loader: Update to 2023.12.14.
Date: Sun,  7 Apr 2024 12:09:13 +0400	[thread overview]
Message-ID: <2db9669b9140789d3d01894dd87e73e3c6bb550f.1712473796.git.a.r.draidi@redscript.org> (raw)
In-Reply-To: <cover.1712473796.git.a.r.draidi@redscript.org>

These packages should be updated together.

* gnu/packages/opencl.scm (opencl-headers): Update to 2023.12.14.
[home-page]: Update URL.
(opencl-clhpp): Update to 2023.12.14.
(opencl-icd-loader): Update to 2023.12.14.
[source]: Update origin URI to fix lint.

Change-Id: I56ee52a6df3fbbe7aa44743f09b28b07e5442b9f
---
 gnu/packages/opencl.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/opencl.scm b/gnu/packages/opencl.scm
index 036834f567..f265d983f0 100644
--- a/gnu/packages/opencl.scm
+++ b/gnu/packages/opencl.scm
@@ -55,7 +55,7 @@ (define-module (gnu packages opencl)
 (define-public opencl-headers
   (package
     (name "opencl-headers")
-    (version "2023.02.06")
+    (version "2023.12.14")
     (source
       (origin
         (method git-fetch)
@@ -64,13 +64,13 @@ (define-public opencl-headers
               (commit (string-append "v" version))))
         (file-name (git-file-name name version))
         (sha256
-         (base32 "1jxpx15gwxc6i7vp64xlzcxf57nl0qnaiip6jyr0j7iji47dm404"))))
+         (base32 "13a5zv0nvjp66sswm6zdakmfjxp7536wplampbx9fa6q7i14lpy0"))))
     (build-system cmake-build-system)
     (arguments `(#:tests? #f)) ; Not enabled during build.
     (synopsis "The Khronos OpenCL headers")
     (description
      "This package provides the C headers by Khronos for OpenCL programming.")
-    (home-page "https://www.khronos.org/registry/OpenCL/")
+    (home-page "https://registry.khronos.org/OpenCL/")
     (license license:asl2.0)))
 
 (define (make-opencl-headers major-version subversion)
@@ -96,7 +96,7 @@ (define-public opencl-headers-1.0
 (define-public opencl-clhpp
   (package
     (name "opencl-clhpp")
-    (version "2023.02.06")
+    (version "2023.12.14")
     (source
      (origin
        (method git-fetch)
@@ -104,7 +104,7 @@ (define-public opencl-clhpp
              (url "https://github.com/KhronosGroup/OpenCL-CLHPP")
              (commit (string-append "v" version))))
        (sha256
-        (base32 "1m3v5apjv3qagym32xqg38pq6i8j5d8svz11clsx408nrlyngrj0"))
+        (base32 "0hagizc636wfcfmdl0f4bghprjnz1dba2kvkwh2ysj485n8lmjh4"))
        (file-name (git-file-name name version))))
     (native-inputs
      `(("python" ,python-wrapper)))
@@ -125,16 +125,16 @@ (define-public opencl-clhpp
 (define-public opencl-icd-loader
   (package
     (name "opencl-icd-loader")
-    (version "2023.02.06")
+    (version "2023.12.14")
     (source (origin
               (method git-fetch)
               (uri (git-reference
-                    (url "https://github.com/KhronosGroup/OpenCL-ICD-Loader.git")
+                    (url "https://github.com/KhronosGroup/OpenCL-ICD-Loader")
                     (commit (string-append "v" version))))
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1cmbcm6bz6kfvr0dy9hzf2vgfwcz8gbm8rxspqqpva6z74dz0qxr"))))
+                "03xjkfb98paya5h18qsqdf3gqp063iblgbgahcfji9q91i0b327z"))))
     (build-system cmake-build-system)
     (arguments `(#:tests? #f)) ; Tests need stub loader setup.
     (native-search-paths
-- 
2.41.0





  reply	other threads:[~2024-04-07  8:11 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-07  8:05 [bug#70252] [PATCH 0/4] Update and restyle Khronos OpenCL packages Ahmad Draidi via Guix-patches via
2024-04-07  8:09 ` Ahmad Draidi via Guix-patches via [this message]
2024-04-07  8:09 ` [bug#70252] [PATCH 2/4] gnu: opencl-clhpp: Update package style Ahmad Draidi via Guix-patches via
2024-04-07  8:09 ` [bug#70252] [PATCH 3/4] gnu: opencl-headers: " Ahmad Draidi via Guix-patches via
2024-04-07  8:09 ` [bug#70252] [PATCH 4/4] gnu: opencl-icd-loader: " Ahmad Draidi via Guix-patches via
2024-04-07 20:19 ` [bug#70252] [PATCH v2 0/5] Update and restyle Khronos OpenCL packages Ahmad Draidi via Guix-patches via
2024-04-07 20:33   ` [bug#70252] [PATCH v2 1/5] gnu: opencl-headers, opencl-clhpp and opencl-icd-loader: Replace version with %opencl-sdk-version Ahmad Draidi via Guix-patches via
2024-04-07 20:33   ` [bug#70252] [PATCH v2 2/5] gnu: %opencl-sdk-version: Update to 2023.12.14 Ahmad Draidi via Guix-patches via
2024-04-07 20:33   ` [bug#70252] [PATCH v2 3/5] gnu: opencl-clhpp: Update package style Ahmad Draidi via Guix-patches via
2024-04-07 20:33   ` [bug#70252] [PATCH v2 4/5] gnu: opencl-headers: " Ahmad Draidi via Guix-patches via
2024-04-07 20:33   ` [bug#70252] [PATCH v2 5/5] gnu: opencl-icd-loader: " Ahmad Draidi via Guix-patches via
2024-05-04 16:40   ` [bug#70252] [PATCH v2 0/5] Update and restyle Khronos OpenCL packages Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2db9669b9140789d3d01894dd87e73e3c6bb550f.1712473796.git.a.r.draidi@redscript.org \
    --to=guix-patches@gnu.org \
    --cc=70252@debbugs.gnu.org \
    --cc=a.r.draidi@redscript.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.