From db49a8c1f3298ebdb3e4dd510a165652716d7370 Mon Sep 17 00:00:00 2001 From: Cayetano Santos Date: Sat, 17 Jan 2026 21:36:05 +0100 Subject: [PATCH] gnu: ispc: Update to 1.29.1. * gnu/packages/c.scm (ispc): Update to 1.29.1. [inputs]: Add onetbb. [native-inputs]: Remove clang and python; add clang-19 and python-minimal-wrapper. Change-Id: I1d6b233b2d714e8cda67f5e95221b959de5863ac --- gnu/packages/c.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm index 2f48e9b9adff9af516dded7aecfaeab1f45f5a1e..4bcf050bfcc61900d592274069a4c55c2164d380 100644 --- a/gnu/packages/c.scm +++ b/gnu/packages/c.scm @@ -24,6 +24,7 @@ ;;; Copyright @ 2022, Kitzman ;;; Copyright @ 2025 Dariqq ;;; Copyright © 2025 Ashish SHUKLA +;;; Copyright © 2026 Cayetano Santos ;;; ;;; This file is part of GNU Guix. ;;; @@ -71,6 +72,7 @@ #:use-module (gnu packages m4) #:use-module (gnu packages multiprecision) #:use-module (gnu packages ncurses) + #:use-module (gnu packages oneapi) #:use-module (gnu packages pcre) #:use-module (gnu packages python) #:use-module (gnu packages python-build) @@ -1795,7 +1797,7 @@ SIMD (Single Instruction, Multiple Data) instructions.") (define-public ispc (package (name "ispc") - (version "1.19.0") + (version "1.29.1") (source (origin (method git-fetch) @@ -1804,9 +1806,9 @@ SIMD (Single Instruction, Multiple Data) instructions.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0yhcgyzjlrgs920lm0l6kygj2skanfb6qkxbdgm69r8c2xkzkaa3")))) - (inputs (list ncurses)) - (native-inputs (list bison clang flex m4 python)) + (base32 "02n14684nqbp1sxpnjkg6r9vwpdzqiwwaqxlp9bjykd125834ip2")))) + (inputs (list ncurses onetbb)) + (native-inputs (list bison clang-19 flex m4 python-minimal-wrapper)) (build-system cmake-build-system) (supported-systems '("x86_64-linux" "i686-linux" "aarch64-linux" "armhf-linux"))