#!/bin/sh # Create the build system. set -e -x # Generate stubs for translations. langs=`find po/doc -type f -name 'guix-manual*.po' \ | sed -e 's,guix-manual\.,,' \ | xargs -n 1 -I{} basename {} .po` for lang in ${langs}; do if [ ! -e "doc/guix.${lang}.texi" ]; then echo "@setfilename guix.${lang}.info" > "doc/guix.${lang}.texi" echo "@include version-${lang}.texi" >> "doc/guix.${lang}.texi" # Ensure .po file is newer. touch "po/doc/guix-manual.${lang}.po" fi done langs=`find po/doc -type f -name 'guix-cookbook*.po' \ | sed -e 's,guix-cookbook\.,,' \ | xargs -n 1 -I{} basename {} .po` for lang in ${langs}; do if [ ! -e "doc/guix-cookbook.${lang}.texi" ]; then echo "@setfilename guix-cookbook.${lang}.info" > "doc/guix-cookbook.${lang}.texi" # Ensure .po file is newer. touch "po/doc/guix-cookbook.${lang}.po" fi done exec autoreconf -vfi pe='submit' value='switch'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/utils.scm
AgeCommit message (Expand)Author
2021-07-14utils: Define a target-x86-32? and target-x86-64? predicate....Maxime Devos
2021-07-14utils: Define 'target-linux?' predicate....Maxime Devos
2021-02-03utils: Add string distance....zimoun
2021-02-01utils: Add 'version-unique-prefix'....Ludovic Courtès
2021-01-13utils: Support zstd compression via Guile-zstd....Ludovic Courtès
2021-01-13utils: Remove 'compressed-output-port'....Ludovic Courtès
2020-08-24Use "guile-zlib" and "guile-lzlib" instead of (guix config)....Mathieu Othacehe
2019-06-20utils: canonical-newline-port: Fix handling of carriage return at buffer end....Robert Vollmert
2019-05-27utils: Support compression and decompression with lzip....Ludovic Courtès
2019-05-27utils: Test 'compressed-port' and 'decompressed-port' for both gzip and xz....Ludovic Courtès
2018-05-13utils: Add 'version-prefix?'....Ludovic Courtès
2018-05-10union: Add 'relative-file-name'....Ludovic Courtès