aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
blob: a47269d87f1d6fd27bbaf634ac7439b38b32cca3 (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-cookbook\.,,' \
        | 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
'>2019-02-18gnu: Add ungoogled-chromium....Marius Bakke 2019-01-23gnu: linux-libre: Make CRYPTO_CRC32C a built-in on arm64....Mark H Weaver 2019-01-09gnu: linux-libre: Enable pressure stall information....Mark H Weaver 2019-01-01gnu: linux-libre: Update to 4.20, while retaining 4.19 LTS....Mark H Weaver 2018-10-28gnu: linux-libre: Enable BOCHS DRM support....Mathieu Othacehe 2018-10-23gnu: linux-libre: Update to 4.19....Mark H Weaver 2018-10-19gnu: linux-libre: Enable SHPC PCI Hotplug driver on ARM64....Mark H Weaver 2018-09-25gnu: linux-libre: Enable SHPC PCI Hotplug driver, now built-in only....Mark H Weaver 2018-08-18gnu: linux-libre: Update to 4.18.1....Mark H Weaver 2018-07-04gnu: Remove linux-libre@4.1....Mark H Weaver 2018-06-05gnu: linux-libre: Update to 4.17....Mark H Weaver 2018-05-21gnu: linux-libre: Enable build for aarch64-linux....Vagrant Cascadian 2018-05-11pack: Relocatable wrapper now properly maps the current UID/GID....Ludovic Courtès 2018-05-10pack: Add '--relocatable'....Ludovic Courtès 2018-04-11gnu: linux-libre: Update to 4.16.1....Mark H Weaver