This is an automated email from the git hooks/post-receive script. guix_mirror_bot pushed a commit to branch master in repository guix.
The following commit(s) were added to refs/heads/master by this push: new c2cee267e8 gnu: yggtray: Update to 0.1.14. c2cee267e8 is described below commit c2cee267e8aa939a9d19d30eb6e9c28757cab8ab Author: Artyom V. Poptsov <poptsov.art...@gmail.com> AuthorDate: Tue May 27 07:16:27 2025 +0300 gnu: yggtray: Update to 0.1.14. * gnu/packages/networking.scm (yggtray): Update to 0.1.14. [native-inputs]: Add check and pkg-config. Remove doxygen and graphviz as they are required only for the building of the development documentation which is currently not getting installed with the package anyway. [arguments]<#tests?>: Remove. [arguments]<#:phases>: Replace "check" phase. Change-Id: Ia5b7e07f77101c37fac8f1983dc397d9a19ff7ec --- gnu/packages/networking.scm | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 5d52b86ad6..721b1fddf1 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -4832,7 +4832,7 @@ IPv6 Internet connectivity - it also works over IPv4.") (define-public yggtray (package (name "yggtray") - (version "0.1.13") + (version "0.1.14") (source (origin (method git-fetch) @@ -4841,11 +4841,10 @@ IPv6 Internet connectivity - it also works over IPv4.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1ivhhq25kz1di928icf361yf0k8lsf7wncf1f3fbch2gvivzm23a")))) + (base32 "1n4pg5fdbqf579d4xajah5y5dawizp8c8difwfsk7xrvjd3w5rcf")))) (build-system cmake-build-system) (arguments (list - #:tests? #f ;No tests. #:modules '((guix build cmake-build-system) (guix build qt-utils) (guix build utils)) @@ -4855,8 +4854,14 @@ IPv6 Internet connectivity - it also works over IPv4.") (lambda* (#:key inputs #:allow-other-keys) (wrap-qt-program "yggtray" #:output #$output - #:inputs inputs)))))) - (native-inputs (list cmake-minimal doxygen graphviz)) + #:inputs inputs))) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "./unit_tests"))))))) + (native-inputs (list cmake-minimal + check + pkg-config)) (inputs (list bash-minimal qtbase-5 qttools-5 qtwayland-5 yggdrasil)) (home-page "https://github.com/the-nexi/yggtray") (synopsis "Yggdrasil tray and control panel")