diff options
author | Greg Hogan <code@greghogan.com> | 2025-04-01 20:35:32 +0000 |
---|---|---|
committer | Greg Hogan <code@greghogan.com> | 2025-07-30 16:27:48 +0000 |
commit | 024979243e293ea86128009fdee84ebc922e15cf (patch) | |
tree | 60ef58991075c455c394a2a83dd0de34b01e838e | |
parent | 8ca3bf5a8b87971ef3d9996dcefbf10fc1871c0c (diff) |
gnu: Disable tests.
* gnu/packages/algebra.scm (fftw-cmake, eigen-benchmarks),
* gnu/packages/android.scm (android-googletest),
* gnu/packages/check.scm (googletest),
* gnu/packages/cpp.scm (cpp-utilities, kokkos-kernels,
nativefiledialog-extended, toml11),
* gnu/packages/compression.scm (libcbor),
* gnu/packages/databases.scm (duckdb),
* gnu/packages/datastructures.scm (sdsl-lite),
* gnu/packages/education.scm (kqtquickcharts, ktouch),
* gnu/packages/emacs-xyz.scm (emacs-irony-mode-server),
* gnu/packages/engineering.scm (manifold, solvespace),
* gnu/packages/games.scm (jstest-gtk),
* gnu/packages/geo.scm (libspatialindex),
* gnu/packages/glib.scm (cppgir),
* gnu/packages/gnome.scm (evolution),
* gnu/packages/graphics.scm (openvdb),
* gnu/packages/kde.scm (kalgebra, kcachegrind, kcolorchooser, kdf,
kdegraphics-mobipocket, kio-zeroconf, kolourpaint, kompare, ksanecore,
kseexpr, ktimer, libkexiv2, libksane, partitionmanager),
* gnu/packages/kde-frameworks.scm (kactivities, kdnssd, kdeclarative,
kded, kglobalaccel, kgraphviewer, kidletime, kinit, kjobwidgets,
knotifications, knotifyconfig, kquickimageeditor, kstatusnotifieritem,
kwayland, libkdcraw, phonon-backend-gstreamer, phonon-backend-vlc,
plasma-activities, plasma-activities-stats),
* gnu/packages/kde-games.scm (bomber, bovo, granatier, kajongg, kapman,
kblackbox, kbounrce, kbreakout, kdiamond, kfourinline, kgoldrunner,
kigo, killbots, kiriki, kjumpingcube, klines, kmahjongg, kmines,
knights, kolf, kollision, konquest, kreversi, ksirk, kspaceduel,
ksquares, ksudoku, ktuberling, kubrick, libkmahjongg, lskat, palapeli),
* gnu/packages/kde-internet.scm (choqok, krdc),
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon),
* gnu/packages/kde-pim.scm (akonadi-import-wizard, ffmpegthumbs, haruna,
kaccounts-integration, kaccounts-providers, kaddressbook, kaffeine,
kasts, kontactinterface, libkcompactdisc),
* gnu/packages/kde-plasma.scm (bluedevil, breeze, breeze-qt5, calindori,
kactivitymanagerd, kde-gtk-config, kgamma, kmenuedit, kongress, krdp,
ksshaskpass, kwrited, layer-shell-qt, milou, mpvqt, ocean-sound-theme,
oxygen-sounds, plasma-mobile-sounds,, plasma-nano, plasma-pass,
plasma-phonebook, plasma-systemmonitor, plasma-vault, plasma-welcome,
lasma-workspace-wallpapers, polkit-kde-agent, print-manager,
qqc2-breeze-style),
* gnu/packages/kde-systemtools.scm (dolphin-plugins, krfb,
kwalletmanager),
* gnu/packages/kde-utils.scm (atelier, fielding, isoimagewriter, kamera,
kbackup, kcharselect, kdialog, keurocalc, kfind, kirogi, kmag,
kmousetool, kmouth, kontrast, krusader, kxstitch, libatcore, smb4k,
sweeper),
* gnu/packages/llvm.scm (lldb),
* gnu/packages/maths.scm (gklib, mcrl2, mcrl2-minimal),
* gnu/packages/messaging.scm (mosquitto, znc),
* gnu/packages/music.scm (hydrogen),
* gnu/packages/pdf.scm (podofo, podofo-0.9),
* gnu/packages/potassco.scm (clingo, clingcon),
* gnu/packages/qt.scm (dotherside, kddockwidgets, qttools),
* gnu/packages/radio.scm (ggmorse, gr-iqbal, inspectrum),
* gnu/packages/serialization.scm (jsoncpp-for-tensorflow),
* gnu/packages/sdl.scm (sdl3-gfx),
* gnu/packages/telephony.scm (baresip, baresip-libre),
* gnu/packages/textutils.scm (opencc),
* gnu/packages/video.scm (libopenshot, obs),
* gnu/packages/vim.scm (neovim),
* gnu/packages/web.scm (binaryen, civetweb, yajl)
[arguments]: Disable tests.
Change-Id: I56b50f14e4e5861dc69922cc2e8ee030e401a2d5
39 files changed, 370 insertions, 119 deletions
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 8773aa323f..e2d6051c5e 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -831,8 +831,7 @@ cosine/ sine transforms or DCT/DST).") ;; See: https://fftw.org/release-notes.html (name "fftw-cmake") (build-system cmake-build-system) - (arguments (default-keyword-arguments '() - '())) + (arguments '(#:tests? #f)) (description (string-append (package-description fftw) " This CMake build offers the file FFTW3LibraryDepends.cmake required by some dependent packages, absent in the @@ -1202,7 +1201,8 @@ features, and more.") (inherit eigen) (name "eigen-benchmarks") (arguments - '(#:phases (modify-phases %standard-phases + '(#:tests? #f ; no tests + #:phases (modify-phases %standard-phases (delete 'configure) (replace 'build (lambda* (#:key outputs #:allow-other-keys) diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm index 20ed472292..160e4ae5b6 100644 --- a/gnu/packages/android.scm +++ b/gnu/packages/android.scm @@ -123,7 +123,8 @@ use their packages mostly unmodified in our Android NDK build system.") (base32 "0bjlljmbf8glnd9qjabx73w6pd7ibv43yiyngqvmvgxsabzr8399")))) (arguments - `(#:configure-flags '("-DBUILD_SHARED_LIBS=ON") + `(#:tests? #f ; no tests + #:configure-flags '("-DBUILD_SHARED_LIBS=ON") #:phases (modify-phases %standard-phases (add-after 'install 'install-host-libraries diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 1ad5e40aba..c08b978dcb 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1144,7 +1144,8 @@ package.") (base32 "1cv55x3amwrvfan9pr8dfnicwr8r6ar3yf6cg9v6nykd6m2v3qsv")))) (build-system cmake-build-system) (arguments - `(#:configure-flags '("-DBUILD_SHARED_LIBS=ON"))) + `(#:tests? #f ; no tests + #:configure-flags '("-DBUILD_SHARED_LIBS=ON"))) (native-inputs `(("python" ,python-wrapper))) (home-page "https://github.com/google/googletest/") diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index b0fd58ccfb..9ceb56f0ae 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -2960,7 +2960,8 @@ can append files to the end of such compressed archives.") "00ibddiy62kbs9wl52c35j0hbqanx6pi7lvzkpzmbsizkj8mhp1p")))) (build-system cmake-build-system) (arguments - '(#:configure-flags + '(#:tests? #f ; no tests + #:configure-flags (let* ((out (assoc-ref %outputs "out")) (lib (string-append out "/lib"))) (list diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 1a991ac08c..9f59f69b09 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -338,6 +338,8 @@ Segmentation and Registration Toolkit.") (base32 "1nm6d87j11jc5617qk58a81ajxgrncr7xsf4dkyscrygi2n3dbgz")))) (build-system cmake-build-system) + (arguments + (list #:tests? #f)) (home-page "https://github.com/Martchus/cpp-utilities/") (synopsis "Useful C++ classes and routines") (description @@ -1370,6 +1372,7 @@ a cooperatively interruptible thread that is joined upon destruction.") (sha256 (base32 "090i2qg88iknldxd6v2mh3jfvkdkwc5m38czhrbm58r3y835fy0y")))) (build-system cmake-build-system) + (arguments (list #:tests? #f)) (home-page "https://github.com/ToruNiina/toml11") (synopsis "TOML for modern C++") (description @@ -1965,7 +1968,8 @@ hierarchies and multiple types of execution resources.") (base32 "05g4dp1359rsx0y2wrg2yv4zx3aq5anxr8jgb2c5f1ay3nq3639s")))) (build-system cmake-build-system) (arguments - (list #:configure-flags + (list #:tests? #f + #:configure-flags #~(list "-DBUILD_SHARED_LIBS=ON"))) (inputs (list kokkos @@ -4026,7 +4030,8 @@ based on the implementation of std::variant in libc++.") (base32 "15l0jy3v4p6rgg9dk8zr80lqp51s32ii62cm4s90400ragdgh10v")))) (build-system cmake-build-system) (arguments - '(#:configure-flags '("-DBUILD_SHARED_LIBS=ON"))) + '(#:tests? #f + #:configure-flags '("-DBUILD_SHARED_LIBS=ON"))) (native-inputs (list pkg-config)) (inputs (list gtk+)) (home-page "https://github.com/btzy/nativefiledialog-extended") diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index a2031ad0c9..b31bb552e2 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -217,6 +217,7 @@ (base32 "1dg3g66az17z4snxxw7cslqdkrvbx2nnyry73yi77yp0vpri1lz8")))) (arguments (list + #:tests? #f #:configure-flags #~(list "-DBUILD_EXTENSIONS=autocomplete;icu;json;parquet;tpch;" ;; There is no git checkout from which to read the version tag. diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm index 485cd03b7d..966045879e 100644 --- a/gnu/packages/datastructures.scm +++ b/gnu/packages/datastructures.scm @@ -325,7 +325,8 @@ to the structure and choosing one or more fields to act as the key.") "0m542xpys54bni29zibgrfpgpd0zgyny4h131virxsanixsbz52z"))))))) (build-system cmake-build-system) (arguments - `(#:phases + `(#:tests? #f ; no tests + #:phases (modify-phases %standard-phases (add-after 'install 'install-static-library (lambda* (#:key outputs #:allow-other-keys) diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index c27ca88c73..5e0d467cc0 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -692,6 +692,7 @@ language and very flexible regarding to new or unknown keyboard layouts.") (build-system qt-build-system) (native-inputs (list extra-cmake-modules)) (inputs (list qtdeclarative-5)) + (arguments (list #:tests? #f)) (home-page "https://invent.kde.org/libraries/kqtquickcharts") (synopsis "QtQuick plugin to render beautiful and interactive charts") (description @@ -736,6 +737,7 @@ charts.") qtquickcontrols2-5 qtx11extras qtxmlpatterns-5)) + (arguments (list #:tests? #f)) (home-page "https://edu.kde.org/ktouch/") (synopsis "Touch typing tutor") (description diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 872019347b..27866d7850 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -11307,6 +11307,7 @@ described on the homepage.") (name "emacs-irony-mode-server") (arguments (list + #:tests? #f #:phases #~(modify-phases %standard-phases (replace 'configure diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 11d728a8e4..ca1dcbee27 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -3096,8 +3096,9 @@ specification can be downloaded at @url{http://3mf.io/specification/}.") (build-system cmake-build-system) (inputs (list tbb clipper2 assimp python-nanobind googletest)) (arguments - ;; can be removed once emscripten is packaged - `(#:configure-flags '("-DMANIFOLD_JSBIND=OFF"))) + (list #:tests? #f + ;; can be removed once emscripten is packaged + #:configure-flags #~(list "-DMANIFOLD_JSBIND=OFF"))) (synopsis "Geometry library for topological robustness") (description "Manifold is a geometry library dedicated to creating and operating on @@ -4169,6 +4170,7 @@ calibration of the milling depth.") (arguments (list #:build-type "Release" + #:tests? #f #:phases #~(modify-phases %standard-phases (add-after 'unpack 'unpack-libdxfrw (lambda _ diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index fedf6591bd..8383687624 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -11212,7 +11212,10 @@ attached joysticks and displays which buttons and axis are pressed.") (base32 "1x5m6xvd1r9dhgzh6hp4vrszczbbxr04v7lyh4wjxxzrj3ahbmcq")))) (build-system cmake-build-system) - (arguments (list #:configure-flags #~(list "-DBUILD_TESTS=ON"))) + (arguments + (list #:tests? #f + #:configure-flags + #~(list "-DBUILD_TESTS=ON"))) (native-inputs (list pkg-config)) (inputs (list gtkmm-3 libsigc++-2)) (home-page "https://github.com/Grumbel/jstest-gtk/") diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index bcd7b60246..1b697a8db5 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -2375,6 +2375,7 @@ volunteers.") (sha256 (base32 "02n5vjcyk04w0djidyp21hfbxfpbbara8ifd9nml6158rwqr8lja")))) + (arguments (list #:tests? #f)) (build-system cmake-build-system) (home-page "https://libspatialindex.org") (synopsis "Spatial indexing library") diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 2526e79a00..88fa17ccf1 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -1608,6 +1608,7 @@ that uses asynchronous and future-based APIs.") (build-system cmake-build-system) (arguments (list + #:tests? #f ; fail with GLib-CRITICAL errors #:configure-flags #~(list "-DINTERNAL_EXPECTED=OFF"))) (inputs (list boost fmt expected-lite)) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index bf2bc90fbe..60d365a805 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -12354,6 +12354,7 @@ generic enough to work for everyone.") (build-system cmake-build-system) (arguments (list + #:tests? #f #:imported-modules `(,@%cmake-build-system-modules (guix build glib-or-gtk-build-system)) #:modules '((guix build cmake-build-system) diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 57ca8909af..50b7c73a3d 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -635,7 +635,8 @@ Please note that this version requires a processor with SSE2 support.")))) "0r6q7bl8513ggrvx3n73j1s3f7n5x1rxy5xi471qyrya95gy6c60")))) (build-system cmake-build-system) (arguments - `(#:configure-flags + `(#:tests? #f + #:configure-flags (list (string-append "-DCMAKE_EXE_LINKER_FLAGS=-Wl,-rpath=" (assoc-ref %outputs "out") "/lib")))) (inputs diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 83edac63b3..6bbff9caf2 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -257,7 +257,8 @@ continuous display of high-volume data.") (base32 "0acv6cis7gjpnzpnlxfrf6rzhwyqdm234p6r7vx7gl7ad3rp30ph")))) (build-system qt-build-system) (arguments - (list #:qtbase qtbase)) + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules)) (inputs @@ -317,7 +318,8 @@ image editing capabilities.") gst-plugins-base libxml2)) (arguments - `(#:configure-flags + `(#:tests? #f + #:configure-flags '( "-DPHONON_BUILD_PHONON4QT5=ON"))) (home-page "https://community.kde.org/Phonon") (synopsis "Phonon backend which uses GStreamer") @@ -341,7 +343,8 @@ Phonon-GStreamer is a backend based on the GStreamer multimedia library.") "19f9wzff4nr36ryq18i6qvsq5kqxfkpqsmsvrarr8jqy8pf7k11k")))) (build-system cmake-build-system) (arguments - (list #:configure-flags + (list #:tests? #f + #:configure-flags #~(list "-DPHONON_BUILD_QT5=OFF" "-DPHONON_BUILD_QT6=ON"))) (native-inputs @@ -1023,6 +1026,7 @@ as well as an API to create KDED modules.") (inputs (list avahi ; alternatively dnssd could be used qtbase)) + (arguments (list #:tests? #f)) (home-page "https://community.kde.org/Frameworks") (synopsis "Network service discovery using Zeroconf") (description "KDNSSD is a library for handling the DNS-based Service @@ -1074,6 +1078,7 @@ infrastructure.") qt5compat)) (native-inputs (list pkg-config extra-cmake-modules kdoctools)) + (arguments (list #:tests? #f)) (home-page "https://apps.kde.org/kgraphviewer/") (synopsis "Graphviz dot graph viewer for KDE") (description "KGraphViewer is a Graphviz DOT graph file viewer, aimed to @@ -1230,6 +1235,7 @@ translation scripting.") (sha256 (base32 "1p766vi3xg07691dpac5wc4a1ynwnyb6iacv1q73j1ymrpvx65zf")))) (build-system cmake-build-system) + (arguments (list #:tests? #f)) (native-inputs (list extra-cmake-modules pkg-config ;; for wayland-scanner @@ -1621,7 +1627,8 @@ protocols used in KDE Plasma.") wayland wayland-protocols)) (arguments - (list #:qtbase qtbase)) + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://invent.kde.org/plasma/kwayland") (synopsis "Qt-style API to interact with the wayland client and server") (description "As the names suggest they implement a Client respectively a @@ -2196,7 +2203,8 @@ uses a job-based interface to queue tasks and execute them in an efficient way." (list pkg-config extra-cmake-modules)) (inputs (list libraw qtbase)) - (arguments (list #:configure-flags + (arguments (list #:tests? #f + #:configure-flags #~(list #$(string-append "-DQT_MAJOR_VERSION=" (version-major @@ -2254,6 +2262,7 @@ decode RAW picture files.") kxmlgui-5 qtdeclarative-5 solid-5)) + (arguments (list #:tests? #f)) (home-page "https://community.kde.org/Frameworks") (synopsis "Core components for the KDE Activity concept") (description "KActivities provides the infrastructure needed to manage a @@ -2795,6 +2804,7 @@ formats.") (list extra-cmake-modules qttools)) (inputs (list libxkbcommon kcoreaddons knotifications kwidgetsaddons qtbase)) + (arguments (list #:tests? #f)) (home-page "https://community.kde.org/Frameworks") (synopsis "Widgets for showing progress of asynchronous jobs") (description "KJobWIdgets provides widgets for showing progress of @@ -2834,6 +2844,7 @@ asynchronous jobs.") (base32 "1pgrd42wgd6ffy52mfs9ii1l87lvx772w4blr05p03z898fjzcfj")))) (build-system cmake-build-system) + (arguments (list #:tests? #f)) (native-inputs (list extra-cmake-modules pkg-config qttools)) (propagated-inputs (list qtdeclarative)) @@ -3176,7 +3187,10 @@ maintaining an index of the contents of your files.") kwindowsystem qtdeclarative solid)) - (arguments (list #:qtbase qtbase)) + (arguments + (list + #:tests? #f + #:qtbase qtbase)) (home-page "https://invent.kde.org/plasma/plasma-activities") (synopsis "Core components for the KDE Activity System") (description "KActivities provides the infrastructure needed to manage a @@ -3200,6 +3214,7 @@ with other frameworks.") (base32 "0kcbnajlmn6rf298x493sv8bjqh5966jzl1fyl7y3j1xk3mx6jq1")))) (build-system cmake-build-system) + (arguments (list #:tests? #f)) (native-inputs (list extra-cmake-modules)) (inputs @@ -3504,6 +3519,7 @@ their settings.") kwidgetsaddons qtshadertools qtbase)) + (arguments (list #:tests? #f)) (home-page "https://community.kde.org/Frameworks") (synopsis "Integration of QML and KDE work spaces") (description "KDeclarative provides integration of QML and KDE work spaces. @@ -3582,6 +3598,7 @@ that offer bindings to some of the Frameworks.") (base32 "1f0zjd0gigfd6rqlvnyg6yz5fjdkcvkh3srw7044nhhc0wns8xbh")))) (build-system cmake-build-system) + (arguments (list #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -3714,7 +3731,10 @@ emoticons coming from different providers.") kwindowsystem libxkbcommon qtdeclarative)) - (arguments (list #:qtbase qtbase)) + (arguments + (list + #:tests? #f + #:qtbase qtbase)) (home-page "https://community.kde.org/Frameworks") (synopsis "Global desktop keyboard shortcuts") (description "KGlobalAccel allows you to have global accelerators that are @@ -3857,6 +3877,7 @@ in applications using the KDE Frameworks.") (build-system cmake-build-system) (arguments (list + #:tests? #f #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-paths @@ -4226,6 +4247,7 @@ specification.") (base32 "1d1rz0p270fwx84870kj7nih40kkxnpl3963mf52zs0xzkmkk6xb")))) (build-system cmake-build-system) + (arguments (list #:tests? #f)) (native-inputs (list extra-cmake-modules)) (inputs @@ -4628,7 +4650,10 @@ types or handled by application specific code.") (base32 "16nynk0b1bmbi4fjyppfavnw1m6jkfwnpvsnm4zvrdfwwgg7yf7d")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list + #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules qttools)) (inputs (list kwindowsystem libxkbcommon)) (home-page "https://community.kde.org/Frameworks") diff --git a/gnu/packages/kde-games.scm b/gnu/packages/kde-games.scm index 4d1e659198..b645538a8d 100644 --- a/gnu/packages/kde-games.scm +++ b/gnu/packages/kde-games.scm @@ -56,7 +56,9 @@ (sha256 (base32 "0hdn2rvi1v6jzvidqq6db38axiah7cg1jsmj0bdlpfjzbffi8mjl")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools perl)) (inputs @@ -142,7 +144,9 @@ This package is part of the KDE games module.") (sha256 (base32 "0pbq1v84j8jl64p4lv60x1gss28181594vlhcpqyjadxwgy5n37m")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -193,6 +197,7 @@ This package is part of the KDE games module.") (arguments (list #:qtbase qtbase + #:tests? #f #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-tileset-dir @@ -252,7 +257,9 @@ other Mah Jongg like games.") libkmahjongg qtdeclarative qtsvg)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/kmahjongg/") (synopsis "Tile laying patience") (description "In KMahjongg the tiles are scrambled and staked on top of @@ -318,6 +325,7 @@ This package is part of the KDE games module.") (arguments (list #:qtbase qtbase + #:tests? #f #:phases #~(modify-phases %standard-phases (add-after 'unpack 'fix-paths @@ -387,7 +395,9 @@ This package is part of the KDE games module.") (sha256 (base32 "00qbyv7awf70dxid2m71izsl39mfvjgzrfqdpfgkgisfvrwwnw90")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -425,7 +435,9 @@ This package is part of the KDE games module.") (sha256 (base32 "0qw460yp5g1ca21dl72mkdl7fidcbzs8ajvdsqyylrslh4aafxjq")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -463,7 +475,9 @@ This package is part of the KDE games module.") (sha256 (base32 "1ks4x320q6di0f8w8r9bnayhmn11cnfqw86jx63a74vgkn4878w6")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -503,7 +517,9 @@ This package is part of the KDE games module.") (sha256 (base32 "1kdrwn4i24kn9r3ardz92m2c2lfh2fla6x62g8wd8j30sd4q2i8j")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -583,7 +599,9 @@ This package is part of the KDE games module.") (sha256 (base32 "0mhc56s59l2hqdb27jypdgd82l2li2lil9a7kb4zg8x245c42jhk")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -644,7 +662,9 @@ This package is part of the KDE games module.") (sha256 (base32 "0xqddz0xzyn2j578v2clqsnqmqbf83787wkv54kpzdz3v6nbdswk")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -688,7 +708,9 @@ This package is part of the KDE games module.") (sha256 (base32 "07mz92k9ggdfrl3hnpwg6xl70mjaklwrp26a282n1j66arawmkjv")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -730,7 +752,9 @@ This package is part of the KDE games module.") (sha256 (base32 "1a2fgdfckmsz3ycrlbiddfd2vfhlhx8zn47zg5f2ic00jpp8wch4")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -769,7 +793,9 @@ This package is part of the KDE games module.") (sha256 (base32 "05cddjavbhdn4bwmg6ik2q0y0vjl1pn2nrlpkivsn97m1aka57hl")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -809,7 +835,9 @@ This package is part of the KDE games module.") (sha256 (base32 "1bj181is31hci056qxvf0wcqzggxxlszn65npm16038wa3bh95lw")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -904,7 +932,9 @@ This package is part of the KDE games module.") kxmlgui libkdegames qtdeclarative)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/bomber/") (synopsis "Arcade bombing game") (description "Bomber is a single player arcade game. @@ -950,7 +980,9 @@ This package is part of the KDE games module.") libkdegames qtdeclarative qtsvg)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/granatier/") (synopsis "Bomberman clone") (description "Granatier is a clone of the classic Bomberman game, @@ -990,7 +1022,9 @@ This package is part of the KDE games module.") qtmultimedia qtsvg zlib)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/ksirk/") (synopsis "Computerized version of the well known strategy board game 'Risk'") @@ -1051,7 +1085,9 @@ This package is part of the KDE games module.") qtdeclarative qtsvg shared-mime-info)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/palapeli/") (synopsis "Jigsaw puzzle game") (description "Palapeli is a jigsaw puzzle game. Unlike other games in @@ -1090,7 +1126,9 @@ This package is part of the KDE games module.") kxmlgui libkdegames qtdeclarative)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/kiriki/") (synopsis "Yahtzee dice game") (description "Kiriki is an addictive and fun dice game, designed to be @@ -1117,6 +1155,7 @@ This package is part of the KDE games module.") (arguments (list #:qtbase qtbase + #:tests? #f #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-gnugo-command (lambda* (#:key inputs #:allow-other-keys) @@ -1186,7 +1225,9 @@ This package is part of the KDE games module.") qtbase qtdeclarative qtsvg)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/kubrick/") (synopsis "Game based on Rubik's Cube") (description "Kubrick is a game based on the Rubik's Cube puzzle. @@ -1228,7 +1269,9 @@ This package is part of the KDE games module.") libkdegames qtdeclarative qtsvg)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/lskat/") (synopsis "Lieutnant Skat card game") (description "Lieutnant Skat (from German \"Offiziersskat\") is a fun and @@ -1267,7 +1310,9 @@ This package is part of the KDE games module.") libkdegames qtdeclarative qtsvg)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/kapman/") (synopsis "Pac-Man clone") (description "Kapman is a clone of the well known game Pac-Man. @@ -1306,7 +1351,9 @@ This package is part of the KDE games module.") libkdegames qtdeclarative qtsvg)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/kspaceduel/") (synopsis "Two player game with shooting spaceships flying around a sun") (description "KSpaceduel is a space battle game for one or two players, @@ -1340,7 +1387,9 @@ This package is part of the KDE games module.") libkdegames qtdeclarative qtsvg)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/bovo/") (synopsis "Classic pen and paper game: five in a line") (description "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five @@ -1364,7 +1413,9 @@ This package is part of the KDE games module.") (sha256 (base32 "1h1j3n2wy641gp53m2rb8zbsn93ciprivfi718bcvwvr2k41ncga")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -1406,7 +1457,9 @@ This package is part of the KDE games module.") (sha256 (base32 "0v7rh6zlf742gz6y8w440ap9zirv2yvmdybhz3qiwbxag5qvr5r0")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -1445,7 +1498,9 @@ This package is part of the KDE games module.") (sha256 (base32 "0hh85zl2wid190bgp542msigjyvdwfgvzvfcl22sx15ydnp6v6ma")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -1483,7 +1538,9 @@ This package is part of the KDE games module.") (sha256 (base32 "0dammn0a2z5valmbr3c85y6rsxh2isixl72wvfj6zvvp2s5lvsi1")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -1523,7 +1580,9 @@ This package is part of the KDE games module.") (sha256 (base32 "01chrif9f73nxx4fdmipi3yl2r8dzi5wsgksrc6kqj12j6gpdpjy")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -1565,7 +1624,9 @@ This package is part of the KDE games module.") (sha256 (base32 "0p1nc34n93mzdxih6799j25fic95mha311rifnghk9mlc6fw416n")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -1601,7 +1662,9 @@ This package is part of the KDE games module.") (sha256 (base32 "058sbbx73kbm2ils6ay0g3n9q05lid8aixl81i0246cgi2kvwvwy")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -1640,7 +1703,8 @@ This package is part of the KDE games module.") (base32 "0yrrbmiv9blpafwpa24w4farv76rqghqnrr6r01kkxrikcav9j0y")))) (build-system qt-build-system) (arguments - (list #:qtbase qtbase)) + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs diff --git a/gnu/packages/kde-internet.scm b/gnu/packages/kde-internet.scm index 7d42ed5f3f..b39bd77f6b 100644 --- a/gnu/packages/kde-internet.scm +++ b/gnu/packages/kde-internet.scm @@ -74,6 +74,8 @@ (sha256 (base32 "0zm4nkpmvd181xlkis7ydzx54p3vn0zgpdzgh54f1hsjy6ahsq16")))) (build-system qt-build-system) + (arguments + (list #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools-5 pkg-config)) (inputs @@ -332,6 +334,7 @@ Features are: gnutls)) (arguments (list #:configure-flags #~(list "-DQT_MAJOR_VERSION=6") + #:tests? #f #:qtbase qtbase)) (home-page "https://apps.kde.org/krdc/") (synopsis "Remote desktop client") diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm index 600a868238..f258da3723 100644 --- a/gnu/packages/kde-multimedia.scm +++ b/gnu/packages/kde-multimedia.scm @@ -87,7 +87,9 @@ libkcompactdisc libvorbis phonon)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/kio_audiocd/") (synopsis "Transparent audio CD integration for applications using the KDE Platform") @@ -134,7 +136,9 @@ This package is part of the KDE multimedia module.") phonon phonon-backend-vlc solid)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/dragonplayer/") (synopsis "Simple video player") (description "Dragon Player is a multimedia player where the focus is on @@ -160,6 +164,7 @@ This package is part of the KDE multimedia module.") (build-system qt-build-system) (arguments (list #:qtbase qtbase + #:tests? #f #:phases #~(modify-phases %standard-phases (add-after 'unpack 'fix-yt-dlp-path @@ -280,6 +285,7 @@ its own database. You can build and play your own playlist.") (inputs (list ffmpeg kconfig ki18n kio taglib)) (arguments (list #:qtbase qtbase + #:tests? #f #:configure-flags #~(list "-DQT_MAJOR_VERSION=6"))) (home-page "https://apps.kde.org/ffmpegthumbs/") (synopsis "Video thumbnail generator for KDE using ffmpeg") @@ -541,7 +547,8 @@ the available CD drives.") v4l-utils ; libdvbv5 vlc)) (arguments - (list #:phases + (list #:tests? #f + #:phases #~(modify-phases %standard-phases (add-after 'unpack 'fix-code (lambda _ @@ -647,7 +654,8 @@ camera. Use it to take pictures and make videos to share.") vulkan-loader)) (arguments (list - #:qtbase qtbase)) + #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/kasts/") (synopsis "Convergent podcast client") (description @@ -847,6 +855,7 @@ Its features include: solid)) (arguments (list #:configure-flags #~(list "-DQT_MAJOR_VERSION=6") + #:tests? #f #:qtbase qtbase)) (home-page "https://invent.kde.org/multimedia/libkcompactdisc") (synopsis "KDE library for playing & ripping CDs") diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm index 3f713bb7c2..dcb1e8a4a3 100644 --- a/gnu/packages/kde-pim.scm +++ b/gnu/packages/kde-pim.scm @@ -395,7 +395,9 @@ Akonadi PIM data server. It uses Xapian for indexing and querying.") (sha256 (base32 "1gv2jxy1xc6b70jax320rvk68qmgz1wpnrbx6wlxg1dmrafhby4d")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -616,7 +618,9 @@ information.") breeze-icons ; default icon set, required for tests prison qgpgme-qt6)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://kontact.kde.org/components/kaddressbook/") (synopsis "Address Book application to manage your contacts") (description "KAddressBook stores all the personal details of your family, @@ -648,7 +652,9 @@ CalDAV server.") libaccounts-qt6 qcoro-qt6 signond-qt6)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://invent.kde.org/network/kaccounts-integration") (synopsis "Online account management system") (description "The Kaccounts Integration library provides online account @@ -678,7 +684,9 @@ management system and its Plasma integration components.") qtwebengine qcoro-qt6 signond-qt6)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://invent.kde.org/network/kaccounts-providers") (synopsis "Online account providers for the KAccounts system") (description "This package provides online account providers for the @@ -1873,7 +1881,9 @@ Features: kwindowsystem kxmlgui libxkbcommon)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://api.kde.org/kdepim/kontactinterface/html/index.html") (synopsis "Kontact interface library") (description "This library provides the glue necessary for diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index 7742a3ffbf..1f8f17869d 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -112,7 +112,8 @@ (base32 "1fhgqxrqbm20liap57h35qq6wvh7x5r980r2ibv3k0k7naqp16sm")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules pkg-config qttools)) (inputs (list kcoreaddons kcmutils @@ -167,6 +168,7 @@ kcolorscheme qtsvg)) (arguments (list #:qtbase qtbase + #:tests? #f #:configure-flags #~(list "-DBUILD_QT5=OFF"))) (home-page "https://invent.kde.org/plasma/breeze") (synopsis "Default KDE Plasma theme") @@ -188,7 +190,10 @@ the Plasma Desktop. Breeze is the default theme for the KDE Plasma desktop.") kiconthemes-5 kpackage-5 kwindowsystem-5)) - (arguments (list #:configure-flags #~(list "-DBUILD_QT6=OFF"))))) + (arguments + (list #:tests? #f + #:configure-flags + #~(list "-DBUILD_QT6=OFF"))))) (define-public breeze-gtk (package @@ -239,7 +244,8 @@ Breeze is the default theme for the KDE Plasma desktop.") kpeople qtdeclarative qtsvg)) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (home-page "https://invent.kde.org/plasma-mobile/calindori") (synopsis "Calendar for Plasma Mobile") (description @@ -413,7 +419,8 @@ games, and tools.") (base32 "00kmx5zdfvg0w18hcc4wi1xqfi3n8x46664khf48mcl3gzjval2g")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules)) (inputs (list boost kcompletion @@ -443,6 +450,7 @@ concept.") "1g4c4p2ydm2xvfy8li8zk8ldy45xqaxbf47hmwx2w5ysidkg1g44")))) (build-system qt-build-system) (arguments (list #:qtbase qtbase + #:tests? #f #:phases #~(modify-phases %standard-phases (add-after 'unpack 'hardcode-openssl @@ -496,6 +504,7 @@ RDP server.") (arguments (list #:qtbase qtbase + #:tests? #f #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-gsettings-schemas-path @@ -662,7 +671,9 @@ KDE Frameworks 5 to better interact with the system.") (base32 "1nsdkqnrhl20g6giaglk22vzh2zs1v5qjkhy8zq7z050xsqn2g7w")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs (list kauth kcoreaddons @@ -841,7 +852,8 @@ computer's hardware.") (base32 "0plvzwp7p0l9sp6ga7xbszh6hm3bzdb1wyd3vbidlpjwkigd37by")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs (list kcrash ki18n @@ -890,7 +902,9 @@ computer's hardware.") kiconthemes qtdeclarative qtsvg)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/kongress/") (synopsis "Companion application for conferences") (description "This application provides list of upcoming conferences with @@ -989,7 +1003,9 @@ KDE Plasma Workspaces.") (base32 "15ar4lx46y92hy3cirls17jya6w7hnvbpk4qx7nfqf6g2bdl2cvr")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -1098,7 +1114,9 @@ an elegant and intuitive experience for your tasks and plasmoids.") (base32 "0ik3l9lqqh9s2574swv045zj1kk8fg33zsacd3bfzayk90zrh37q")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules pkg-config)) (inputs @@ -1596,7 +1614,9 @@ conjunction with the KDE Plasma Desktop.") (build-system qt-build-system) (native-inputs (list extra-cmake-modules)) (inputs (list kcoreaddons ki18n kpty knotifications)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://invent.kde.org/plasma/kwrited") (synopsis "System notification daemon") (description @@ -1627,7 +1647,8 @@ conjunction with the KDE Plasma Desktop.") krunner ksvg qtdeclarative)) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (synopsis "Dedicated search application built on top of Baloo") (description "This package provides a dedicated search application built on top of Baloo.") @@ -1648,7 +1669,8 @@ on top of Baloo.") "1ipra7srk3xdq8b1jls46jkhbn1dcyadbl5gjm0lxqlivr49j87f")))) (build-system qt-build-system) (arguments - (list #:qtbase qtbase)) + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules)) (inputs (list qtdeclarative @@ -1672,6 +1694,7 @@ on top of Baloo.") (base32 "0r90hrwib31wfv0mj42vf19c13642vb79m152rgps590i89yrkj9")))) (build-system cmake-build-system) + (arguments (list #:tests? #f)) (native-inputs (list extra-cmake-modules)) (home-page "https://community.kde.org/Frameworks") (synopsis "Sounds for the KDE desktop") @@ -1691,6 +1714,7 @@ on top of Baloo.") (base32 "1v51qhcr0swbajc0skwscp2h3m4qr337l8s145nmiv2scsn7sc86")))) (build-system cmake-build-system) + (arguments (list #:tests? #f)) (native-inputs (list extra-cmake-modules)) (inputs (list qtbase)) (home-page "https://invent.kde.org/plasma/ocean-sound-theme") @@ -1856,7 +1880,8 @@ KF5/Qt5 to KF6/Qt6") (propagated-inputs (list mpv)) (arguments - (list #:qtbase qtbase)) + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://invent.kde.org/libraries/mpvqt") (synopsis "libmpv wrapper for QtQuick2 and QML") (description "This package provides a libmpv wrapper for QtQuick2 and QML.") @@ -2242,6 +2267,7 @@ integration of Qt applications when running on a KDE Plasma workspace.") kwindowsystem kwayland ki18n)) + (arguments (list #:tests? #f)) (home-page "https://plasma-mobile.org/") (synopsis "Minimal Plasma Shell package") (description @@ -2356,6 +2382,7 @@ customizable platform for mobile devices.") (base32 "1br6kzicrr45vgg0ciqczxlcid21n5lfjm6zc06rw86ys7fx7bpi")))) (build-system cmake-build-system) + (arguments (list #:tests? #f)) (native-inputs (list extra-cmake-modules pkg-config)) (home-page "https://plasma-mobile.org/") (synopsis "Sounds for Plasma Mobile devices") @@ -2430,6 +2457,7 @@ PulseAudio.") ;; $QML_IMPORT_PATH. (list kirigami libplasma qtdeclarative)) (arguments (list #:qtbase qtbase + #:tests? #f #:configure-flags #~(list "-DQT_MAJOR_VERSION=6"))) (home-page "https://invent.kde.org/plasma/plasma-pass") (synopsis "Plasma applet for the Pass password manager") @@ -2450,7 +2478,8 @@ PulseAudio.") (base32 "1f2z3djq8q2z90vrn18k5qbiw8crhs69c5qvdnzxmp3s3f63bk4l")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules pkg-config)) (inputs (list kpeople kirigami @@ -2498,6 +2527,7 @@ adding, modifying and removing contacts.") (arguments (list #:qtbase qtbase + #:tests? #f #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch @@ -2558,7 +2588,9 @@ vaults.") libksysguard qqc2-desktop-style qtdeclarative)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (synopsis "System sensors, process information and other system resources monitor") (description "This package provides an interface for monitoring system @@ -2605,7 +2637,9 @@ sensors, process information and other system resources.") libplasma qtdeclarative qtsvg)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (synopsis "Plasma welcome screen") (description "This package provides a wizard for Plasma to configure settings.") @@ -2850,6 +2884,7 @@ hardware management, and a high degree of customizability.") (base32 "0jccrbpg0qdfys2gj789zfn0yilkwckd81d9nvpkppljv94p0gfa")))) (build-system cmake-build-system) + (arguments (list #:tests? #f)) (native-inputs (list extra-cmake-modules)) (home-page "https://community.kde.org/Frameworks") (synopsis "Oxygen wallpapers for the KDE desktop") @@ -2887,7 +2922,9 @@ hardware management, and a high degree of customizability.") kwindowsystem libplasma qtdeclarative)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://invent.kde.org/plasma/print-manager") (synopsis "Manage print jobs and printers") (description @@ -2906,7 +2943,8 @@ hardware management, and a high degree of customizability.") (base32 "1ky4k1z24r6rbx3bg69w609nbdcnwzjpajm1xmhgr8li4khgd5x7")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules)) (inputs (list ki18n kwindowsystem diff --git a/gnu/packages/kde-systemtools.scm b/gnu/packages/kde-systemtools.scm index 32c02874a9..444577c087 100644 --- a/gnu/packages/kde-systemtools.scm +++ b/gnu/packages/kde-systemtools.scm @@ -134,7 +134,9 @@ The main features of Dolphin are: kxmlgui breeze-icons ;; default icon set qt5compat)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://www.kde.org/") (synopsis "VCS-Plugins for Dolphin") (description "This package contains plugins that offer integration in @@ -253,6 +255,7 @@ This package is part of the KDE base applications module.") (base32 "1m3f4lpzwbrbdmp9237186x4p0w2rk1cz4a7nin38c8ll9sgrfb2")))) (build-system qt-build-system) (arguments (list #:qtbase qtbase + #:tests? #f #:configure-flags #~(list (string-append "-DQtWaylandScanner_EXECUTABLE=" #$(this-package-native-input "qtwayland") @@ -373,7 +376,9 @@ This package is part of the KDE administration module.") kwallet kwindowsystem kxmlgui)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/kwalletmanager5/") (synopsis "Tool to manage passwords on KWallet") (description diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm index bc79975bef..4b1d067c28 100644 --- a/gnu/packages/kde-utils.scm +++ b/gnu/packages/kde-utils.scm @@ -150,6 +150,7 @@ well as CD-ROM images.") (base32 "00jccpwvksyp2vr3fjxajs8d9d30rspg4zj6rnj8dai96alp303k")))) (build-system qt-build-system) + (arguments (list #:tests? #f)) (native-inputs (list extra-cmake-modules pkg-config)) (inputs (list ki18n-5 kxmlgui-5 @@ -254,7 +255,8 @@ well as CD-ROM images.") ksyntaxhighlighting qtdeclarative qtsvg)) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (home-page "https://invent.kde.org/utilities/fielding") (synopsis "REST API testing tool") (description @@ -344,7 +346,8 @@ your computer.") kcrash solid kwidgetsaddons)) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (home-page "https://invent.kde.org/utilities/isoimagewriter") (synopsis "Write hybrid ISO files onto USB disks") (description @@ -364,7 +367,8 @@ your computer.") "1448kiykab4lm2xkimapj11m7iqj6x7y2ly5mrw3c1092p56kvs2")))) (build-system qt-build-system) (arguments - (list #:qtbase qtbase)) + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -512,7 +516,8 @@ Kate's features include: libarchive shared-mime-info qt5compat)) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/kbackup/") (synopsis "Backup program with an easy-to-use interface") (description @@ -570,7 +575,9 @@ drive, USB stick, etc (base32 "195lr8ik6w03kc6ma9zfz7ksg296rn48d1vryin087i9k783rrad")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules)) (inputs (list kbookmarks kcoreaddons kcrash ki18n kwidgetsaddons kxmlgui)) (home-page "https://apps.kde.org/kcharselect/") @@ -594,7 +601,8 @@ characters.") (base32 "0ffnw3hc2xngxryiyanaid7nh51fymahg4jbqf3w684wrn1v6gan")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs (list ktextwidgets knotifications @@ -633,7 +641,8 @@ shell scripts.") kio kwidgetsaddons kxmlgui)) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (home-page "https://invent.kde.org/utilities/keurocalc") (synopsis "Currency conversion tool") (description "This package provides a utility to handle currency @@ -682,7 +691,8 @@ with support for QR scanning.") (base32 "01dxajpx2959m3gk23cvjra1w7i70f49lvys3h034205dyi3qgnm")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs (list karchive kcoreaddons @@ -716,7 +726,8 @@ with support for QR scanning.") "1gncfnwadh11ipynfcrsh1vnk2g02c7scd5wanphi8i95jzak9jd")))) (build-system qt-build-system) (arguments - (list #:phases #~(modify-phases %standard-phases + (list #:tests? #f + #:phases #~(modify-phases %standard-phases (add-after 'unpack 'fix-gstreamer (lambda* _ (substitute* "CMakeLists.txt" @@ -763,7 +774,8 @@ with support for QR scanning.") (base32 "031jsvk060y9w0mh1ylq7cz9nzmikz7vm098nrb10m9bx2x4h13d")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools python-minimal)) (inputs (list kcrash kirigami @@ -799,6 +811,7 @@ combinations are distinct enough to be readable and accessible.") (build-system qt-build-system) (native-inputs (list extra-cmake-modules)) (inputs (list qtcharts-5 qtdeclarative-5 qtserialport-5)) + (arguments (list #:tests? #f)) (home-page "https://invent.kde.org/libraries/atcore") (synopsis "Library for connection and management of 3D printers") (description @@ -818,7 +831,9 @@ the computer and 3D Printers.") (sha256 (base32 "0565x812jbq0j56750q03hmfai4fgdqjrxzw6k94c37ck0nvlfl5")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -867,7 +882,9 @@ artists to web-designers to people with low vision.") libxt phonon qtmultimedia)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/kmousetool/") (synopsis "Automatic mouse click and mouse manipulation tool for the disabled") @@ -903,7 +920,9 @@ whom pressing buttons hurts.") kxmlgui breeze-icons ;; default icon set qtspeech)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/kmouth/") (synopsis "Type-and-say frontend for speech synthesizers") (description "KMouth is a program which enables persons that cannot speak @@ -1027,7 +1046,8 @@ to save the times and resume them later.") (base32 "012f75afp7vjpp7wps4lzvcszj6a5y9yzv21wgh9zikcvvx9pdy9")))) (build-system qt-build-system) (arguments - (list #:qtbase qtbase)) + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -1089,6 +1109,7 @@ great on your desktop.") (list extra-cmake-modules kdoctools-5 pkg-config)) (inputs (list ktexteditor-5 imagemagick qtbase-5 qtx11extras)) + (arguments (list #:tests? #f)) (home-page "https://apps.kde.org/kxstitch/") (synopsis "Create and print cross stitch patterns") (description @@ -1210,6 +1231,7 @@ remind you to take a break now and then.") (build-system qt-build-system) (arguments (list #:qtbase qtbase + #:tests? #f #:configure-flags #~(list "-DSMB4K_WITH_WS_DISCOVERY=ON"))) (native-inputs (list extra-cmake-modules kdoctools)) @@ -1287,7 +1309,9 @@ Features: (sha256 (base32 "0v7hwz6xnp52fysbmqwrhjjcsr96bmw0a70n2kr2bq1hhh0zvf3h")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 3e96f343db..0d16a92885 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -486,6 +486,7 @@ expressions and let you evaluate and draw them.") (build-system qt-build-system) (arguments (list + #:tests? #f #:phases #~(modify-phases %standard-phases (add-after 'install 'wrap-qt-process-path @@ -891,7 +892,8 @@ and desktop experiences.") (base32 "888q3kkv2wq426w000iq14wy3a45rrnn0bmsdks6caz4vq04ccay")))) (build-system qt-build-system) (arguments - `(#:configure-flags (list "-DBUILD_TESTS=ON"))) ; disabled by default + `(#:tests? #f + #:configure-flags (list "-DBUILD_TESTS=ON"))) ; disabled by default (native-inputs (list bison doxygen extra-cmake-modules flex googletest)) (inputs @@ -921,7 +923,9 @@ expression library, that is used in Krita.") (list kcoreaddons ki18n kxmlgui)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://apps.kde.org/de/kcolorchooser/") (synopsis "Color selector utility") (description "KColorChooser is a utility to select a color.") @@ -950,7 +954,9 @@ expression library, that is used in Krita.") ktextwidgets kwidgetsaddons kxmlgui)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "http://kolourpaint.org/") (synopsis "Paint program for KDE") (description "KolourPaint is a paint program for KDE. It is useful for @@ -1290,7 +1296,9 @@ submoduletest|cachetest|switchtest)"))))))) (base32 "1ajr7qaf4dcccl5pc09ywfa4mgrfpa3qq1w7x4lfmv82gvp7ld64")))) (build-system qt-build-system) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -1464,7 +1472,8 @@ multi-floor indoor maps.") (base32 "17p63a9igpbcv0xdziaf3d30n88rj9474w9yx2cpvh0m2nrv3582")))) (build-system qt-build-system) (arguments - (list #:qtbase qtbase)) + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -1543,7 +1552,8 @@ transport data and for performing public transport journey queries.") (base32 "06g43b1l72aghkhcn59ss8kjc4sammn5ii5x5sql34kmvgiwamwk")))) (build-system qt-build-system) (arguments - (list #:qtbase qtbase)) + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules)) (inputs @@ -1569,7 +1579,8 @@ for scanner hardware.") (base32 "1b0cbf4cq0ajl5xlpy75wj4p1zsri2igh23pswj8ysnrrk0pxg5w")))) (build-system qt-build-system) (arguments - (list #:qtbase qtbase)) + (list #:qtbase qtbase + #:tests? #f)) (native-inputs (list extra-cmake-modules)) (inputs @@ -1805,7 +1816,9 @@ to perform data analysis.") kstatusnotifieritem kxmlgui qt5compat)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://kde.org/applications/system/kdk") (synopsis "View Disk Usage") (description "KDiskFree displays the available file devices (hard drive @@ -1838,7 +1851,9 @@ unmount drives and view them in a file manager.") kconfigwidgets kstatusnotifieritem qt5compat)) - (arguments (list #:qtbase qtbase)) + (arguments + (list #:qtbase qtbase + #:tests? #f)) (home-page "https://kde.org/applications/utilities/ktimer") (synopsis "Countdown Launcher") (description "KTimer is a little tool to execute programs after some time. @@ -1862,6 +1877,7 @@ timers for each task can be started, stopped, changed, or looped.") (list extra-cmake-modules perl python qttools kdoctools)) (inputs (list qtbase karchive ki18n kio kxmlgui kdbusaddons)) + (arguments (list #:tests? #f)) ;; Note: The 'hotshot2calltree' and 'pprof2calltree' scripts depend on ;; Python and PHP, respectively. These are optional and we ignore them ;; for now. @@ -2112,7 +2128,9 @@ PO template files.") (sha256 (base32 "0rpam31s5cvky4w3bb2qp1pjv0gm9f63a2jv6bcim7qnz050bvvn")))) (build-system cmake-build-system) - (arguments (list #:configure-flags #~(list "-DQT_MAJOR_VERSION=6"))) + (arguments + (list #:tests? #f + #:configure-flags #~(list "-DQT_MAJOR_VERSION=6"))) (native-inputs (list extra-cmake-modules)) (inputs @@ -2135,7 +2153,10 @@ Mobipocket e-books in Dolphin and other KDE apps.") (sha256 (base32 "073px490jvp5f2979ipzbjlw6qg55cfzisj1g3a1f9wwqshm3q5q")))) (build-system cmake-build-system) - (arguments (list #:configure-flags #~(list "-DQT_MAJOR_VERSION=6"))) + (arguments + (list + #:tests? #f + #:configure-flags #~(list "-DQT_MAJOR_VERSION=6"))) (native-inputs (list extra-cmake-modules)) (inputs @@ -2163,6 +2184,7 @@ picture metadata as EXIF/IPTC and XMP.") (inputs (list kdbusaddons kdnssd ki18n kio)) (arguments (list #:qtbase qtbase + #:tests? #f #:configure-flags #~(list "-DQT_MAJOR_VERSION=6"))) (home-page "https://apps.kde.org/kio_zeroconf/") diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index 8e54fc9e67..5b90013b03 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -1916,6 +1916,8 @@ misuse of libraries outside of the store."))) (build-system cmake-build-system) (arguments (list + ;; No access to a compiled llvm-lit since compiled separately from llvm. + #:tests? #f #:configure-flags #~(list "-DOPENMP_TEST_CXX_COMPILER=clang++") #:phases #~(modify-phases %standard-phases diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 550ca02b40..b03e51b07a 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -5498,6 +5498,7 @@ bio-chemistry.") (build-system cmake-build-system) (arguments (list + #:tests? #f #:configure-flags #~(list "-DBUILD_SHARED_LIBS=ON" #$@(if (target-x86?) @@ -8750,6 +8751,7 @@ reduction.") (inputs (list boost glu mesa qtbase-5)) (build-system cmake-build-system) + (arguments (list #:tests? #f)) (synopsis "Toolset for the mCRL2 formal specification language") (description "@dfn{mCRL2} (micro Common Representation Language 2) is a formal @@ -8768,7 +8770,8 @@ analysed.") (inputs (list boost)) (arguments - '(#:configure-flags '("-DMCRL2_ENABLE_GUI_TOOLS=OFF"))))) + (list #:tests? #f + #:configure-flags #~(list "-DMCRL2_ENABLE_GUI_TOOLS=OFF"))))) (define-public tcalc (package diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index a72596e17b..886411d0f8 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1149,7 +1149,8 @@ control of your private keys, no previous conversation is compromised.") "06bb6c2nciwbknfschxd2fjkpigd6i0zgwl6jiz5lm7gcadssrdy")))) (build-system cmake-build-system) (arguments - `(#:configure-flags + `(#:tests? #f + #:configure-flags (list "-DWANT_CYRUS=ON" "-DWANT_I18N=ON" "-DWANT_PERL=ON" @@ -2977,6 +2978,7 @@ as well as on desktop platforms. It's based on libpurple and ModemManager.") (build-system cmake-build-system) (arguments (list + #:tests? #f #:configure-flags #~(list "-DWITH_WEBSOCKETS=ON"))) (inputs (list openssl libxslt libwebsockets-for-mosquitto)) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 1706b0d649..ecbbe45609 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -1009,7 +1009,7 @@ settings (aliasing, linear interpolation and cubic interpolation).") (base32 "1i5gz5zck8s0kskjgnx9c75gh7zx0kbjsqzl2765f99p9svprirq")))) (build-system qt-build-system) (arguments - `(#:test-target "tests" + `(#:tests? #f ; require audio subsystem #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-data-directory diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index 58260fcf01..a595d8a0fc 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -841,6 +841,7 @@ interaction.") zlib)) (arguments (list + #:tests? #f #:configure-flags #~(list "-DPODOFO_BUILD_SHARED=ON") #:phases @@ -886,6 +887,8 @@ extracting content or merging files.") lua-5.1 openssl zlib)) + (arguments + (list #:tests? #f)) (home-page "https://github.com/podofo/podofo") (synopsis "Tools to work with the PDF file format") (description diff --git a/gnu/packages/potassco.scm b/gnu/packages/potassco.scm index 9c6f42bdec..08120663f6 100644 --- a/gnu/packages/potassco.scm +++ b/gnu/packages/potassco.scm @@ -170,6 +170,7 @@ satisfiability checking (SAT).") (build-system cmake-build-system) (arguments (list + #:tests? #f #:configure-flags #~`("-DCLINGO_BUILD_TESTS=on" "-DCLINGO_INSTALL_LIB=on" "-DCLINGO_BUILD_STATIC=off" @@ -295,7 +296,8 @@ and goals over linear (in)equations.") "0050qp5gpznigpm743br8yhjg62gl739xmzkfr70hlqm1xrj0sa7")))) (build-system cmake-build-system) (arguments - (list #:phases + (list #:tests? #f + #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-cmake (lambda _ diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 9489ceadd8..c6b72c09c3 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -327,7 +327,8 @@ window managers, that don't provide Qt integration by themselves.") (base32 "0d0pxynlyfgavf6l1b1z7zpmbrzm96hkphnqnalr7mshm147450g")))) (build-system cmake-build-system) - (arguments (list #:configure-flags #~(list + (arguments (list #:tests? #f + #:configure-flags #~(list "-DKDDockWidgets_QT6=ON" "-DKDDockWidgets_TESTS=ON"))) (inputs @@ -2623,6 +2624,7 @@ that helps in Qt development."))) (build-system cmake-build-system) (arguments (list + #:tests? #f ;; The build system attempts to fetch online resources and fails when ;; building the test suite. #:configure-flags #~(list "-DQT_BUILD_TESTS=OFF") @@ -5078,6 +5080,7 @@ different kinds of sliders, and much more.") (base32 "13n2qb8q9jz4ihwlbs7y15lw90w9113gb1bgnb1dggpxkj64r953")))) (build-system cmake-build-system) + (arguments (list #:tests? #f)) (native-inputs (list qttools-5)) (inputs diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index c73cae9882..dbd985e6df 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -1230,6 +1230,7 @@ DMR, NXDN, P25, etc.") (sha256 (base32 "12p193ngcs65nd3lynry119nhv40mikamqkw37wdln7lawx3nw7p")))) (build-system cmake-build-system) + (arguments (list #:tests? #f)) (native-inputs (list doxygen pkg-config @@ -2437,7 +2438,8 @@ intended for people who want to learn receiving and sending morse code.") (base32 "1lhsmyhljqa6apzbysqar56wpfcdvs3pq9ia1mshqd6d3hz74s78")))) (build-system cmake-build-system) (arguments - (list #:configure-flags #~(list "-DGGMORSE_SUPPORT_SDL2=OFF") + (list #:tests? #f ; no tests + #:configure-flags #~(list "-DGGMORSE_SUPPORT_SDL2=OFF") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'disable-imgui-build (lambda _ @@ -3122,6 +3124,7 @@ various hardware.") (sha256 (base32 "11v5idwvfi9w60qg4fgqgvm7ahmb0ys4j094qv4c93r92kd9d3f9")))) (build-system qt-build-system) + (arguments (list #:tests? #f)) ; no tests (native-inputs (list pkg-config)) (inputs diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm index 9b5b8c9a10..37923aab16 100644 --- a/gnu/packages/sdl.scm +++ b/gnu/packages/sdl.scm @@ -810,7 +810,8 @@ mappings intended for the use with SDL2's game controller functionality.") (base32 "18g9qavk0wh1bvfh6gdi5q75fd57dk0gp5r20c80x7xnp2ywywih")))) (build-system cmake-build-system) - (arguments (list #:configure-flags + (arguments (list #:tests? #f + #:configure-flags #~(list "-DBUILD_TESTS=ON"))) (propagated-inputs (list sdl3)) (home-page "https://github.com/sabdul-khabir/SDL3_gfx") diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index 8175e4798d..998a6bbf94 100644 --- a/gnu/packages/serialization.scm +++ b/gnu/packages/serialization.scm @@ -657,7 +657,8 @@ it a convenient format to store user input files.") "1180ln8blrb0mwzpcf78k49hlki6di65q77rsvglf83kfcyh4d7z")))) (build-system cmake-build-system) (arguments - (list #:configure-flags + (list #:tests? #f + #:configure-flags #~'("-DBUILD_SHARED_LIBS:BOOL=YES" #$@(if (%current-target-system) #~("-DJSONCPP_WITH_POST_BUILD_UNITTEST=OFF") diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm index c833bcc0cc..2fa8013485 100644 --- a/gnu/packages/telephony.scm +++ b/gnu/packages/telephony.scm @@ -1291,6 +1291,7 @@ route audio during phone calls, and a library.") (sha256 (base32 "1k874v9bzipk5x9nr21f3259f5sk7nxnnz618kji0mx9aa0fvjf1")))) (build-system cmake-build-system) + (arguments (list #:tests? #f)) ; disabled by default and still failing (native-inputs (list pkg-config)) (inputs (list openssl zlib)) (synopsis "Library for real-time communications with async IO support") @@ -1321,7 +1322,8 @@ Binary Floor Control Protocol}, @acronym{HTTP, Hypertext Transfer Protocol} and (base32 "1xwvhpvrs6anw8mq709ff9d6vm0mizf6sj1sz69y85s7p4qz4rfz")))) (build-system cmake-build-system) (arguments - `(#:make-flags (list (string-append "PREFIX=" %output)) + `(#:tests? #f + #:make-flags (list (string-append "PREFIX=" %output)) #:phases (modify-phases %standard-phases (add-after 'unpack 'neuter-module_path (lambda* (#:key outputs #:allow-other-keys) diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index c693e043c4..ae8bce7b3e 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -1463,6 +1463,7 @@ reading and writing CSV and TSV files.") (arguments ;; Required to locate the install script properly. `(#:out-of-source? #f + #:tests? #f #:parallel-build? #f ;occasionally failed. #:imported-modules (,@%cmake-build-system-modules diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 368a01941b..5cda7f1eea 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -4152,6 +4152,7 @@ be used for realtime video capture via Linux-specific APIs.") (arguments (list #:cmake cmake-next ;needs cmake >= 3.28 + #:tests? #f #:configure-flags #~(let ((libdir (string-append (assoc-ref %outputs "out") "/lib"))) (list (string-append "-DOBS_VERSION_OVERRIDE=" #$version) @@ -6112,7 +6113,8 @@ create smoother and stable videos.") qtsvg-5 zeromq)) (arguments - `(#:configure-flags + `(#:tests? #f + #:configure-flags (list (string-append "-DPYTHON_MODULE_PATH:PATH=" %output "/lib/python" ,(version-major+minor (package-version python)) "/site-packages") diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index 89a001b51c..b67f5b1373 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -811,7 +811,8 @@ is based on Vim's builtin plugin support.") "1j3z7jay0m6g06v04falrzr062g07xr4svbrc3hywlqi2h6rrvk5")))) (build-system cmake-build-system) (arguments - (list #:modules + (list #:tests? #f + #:modules '((srfi srfi-26) (guix build cmake-build-system) (guix build utils)) #:configure-flags diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 61c9ec63a5..9b8f3eacd4 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -1765,7 +1765,8 @@ C.") (search-patches "yajl-CVE-2023-33460.patch")))) (build-system cmake-build-system) (arguments - '(#:phases + '(#:tests? #f ; no test suite + #:phases (modify-phases %standard-phases (add-after 'patch-source-shebangs 'patch-tests (lambda _ @@ -7625,6 +7626,7 @@ protocols.") (build-system cmake-build-system) (arguments (list + #:tests? #f #:configure-flags #~(list "-DBUILD_SHARED_LIBS=ON" "-DCIVETWEB_ENABLE_CXX=ON" @@ -9030,6 +9032,7 @@ HTTrack is fully configurable, and has an integrated help system.") (build-system cmake-build-system) (arguments (list + #:tests? #f #:phases '(modify-phases %standard-phases (add-after 'unpack 'use-system-googletest |