aboutsummaryrefslogtreecommitdiff
path: root/etc/manifests/time-travel.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-11-17 23:24:17 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-12-13 20:23:27 +0000
commit41e4c2d340ae173c8a4182209b12ed6e7dc46519 (patch)
tree230a7787ed38d03747b80e4c0b507376da5029ad /etc/manifests/time-travel.scm
parentacab85729ed43d5241f562b6801cd51e9cabca8d (diff)
downloadguix-41e4c2d340ae173c8a4182209b12ed6e7dc46519.tar.gz
guix-41e4c2d340ae173c8a4182209b12ed6e7dc46519.zip
gnu: python-pytest-httpbin: Update to 2.1.0.
* gnu/packages/web.scm (python-pytest-httpbin): Update to 2.1.0. Improve package style. [source]: Adjust URI as it's changed in PyPI. [build-system]: Swap to pyproject-build-system. Change-Id: I566ce5ec89f51dd13088fca6cb967a3793b6275b
Diffstat (limited to 'etc/manifests/time-travel.scm')
0 files changed, 0 insertions, 0 deletions
e013f2f0cca1097b0c944bb9aa88709'>home: services: environment-variables: Add support for literal strings....* gnu/home/services.scm (<literal-string>): New record type. (environment-variable-shell-definitions): Split 'shell-quote' into 'quote-string' and 'shell-double-quote'. Add 'shell-single-quote'. Add clause for 'literal-string' records. * tests/guix-home.sh: Test it. * doc/guix.texi (Essential Home Services): Document it. Ludovic Courtès 2022-08-05tests: Make tests inside container reproducible....* tests/guix-home.sh: Make tests inside container reproducible. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Andrew Tropin 2022-07-14home: services: environment-variables: Double-quote values....Fixes <https://issues.guix.gnu.org/54469>. Reported by Maxime Devos <maximedevos@telenet.be>. * gnu/home/services.scm (environment-variable-shell-definitions): New procedure, with code formerly in 'serialize-posix-env-vars'. (environment-variables->setup-environment-script): Change "setup-environment" from 'mixed-text-file' to 'computed-file', and use 'environment-variable-shell-definitions'. * tests/guix-home.sh: Test it. * gnu/home/services/shells.scm (serialize-posix-env-vars): Delegate to 'environment-variable-shell-definitions'. Ludovic Courtès 2022-07-14home: services: shells: Double-quote environment variable values....Fixes <https://issues.guix.gnu.org/56540>. Until now, environment variable values were emitted unquoted, producing invalid shell code if the value contains spaces for example. * gnu/home/services/shells.scm (serialize-posix-env-vars): Define 'shell-quote' procedure in staged code and use it for #$value. * tests/guix-home.sh: Add test for PS1 variable with a value containing spaces. Ludovic Courtès