summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Scherer <roman@burningswell.com>2026-05-25 10:39:29 +0200
committerNguyễn Gia Phong <cnx@loang.net>2026-05-26 00:04:28 +0900
commit5bad9d084c195c46407d123e8e71a316d743445d (patch)
tree0fea7ac9b339d6fba52e3b21717a8cb6c1ecab7c
parenta066241c220e79553ca6b5ba6e1d8ecf51deaa41 (diff)
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 <cnx@loang.net>
-rw-r--r--gnu/packages/inkscape.scm9
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/packages/inkscape.scm b/gnu/packages/inkscape.scm
index e0c83083bcc..02b34f44e26 100644
--- a/gnu/packages/inkscape.scm
+++ b/gnu/packages/inkscape.scm
@@ -379,6 +379,15 @@ as the native format.")
379 ;; Re-instate the tests disabled in inkscape/pinned, now that 379 ;; Re-instate the tests disabled in inkscape/pinned, now that
380 ;; their ImageMagick requirement is satisfied. 380 ;; their ImageMagick requirement is satisfied.
381 #~((replace 'check (assoc-ref gnu:%standard-phases 'check)))) 381 #~((replace 'check (assoc-ref gnu:%standard-phases 'check))))
382 #$@(if (or (target-aarch64?)
383 (target-ppc64le?)
384 (target-riscv64?))
385 '((add-after 'unpack 'disable-geom-pathstroke-test
386 (lambda _
387 ;; https://gitlab.com/inkscape/lib2geom/-/work_items/80
388 (substitute* "testfiles/CMakeLists.txt"
389 ((" geom-pathstroke-test") "")))))
390 '())
382 (replace 'wrap-program 391 (replace 'wrap-program
383 ;; Ensure Python is available at runtime. 392 ;; Ensure Python is available at runtime.
384 (lambda _ 393 (lambda _