aboutsummaryrefslogtreecommitdiff
path: root/nix/boost/format/parsing.cc
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2023-08-22 16:35:49 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2023-08-24 11:11:05 +0200
commit78241787d5d004f97540163f0c4d4050eec33198 (patch)
tree1d35712bba1f78046a9ff42f5c29e1392029a172 /nix/boost/format/parsing.cc
parent8819b6adcb3f705cb88051c9dff9e8b62bf38593 (diff)
downloadguix-78241787d5d004f97540163f0c4d4050eec33198.tar.gz
guix-78241787d5d004f97540163f0c4d4050eec33198.zip
gnu: Add texlive-datetime.
* gnu/packages/tex.scm (texlive-datetime): New variable.
Diffstat (limited to 'nix/boost/format/parsing.cc')
0 files changed, 0 insertions, 0 deletions
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> Mark H Weaver 2020-11-16Properly deal with build directories containing '~'....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. Ludovic Courtès