This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new c8f9ab2ccc gnu: python-vunit: Update to 5.0.0-dev.6.
c8f9ab2ccc is described below

commit c8f9ab2ccc5fd87073591c86547e12c292890ca3
Author: Cayetano Santos <[email protected]>
AuthorDate: Wed Jun 11 12:43:32 2025 +0200

    gnu: python-vunit: Update to 5.0.0-dev.6.
    
    * gnu/packages/fpga.scm (python-vunit): Update to 5.0.0-dev.6.
    
    Change-Id: I8820c6b74b11380189a6720238c74f154a613c31
    Reviewed-by: Maxim Cournoyer <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/fpga.scm | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm
index 3240cca92f..c4b6ea0ce7 100644
--- a/gnu/packages/fpga.scm
+++ b/gnu/packages/fpga.scm
@@ -595,7 +595,7 @@ a hardware description and verification language.")
 (define-public python-vunit
   (package
     (name "python-vunit")
-    (version "5.0.0-dev.5") ;v4.7.0 dates back from 2 years ago.
+    (version "5.0.0-dev.6") ;v4.7.0 dates back from 2 years ago.
     (source
      (origin
        (method git-fetch)
@@ -605,10 +605,21 @@ a hardware description and verification language.")
              (recursive? #t)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1sfnl1l6bgaqa8c2sk8k8f232bnq2drjg6rg7jvscmyz18yfih0b"))))
+        (base32 "0zm7733g7ivcx6y00bigvqzkxa2i46sw4pb5k1n3lfbqvsjymshh"))))
     (build-system pyproject-build-system)
     (arguments
      (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'fix-ghdl-jit
+            (lambda _
+              ;; TODO: Remove when fixed upstream (see:
+              ;; https://github.com/VUnit/vunit/pull/1121).
+              (substitute* "vunit/sim_if/ghdl.py"
+                ((": \"llvm\",")
+                 (string-append
+                  ": \"llvm\",\n\tr\"static elaboration, LLVM JIT code "
+                  "generator\": \"llvm-jit\","))))))
       #:test-flags
       ;; Skip lint tests which require python-pycodestyle, python-pylint and
       ;; python-mypy to reduce closoure size; some lint test fails, see

Reply via email to