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
n title='2016-06-16 18:06:42 +0300'>2016-06-16gnu: openntpd: Update to 6.0p1....Efraim Flashner 2016-06-05gnu: ntp: Update to 4.2.8p8 [fixes CVE-2016-{4953, 4954, 4955, 4956, 4957}]....Leo Famulari 2016-06-05gnu: ntp: Add HTTPS URL....Leo Famulari 2016-05-09gnu: openntpd: Update to 5.9p1....Efraim Flashner 2016-05-05gnu: ntp: Update to 4.2.8p7 [security fixes]....Leo Famulari 2016-02-02gnu: ntp: Update to 4.2.8p6....Leo Famulari 2015-12-19gnu: Add tlsdate....Ludovic Courtès 2015-10-22gnu: ntp: Update to 4.2.8p4....Mark H Weaver 2015-07-18gnu packages: Clean up synopses and descriptions....Alex Kost 2015-07-11gnu: ntp: Update to 4.2.8p3; use system libevent....Mark H Weaver 2015-07-05gnu: Move content of openssl module into tls module....Andreas Enge 2015-04-18gnu: ntp: Update to 4.2.8p2....Mark H Weaver 2015-03-04gnu: Move 'which' to (gnu packages base)....Ludovic Courtès 2015-02-10gnu: Add openntpd....Taylan Ulrich Bayırlı/Kammer 2015-02-06gnu: ntp: Update to 4.2.8p1....Mark H Weaver 2014-12-25gnu: ntp: Update to 4.2.8....Mark H Weaver 2014-11-05gnu: ntp: Build with POSIX capabilities support on GNU/Linux....Ludovic Courtès 2014-10-19gnu: Add ntp...John Darrington