about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2025-10-27 13:59:18 +0900
committerNguyễn Gia Phong <cnx@loang.net>2025-10-27 13:59:18 +0900
commit4adca0ccc6fd7ec8455f678c047f3ecc2ea9f12d (patch)
tree824d3a4cc6b7a49544df75b5ac202579093b0e01
parent656d1b01c79ebd44486441a1e1b2e30000449828 (diff)
downloadloftix-4adca0ccc6fd7ec8455f678c047f3ecc2ea9f12d.tar.gz
Skip tests for buggy packages
-rw-r--r--loftix/bugs.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/loftix/bugs.scm b/loftix/bugs.scm
index f46ecfd..9400ecc 100644
--- a/loftix/bugs.scm
+++ b/loftix/bugs.scm
@@ -270,14 +270,18 @@
                  (add-before 'configure 'set-env
                    (lambda _
                      (use-modules (loftix transform))
-                     (append-env "LDFLAGS" "-static" #f))))))))
+                     (append-env "LDFLAGS" "-static" #f))))))
+          ((#:tests? _ #f)
+           #f)))
        ((gnu)
         (substitute-keyword-arguments (package-arguments base)
           ((#:make-flags flags #~'())
            (with-imported-modules '((loftix transform))
              #~((@ (loftix transform) append-make-flag)
                 #$flags
-                '(("LDFLAGS" "-static")))))))))))
+                '(("LDFLAGS" "-static")))))
+          ((#:tests? _ #f)
+           #f)))))))
 
 (define-public jasper-static-1.900.5 (static jasper-1.900.5))
 (define-public jasper-static-1.900.3 (static jasper-1.900.3))