aboutsummaryrefslogtreecommitdiff
path: root/manifest.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-01-18 11:33:15 -0500
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-01-18 20:54:07 -0500
commit3f94182db49d6f29588b4ac2157c945fbaf73b42 (patch)
tree4409e446df154a3ba26d27247a907fae0c1cc4c9 /manifest.scm
parent24e6ea1b8ec292808a4987ff2fc9499054054fe4 (diff)
downloadguix-3f94182db49d6f29588b4ac2157c945fbaf73b42.tar.gz
guix-3f94182db49d6f29588b4ac2157c945fbaf73b42.zip
gnu: networkmanager-qt: Update to 5.114.0.
* gnu/packages/kde-frameworks.scm (networkmanager-qt): Update to 5.114.0. Change-Id: I44ec1968f2c02e8f3393899330243dc7ff1e6f65
Diffstat (limited to 'manifest.scm')
0 files changed, 0 insertions, 0 deletions
g the string or 2. crash with the error "string contains #\\nul character", depending on the locale used. This change works around this limitation by first replacing the NUL character by an unused Unicode code point, doing the substitution, then reverting the replacement. * guix/build/utils.scm (unused-private-use-code-point) (replace-char): New procedures. (substitute): Make use of the above procedures to work around the NUL character regexp engine limitation. * tests/build-utils.scm: Add tests. Co-authored-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> 2020-11-16Properly deal with build directories containing '~'.Ludovic Courtès Fixes <https://bugs.gnu.org/44626>. Reported by Vagrant Cascadian <vagrant@debian.org>. * tests/build-utils.scm ("wrap-script, simple case"): Pass SCRIPT-CONTENTS to 'display' rather than 'format'. * gnu/services/base.scm (file-system->shepherd-service-name) [valid-characters, mount-point]: New variables. Filter out invalid store file name characters from the mount point of FILE-SYSTEM. 2019-11-26tests: Avoid unnecessary use of 'mock'.Ludovic Courtès * tests/build-utils.scm ("wrap-script, simple case"): Use the real 'which' instead of mocking it. 2019-11-26tests: Avoid (catch 'srfi-34 …) form.Ludovic Courtès * tests/build-utils.scm ("wrap-script, raises condition"): Use 'guard' instead of "catch 'srfi-34". 2019-06-17utils: Add 'invoke/quiet'.Ludovic Courtès * gnu/build/bootloader.scm (G_): Remove. (open-pipe-with-stderr, invoke/quiet): Move to... * guix/build/utils.scm: ... here. Use 'let-values' instead of 'define-values' because Guile 2.0 (the bootstrap Guile) doesn't know about 'define-values'. * po/guix/POTFILES.in: Remove gnu/build/bootloader.scm, and add guix/build/utils.scm. * tests/build-utils.scm: Remove import of (gnu build bootloader). 2019-03-23Merge branch 'staging' into core-updatesMarius Bakke 2019-03-16booloader: Add 'invoke/quiet'.Ludovic Courtès * gnu/build/bootloader.scm (G_): New macro. (open-pipe-with-stderr, invoke/quiet): New procedures. * tests/build-utils.scm ("invoke/quiet, success") ("invoke/quiet, failure") ("invoke/quiet, failure, message on stderr"): New tests. * po/guix/POTFILES.in: Add bootloader.scm. 2019-03-16tests: Add 'with-environment-variable'.Ludovic Courtès * tests/scripts.scm (with-environment-variable): Move to... * guix/tests.scm (with-environment-variable): ... here. * tests/build-utils.scm ("wrap-program, one input, multiple calls"): Use it instead of 'setenv'. 2019-02-08guix: Add wrap-script.Ricardo Wurmus * guix/build/utils.scm (wrap-script): New procedure. (&wrap-error): New condition. (wrap-error?, wrap-error-program, wrap-error-type): New procedures. * tests/build-utils.scm ("wrap-script, simple case", "wrap-script, with encoding declaration", "wrap-script, raises condition"): New tests.