mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Disable tests.
* gnu/packages/algebra.scm (fftw-cmake, eigen-benchmarks), * gnu/packages/android.scm (android-googletest), * gnu/packages/check.scm (googletest, snitch), * 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/fcitx5.scm (fcitx5-configtool), * 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, yakuake), * 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, gr-osmosdr, 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
This commit is contained in:
parent
d0ff9d19b8
commit
ce1c47ed9d
40 changed files with 380 additions and 123 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue