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
ony.scm (mumble): Update to 1.5.634. [source]: Update 3rd party dirs kept during build. [arguments]: Update build options for bundled dependencies. [inputs]: Depend on OpenSSL 3 and N. Lohmann's JSON lib. [license]: Update licenses for bundled dependencies. Change-Id: I39498ffa143e4416b06a6aa1a31fd46cd0ba2e3b Signed-off-by: Ludovic Courtès <ludo@gnu.org> Ivan Vilata i Balaguer 2024-10-15gnu: sipwitch: Fix build....* gnu/packages/telephony.scm (sipwitch): Fix build. [origin]<patches>: Add sipwitch-fix-build-with-exosip5.patch here... * gnu/packages/patches: ...here and... * gnu/local.mk: ...here. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nicolas Graves 2024-10-15gnu: exosip: Update to 5.3.0. [security fixes]...This fixes CVE-2014-10375. * gnu/packages/telephony.scm (exosip): Update to 5.3.0. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nicolas Graves 2024-10-15gnu: osip: Update to 5.3.1....* gnu/packages/telephony.scm (osip): Update to 5.3.1. [origin]<patches>: Remove patch. * gnu/packages/patches/osip-CVE-2017-7853.patch : Remove it. * gnu/local.mk: Remove patch. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nicolas Graves