aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
blob: 5bf83175e59a8fc62f53ff2329a7d3ac03d9e2c9 (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
30
31
32
33
#!/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
2 13:50:33 +0200'>2024-03-12gnu: ruby-x25519: Fix build on non x86_64....Zheng Junjie 2024-02-25Merge branch 'master' into gnome-teamLiliana Marie Prikler 2024-02-24gnu: Add ruby-fog-libvirt....Hartmut Goebel 2024-02-24gnu: Add ruby-fog-xml....Hartmut Goebel 2024-02-24gnu: Add ruby-fog-json....Hartmut Goebel 2024-02-24gnu: Add ruby-fog-core....Hartmut Goebel 2024-02-24gnu: Add ruby-libvirt....Hartmut Goebel 2024-02-24gnu: ruby-childprocess: Update to 4.1.0....Hartmut Goebel 2024-02-24gnu: Add ruby-hashicorp-checkpoint....Hartmut Goebel 2024-02-24gnu: Add ruby-vagrant-cloud....Hartmut Goebel 2024-02-24gnu: Add ruby-grpc....Hartmut Goebel 2024-02-24gnu: Add ruby-googleapis-common-protos-types....Hartmut Goebel 2024-02-24gnu: Add ruby-google-protobuf....Hartmut Goebel 2024-02-24gnu: Add ruby-time....Hartmut Goebel 2024-02-24gnu: Add ruby-serverspec....Hartmut Goebel 2024-02-24gnu: Add ruby-specinfra....Hartmut Goebel 2024-02-24gnu: Add ruby-sfl....Hartmut Goebel 2024-02-24gnu: Add ruby-rgl....Hartmut Goebel 2024-02-24gnu: Add ruby-stream....Hartmut Goebel 2024-02-24gnu: Add ruby-stringio....Hartmut Goebel 2024-02-24gnu: Add ruby-pairing-heap....Hartmut Goebel 2024-02-24gnu: Add ruby-net-telnet....Hartmut Goebel 2024-02-24gnu: Add ruby-net-sftp....Hartmut Goebel 2024-02-24gnu: Add ruby-fake-ftp....Hartmut Goebel 2024-02-24gnu: Add ruby-net-ftp....Hartmut Goebel 2024-02-24gnu: Add ruby-ipaddr....Hartmut Goebel 2024-02-24gnu: Add ruby-excon....Hartmut Goebel 2024-02-24gnu: Add ruby-test-unit-ruby-core....Hartmut Goebel 2024-02-13Merge branch 'master' into gnome-teamLiliana Marie Prikler 2024-02-12gnu: ruby-3.2: Update to 3.2.3....Remco van 't Veer