aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
blob: c9e7a084a119a0edcadd991331cba5468183a0b5 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/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-manual\.,,' \
        | 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
:51 +0200'>2020-07-01channels: Properly diagnose test failure....Ludovic Courtès 2020-07-01channels: Make channel introductions public....Ludovic Courtès 2020-06-28channels: Error out when the 'guix' channel lacks an introduction....Ludovic Courtès 2020-06-25channels: Fix test for introductory commit signer....Ludovic Courtès 2020-06-16channels: Make 'validate-pull' call right after clone/pull....Ludovic Courtès 2020-06-16channels: 'latest-channel-instance' authenticates Git checkouts....Ludovic Courtès 2020-05-25channels: 'latest-channel-instances' guards against non-forward updates....Ludovic Courtès 2020-05-25git: 'update-cached-checkout' returns the commit relation....Ludovic Courtès 2020-05-07channels: Add mechanism to patch checkouts of the 'guix channel....Ludovic Courtès 2019-09-23channels: Allow news entries to refer to a tag....Ludovic Courtès 2019-09-23channels: Add support for a news file....Ludovic Courtès 2019-07-19channels: Always provide a <channel-metadata> record....Ludovic Courtès 2019-07-19channels: Strictly check the version of '.guix-channel'....Ludovic Courtès 2019-01-20inferior: 'gexp->derivation-in-inferior' honors EXP's load path....Ludovic Courtès 2019-01-20channels: Don't pull from the same channel more than once....Ludovic Courtès 2018-12-09guix: Add support for channel dependencies....Ricardo Wurmus