aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
blob: de024aeaa5c225b5dc0dbea32d53d9b845ed9279 (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
#!/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
0:25 +0300'>2020-09-22Revert "gnu: texlive-latex-psnfss: Ensure that font definition files are inst......Efraim Flashner 2020-09-22gnu: texlive-latex-psnfss: Ensure that font definition files are installed....Paul Garlick 2020-09-21gnu: Add texlive-caption....Paul Garlick 2020-09-21gnu: texlive-microtype: Tweak description....Paul Garlick 2020-09-18gnu: Add texlive-microtype....Paul Garlick 2020-09-17gnu: Add texlive-units....Paul Garlick 2020-09-16gnu: Add texlive-todonotes....Paul Garlick 2020-09-07gnu: Add texlive-biblatex....Paul Garlick 2020-09-04gnu: texlive-logreq: Correct synopsis....Paul Garlick 2020-09-04gnu: Add texlive-logreq....Paul Garlick 2020-07-12gnu: Remove ".git" from "https://github/…/….git"....Ludovic Courtès 2020-07-05gnu: rubber: Update to 1.5.1....Arun Isaac 2020-06-11gnu: lyx: Use qt-build-system....Efraim Flashner 2020-06-11gnu: lyx: Don't install to custom directory....Efraim Flashner 2020-06-11gnu: lyx: Update to 2.3.5.1....Efraim Flashner 2020-06-11gnu: lyx: Wrap binary....Efraim Flashner 2020-06-02gnu: texlive-csquotes: Update source checksum....Marius Bakke 2020-06-01gnu: biber: Update to 2.12....Ludovic Courtès 2020-04-30Merge branch 'master' into core-updates...Marius Bakke 2020-04-27gnu: Add texlive-inconsolata....Ricardo Wurmus 2020-04-26Merge branch 'master' into core-updatesMarius Bakke 2020-04-25gnu: texlive-latex-pdfx: Fix typo....Matthew Kraai 2020-04-24Merge branch 'master' into core-updatesMarius Bakke 2020-04-24gnu: biber: Downgrade to 2.11....Ludovic Courtès 2020-04-24gnu: biber: Address test failures....Ludovic Courtès 2020-04-24gnu: Add texlive-csquotes....Ricardo Wurmus 2020-04-23gnu: Add texlive-marginnote....Ricardo Wurmus