#!/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\.,,;s,\.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\.,,;s,\.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
option>
gnu: Simplify package inputs....This commit was obtained by running:
./pre-inst-env guix style
without any additional argument.
Ludovic Courtès
2021-11-21
gnu: genimage: Update to 14-1.11bb044....Update to commit 11bb04455 to integrate fixes related to new genext2fs and
e2fsprogs versions.
* gnu/packages/genimage.scm (genimage): Update to 14-1.11bb044.
[arguments]{fix-failing-tests}: Update it.
* gnu/packages/patches/genimage-mke2fs-test.patch: Update it.
Mathieu Othacehe
2021-11-12
gnu: genimage: Update to 14....Update genimage from version 11 to 14. A patch is required for the
tests due to differences in ext tooling.
* gnu/local.mk (dist_patch_DATA): Replace patch reference.
* gnu/packages/genimage.scm: Update package source.
* gnu/packages/patches/genimage-mke2fs-test.patch: New patch file.
* gnu/packages/patches/genimage-signedness.patch: Delete obsolete patch.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Ryan Sundberg
2021-10-21
gnu: genimage: Factorise substitutions....* gnu/packages/genimage.scm (genimage)[arguments]: Factorise input
substitution for great line savings; also fun. Don't sneakily replace
mkdosfs with mkfs.vfat. Remove obsolete fixes. Fix tests in their
own 'fix-failing-tests phase. Don't explicitly return #t from any
phases.