all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob abd1ed353e612edece71b026cbe06aefc67b3d04 1078 bytes (raw)
name: bootstrap 	 # note: path name is non-authoritative(*)

 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
34
 
#!/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

exec 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
cp build-aux/mdate-from-git build-aux/mdate-sh
chmod -wx build-aux/mdate-sh

debug log:

solving abd1ed353e ...
found abd1ed353e in https://yhetil.org/guix/bb7d78763d44b6f6b7b38e72f90db8f7208496d1.1713087991.git.janneke@gnu.org/
found de024aeaa5 in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100755 de024aeaa5c225b5dc0dbea32d53d9b845ed9279	bootstrap

applying [1/1] https://yhetil.org/guix/bb7d78763d44b6f6b7b38e72f90db8f7208496d1.1713087991.git.janneke@gnu.org/
diff --git a/bootstrap b/bootstrap
index de024aeaa5..abd1ed353e 100755

Checking patch bootstrap...
Applied patch bootstrap cleanly.

index at:
100755 abd1ed353e612edece71b026cbe06aefc67b3d04	bootstrap

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.