guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 5bad9d084c195c46407d123e8e71a316d743445d
Author: Roman Scherer <[email protected]>
AuthorDate: Mon May 25 10:39:29 2026 +0200
gnu: inkscape: Disable geom-pathstroke-test on non-x68.
* gnu/packages/inkscape.scm (inkscape)[arguments]<#:phases>:
Add disable-geom-pathstroke-test on non-x68.
Change-Id: Ifbd4429d55fd3a66796b7f0219c1b4f1bb00be14
Merges: https://codeberg.org/guix/guix/pulls/8812
Signed-off-by: Nguyễn Gia Phong <[email protected]>
---
gnu/packages/inkscape.scm | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/gnu/packages/inkscape.scm b/gnu/packages/inkscape.scm
index e0c83083bc..02b34f44e2 100644
--- a/gnu/packages/inkscape.scm
+++ b/gnu/packages/inkscape.scm
@@ -379,6 +379,15 @@ as the native format.")
;; Re-instate the tests disabled in inkscape/pinned, now
that
;; their ImageMagick requirement is satisfied.
#~((replace 'check (assoc-ref gnu:%standard-phases
'check))))
+ #$@(if (or (target-aarch64?)
+ (target-ppc64le?)
+ (target-riscv64?))
+ '((add-after 'unpack 'disable-geom-pathstroke-test
+ (lambda _
+ ;;
https://gitlab.com/inkscape/lib2geom/-/work_items/80
+ (substitute* "testfiles/CMakeLists.txt"
+ ((" geom-pathstroke-test") "")))))
+ '())
(replace 'wrap-program
;; Ensure Python is available at runtime.
(lambda _