aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
blob: c9e7a084a119a0edcadd991331cba5468183a0b5 (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
28
29
#!/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\.,,' \
        | xargs -n 1 -I{} basename {} .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-manual\.,,' \
        | xargs -n 1 -I{} basename {} .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
sg-avail'>...* gnu/packages/gimp.scm (gimp): Update to 2.10.18. Tobias Geerinckx-Rice 2020-03-11gnu: gegl: Update to 0.4.22....* gnu/packages/gimp.scm (gegl): Update to 0.4.22. Tobias Geerinckx-Rice 2020-02-12gnu: Fix copyright header typo....* gnu/packages/gimp.scm: Fix typo. Tobias Geerinckx-Rice 2020-02-12gnu: gimp-fourier: Update home page....* gnu/packages/gimp.scm (gimp-fourier)[home-page]: Use new (HTTPS) URI. Tobias Geerinckx-Rice 2020-02-01gnu: GIMP: Add support for WebP images....Suggested by Jorge P. de Morais Neto <jorge+list@disroot.org>. * gnu/packages/gimp.scm (gimp): Add libwebp. Leo Famulari 2020-01-22gnu: gegl: Update to 0.4.20....* gnu/packages/gimp.scm (gegl): Update to 0.4.20. Tobias Geerinckx-Rice 2020-01-22gnu: babl: Update to 0.1.74....* gnu/packages/gimp.scm (babl): Update to 0.1.74. Tobias Geerinckx-Rice 2019-11-10gnu: gimp: Update to 2.10.14....* gnu/packages/gimp.scm (gimp): Update to 2.10.14. Tobias Geerinckx-Rice 2019-11-10gnu: gegl: Update to 0.4.18....* gnu/packages/gimp.scm (gegl): Update to 0.4.18. [build-system]: Switch to Meson. [arguments]: Disable GObject introspection. Remove LDFLAGS fix. Tobias Geerinckx-Rice 2019-11-10gnu: gegl: Add source URIs....* gnu/packages/gimp.scm (gegl)[source]: Add URIs. Tobias Geerinckx-Rice 2019-11-10gnu: babl: Update to 0.1.72....* gnu/packages/gimp.scm (babl): Update to 0.1.72. [build-system]: Switch to Meson. [arguments]: Disable GObject introspection. [native-inputs]: Add pkg-config. [propagated-inputs]: Add lcms. Tobias Geerinckx-Rice