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
span>Ricardo Wurmus af11724ff95439b044244e733c997b8211'>guix: texlive importer: Set #:texlive-latex-bin? when appropriate....Nicolas Goaziou 2023-07-18guix: texlive importer: Fix build system and arguments for meta-packages....Nicolas Goaziou 2023-07-18guix: texlive importer ignores dependencies unnecessary in Guix....Nicolas Goaziou 2023-07-18guix: Let texlive importer suggest format creation....Nicolas Goaziou 2023-07-18guix: import: Improve importing texlive meta packages....Nicolas Goaziou 2023-07-18guix: import: Handle native inputs in texlive importer....Nicolas Goaziou 2023-07-18guix: import: Fix multiple licenses output in texlive importer....Nicolas Goaziou 2023-07-18guix: import: Improve home-page generation in texlive importer....Nicolas Goaziou 2023-07-18guix: import: Update texlive importer according to new build system....Nicolas Goaziou 2023-05-31tests: Use quasiquoted 'match' patterns for package sexps....Ludovic Courtès 2023-04-19tests: Fix texlive->guix-package test....Maxim Cournoyer 2022-07-22tests: Adjust texlive importer tests....Ricardo Wurmus 2022-01-13import: texlive: Remove labels from 'propagated-inputs' field....Ludovic Courtès 2022-01-11tests: Fix texlive test by sorting locations....Ricardo Wurmus 2021-11-18tests: Replace texlive importer tests....Ricardo Wurmus 2021-03-06tests: do not hard code HTTP ports...Maxime Devos