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
gnu: curl: Remove graft for 7.65.0....* gnu/packages/curl.scm (curl): Update to 7.65.0. (curl-7.65.0): Remove variable. Marius Bakke 2019-05-25Merge branch 'staging' into core-updatesMarius Bakke 2019-05-22gnu: curl: Update replacement to 7.65.0 [fixes CVE-2019-5435, CVE-2019-5436]...* gnu/packages/curl.scm (curl-7.64.0): Rename to ... (curl-7.65.0): ... this. Update to 7.65.0. (curl)[replacement]: Adjust accordingly. Marius Bakke 2019-05-14gnu: curl: Remove unused input....* gnu/packages/curl.scm (curl)[inputs]: Remove LIBSSH2-1.8.0. * gnu/packages/ssh.scm (libssh2-1.8.0): Remove variable. Marius Bakke 2019-05-14gnu: curl: Build against MIT Kerberos instead of GSS....* gnu/packages/curl.scm (curl)[inputs]: Change from GSS to MIT-KRB5. [arguments]: Adjust accordingly. Marius Bakke 2019-05-02gnu: curl: Update to 7.64.1....* gnu/packages/curl.scm (curl): Update to 7.64.1. Marius Bakke 2019-05-01Merge branch 'master' into core-updatesMarius Bakke 2019-04-07gnu: libssh2@1.8.0: Move to ssh.scm....This fixes a top-level circular dependency introduced in c1f4e6491cecc5d121ef371a8fb2aa0a07030d36. * gnu/packages/curl.scm (libssh2-1.8.0): Move to... * gnu/packages/ssh.scm (libssh2-1.8.0): ... here. Ludovic Courtès 2019-03-23Merge branch 'staging' into core-updatesMarius Bakke 2019-03-21gnu: curl: Use hidden-package for curl's libssh2....This is a followup to commits c1f4e6491cecc5d121ef371a8fb2aa0a07030d36 and af8f7eb4f2a664c2d0fb3faabaf2e80c72993ef6. * gnu/packages/curl.scm (libssh2-1.8.0): Use hidden-package. Leo Famulari 2019-03-21gnu: curl: Restore derivation....Commit af8f7eb4f2a664c2d0fb3faabaf2e80c72993ef6 accidentally changed the cURL derivation. Remove use of HIDDEN-PACKAGE and restore input order to prevent a large number of rebuilds. * gnu/packages/ssh.scm (libssh2-1.8.0): Move from here ... * gnu/packages/curl.scm (libssh2-1.8.0): ... to here. Don't use HIDDEN-PACKAGE and make it non-public. (curl)[inputs]: Move LIBSSH2-1.8.0 where it was before af8f7eb4f2a66. Marius Bakke 2019-03-21gnu: libssh2: Update to 1.8.1 [security fixes]....Fixes CVE-2019-{3855,3856,3857,3858,3859,3860,3861,3862,3863}. * gnu/packages/ssh.scm (libssh2): Update to 1.8.1. (libssh2-1.8.0): New variable. * gnu/packages/curl.scm (curl)[inputs]: Use libssh2-1.8.0. Leo Famulari 2019-03-14Merge branch 'staging' into core-updatesMarius Bakke 2019-03-13Remove traces of "GuixSD"....* gnu/bootloader/extlinux.scm (extlinux-configuration-file): Remove mentions of "GuixSD". * gnu/bootloader/grub.scm (install-grub-efi): Likewise. * gnu/build/vm.scm (make-iso9660-image): Change default #:volume-id to "Guix_image". (initialize-hard-disk): Search for the "Guix_image" label. * gnu/ci.scm (system-test-jobs, tarball-jobs): Remove "GuixSD". * gnu/installer/newt/welcome.scm (run-welcome-page): Likewise. * gnu/packages/audio.scm (supercollider)[description]: Likewise. * gnu/packages/curl.scm (curl): Likewise. * gnu/packages/emacs.scm (emacs): Likewise. * gnu/packages/gnome.scm (network-manager): Likewise. * gnu/packages/julia.scm (julia): Likewise. * gnu/packages/linux.scm (alsa-plugins): Likewise. (powertop, wireless-regdb): Likewise. * gnu/packages/package-management.scm (guix): Likewise. * gnu/packages/polkit.scm (polkit): Likewise. * gnu/packages/tex.scm (texlive-bin): Likewise. * gnu/services/base.scm (file-systems->fstab): Likewise. * gnu/services/cups.scm (%cups-activation): Likewise. * gnu/services/mail.scm (%dovecot-activation): Likewise. * gnu/services/messaging.scm (prosody-configuration)[log]: Likewise. * gnu/system/examples/vm-image.tmpl (vm-image-motd): Likewise. * gnu/system/install.scm (installation-os)[file-systems]: Change root file system label to "Guix_image". * gnu/system/mapped-devices.scm (check-device-initrd-modules): Remove "GuixSD". * gnu/system/vm.scm (system-docker-image): Likewise. (system-disk-image)[root-label]: Change to "Guix_image". * gnu/tests/install.scm (run-install): Remove "GuixSD". * guix/modules.scm (guix-module-name?): Likewise. * nix/libstore/optimise-store.cc: Likewise. Ludovic Courtès 2019-02-20Merge branch 'staging' into core-updatesMarius Bakke 2019-02-17gnu: guile-curl: Update to 0.6....* gnu/packages/curl.scm (guile-curl): Update to 0.6. Ricardo Wurmus 2019-02-11gnu: curl: Remove graft for 7.64.0....* gnu/packages/curl.scm (curl): Update to 7.64.0. (curl-7.64.0): Remove variable. Marius Bakke 2019-02-10gnu: curl: Update to 7.64.0 [fixes CVE-2018-16890 and CVE-2019-{3822,3823}]....* gnu/packages/curl.scm (curl)[replacement]: New field. (curl-7.64.0): New variable. Leo Famulari 2018-12-12gnu: curl: Update to 7.63.0....* gnu/packages/curl.scm (curl): Update to 7.63.0. Marius Bakke 2018-12-12gnu: curl: Remove replacement for 7.62.0....* gnu/packages/curl.scm (curl): Update to 7.62.0. [replacement]: Remove field. (curl-7.62.0): Remove variable. Marius Bakke 2018-11-05Merge branch 'master' into core-updatesMarius Bakke 2018-10-31gnu: curl: Update grafted replacement to 7.62.0 [security fixes]....Fixes CVE-2018-{16839,16840,16842}. * gnu/packages/curl.scm (curl)[replacement]: Update to 7.62.0. (curl-7.61.1): Replace with ... (curl-7.62.0): ... new variable. Leo Famulari 2018-09-09gnu: curl: Remove graft for 7.61.1....* gnu/packages/curl.scm (curl): Update to 7.61.1. (curl-7.61.1): Remove variable. Marius Bakke 2018-09-09Merge branch 'master' into core-updatesMarius Bakke 2018-09-06gnu: curl: Update replacement to 7.61.1 [fixes CVE-2018-14618]....* gnu/packages/curl.scm (curl)[replacement]: Update to 7.61.1. (curl-7.61.0): Replace variable with ... (curl-7.61.1): ... new variable. Leo Famulari 2018-08-13Merge branch 'staging' into core-updatesRicardo Wurmus 2018-08-09gnu: kurly: Removed unused input....* gnu/packages/curl.scm (kurly)[inputs]: Remove go-github-com-davidjpeacock-cli. Leo Famulari 2018-08-09gnu: kurly: Update to 1.2.2....Update both the project home page & the package version in a single commit because of Go. From the previous home page[0]: “2018-06-12 - THE KURLY PROJECT HAS MOVED HOME! kurly can now be found at GitLab [...]” [0]: https://github.com/davidjpeacock/kurly * gnu/packages/curl.scm (kurly): Update to 1.2.2. [source, home-page]: Update URIs. [arguments]: Likewise. Adjust location of ‘kurly.man’. [inputs]: Add go-github-com-urfave-cli. Tobias Geerinckx-Rice 2018-07-30gnu: curl: Don't build static library....* gnu/packages/curl.scm (curl)[arguments]: Add "--disable-static" to #:configure-flags. Marius Bakke 2018-07-24gnu: curl: Remove graft for 7.61.0....* gnu/packages/curl.scm (curl): Update to 7.61.0. [replacement]: Remove field. (curl-7.61.0): Remove variable. Marius Bakke