aboutsummaryrefslogtreecommitdiff
#!/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

autoreconf -vfi

# Replace Automake's build-aux/mdate-sh with build-aux/mdate-from-git, our
# own, reproducible version.
chmod +w build-aux/mdate-sh
rm -f build-aux/mdate-sh
ln -s mdate-from-git.scm build-aux/mdate-sh
0'>machine: Remove unnecessary record self-referencing bindings....Ludovic Courtès 2019-12-07machine: ssh: Deprecate missing 'host-key' field....Ludovic Courtès 2019-12-04machine: ssh: <machine-ssh-configuration> can include the host key....Ludovic Courtès 2019-10-22machine: digital-ocean: Rename 'enable-ipv6' to 'enable-ipv6?'....Ludovic Courtès 2019-10-22machine: Implement 'digital-ocean-environment-type'....Jakob L. Kreuze 2019-08-17machine: ssh: Fix sanity checks....宋文武 2019-08-16machine: Use 'become-command'....Jakob L. Kreuze 2019-08-15machine: Automatically authorize the coordinator's signing key....Jakob L. Kreuze 2019-08-15machine: Implement 'roll-back-machine'....Jakob L. Kreuze 2019-08-15machine: Allow non-root users to deploy....Jakob L. Kreuze 2019-08-14remote: Build derivations appropriate for the remote's...Jakob L. Kreuze 2019-08-07machine: Add 'build-locally?' field for managed hosts....Jakob L. Kreuze 2019-08-06machine: Implement safety checks....Jakob L. Kreuze 2019-08-06machine: Rename 'system' field....Jakob L. Kreuze 2019-07-26guix system: Add 'reconfigure' module....Jakob L. Kreuze 2019-07-18machine: Fix typo....Tobias Geerinckx-Rice 2019-07-06gnu: Add machine type for deployment specifications....Jakob L. Kreuze