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
692c009d6'>derivations: Add properties....Ludovic Courtès 2018-11-14Merge branch 'master' into core-updatesMarius Bakke 2018-11-12tests: Add 'test-assertm' to (guix tests)....Ludovic Courtès 2018-11-05Merge branch 'master' into core-updatesMarius Bakke 2018-10-27gexp: 'gexp-modules' now consistently deletes duplicates....Ludovic Courtès 2018-10-05Merge branch 'master' into core-updatesMarius Bakke 2018-09-27tests: Update (guix build store-copy) tests....Ludovic Courtès 2018-09-09Merge branch 'master' into core-updatesMarius Bakke 2018-09-08gexp: 'file-union' accepts directory names....Ludovic Courtès 2018-07-26gexp: Remove backward compatibility hack for 'imported-files'....Ludovic Courtès 2018-07-19gexp: 'imported-files/derivation' can copy files instead of symlinking....Ludovic Courtès 2018-07-19gexp: 'imported-files' no longer creates a derivation by default....Ludovic Courtès 2018-07-13tests: Don't rely on temporary directories being permanent....Leo Famulari 2018-06-14store-copy: 'read-reference-graph' returns a list of records....Ludovic Courtès 2018-06-01gexp: Add 'with-extensions'....Ludovic Courtès 2018-04-11gexp: 'scheme-file' can splice expressions....Ludovic Courtès 2018-03-23gexp: 'program-file' has a new #:module-path parameter....Ludovic Courtès 2018-03-23gexp: 'gexp->script' and 'gexp->file' have a new #:module-path parameter....Ludovic Courtès 2017-07-17gexp: 'ungexp-splicing' properly accounts for nested native inputs....Ludovic Courtès 2017-04-19gexp: 'gexp-modules' accepts plain Scheme objects....Ludovic Courtès 2017-04-04gexp: 'lower-object' raises an exception when passed an invalid object....Ludovic Courtès 2017-03-16gexp: Add '=>' syntax to import computed modules....Ludovic Courtès 2017-01-01gexp: Support 'ungexp' forms in improper lists....Ludovic Courtès 2016-12-19gexp: Native inputs of nested gexps are properly accounted for....Ludovic Courtès 2016-11-19store: Add 'references*'....Ludovic Courtès 2016-09-09gexp: Add 'file-append'....Ludovic Courtès 2016-07-12gexp: Remove more uses of #:modules....Ludovic Courtès 2016-07-12gexp: Add 'with-imported-modules' macro....Ludovic Courtès 2016-06-16gexp: Add 'local-file' file name resolution test....Ludovic Courtès 2016-06-16gexp: Add #:select? parameter to 'local-file'....Ludovic Courtès 2016-04-03build: Add a Guile custom test driver using SRFI-64....Mathieu Lirzin 2016-03-20gexp: Add #:disallowed-references....Ludovic Courtès 2016-03-06tests: Disable grafting by default for most tests....Ludovic Courtès 2015-11-04tests: Skip 'program-file' test when shebang is too long....Ludovic Courtès