#!/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 zko-scripts'>koszko-scripts Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/guix/nar.scm
AgeCommit message (Expand)Author
2020-12-15database: Remove #:deduplicate? from 'register-items'.Ludovic Courtès
2020-12-15database: Remove #:reset-timestamps? from 'register-items'.Ludovic Courtès
2020-12-15nar: Deduplicate files right as they are restored.Ludovic Courtès
2020-12-15serialization: 'restore-file' sets canonical timestamp and permissions.Ludovic Courtès
2020-09-11doc: Distinguish the "nar bundle" format from "nar".Ludovic Courtès
2020-06-18nar: Use (guix i18n).Ludovic Courtès
2020-06-18nar: Avoid opening the database an additional time.Ludovic Courtès
2020-05-07nar: 'with-temporary-store-file' uses a single connectionCaleb Ristvedt
2020-05-07nar: 'finalize-store-file' follows proper store lock protocol.Caleb Ristvedt
2019-06-05nar: Really lock store files.Ludovic Courtès
2018-11-13nar: Access the database instead of connecting to the daemon.Ludovic Courtès
2018-09-04Switch to Guile-Gcrypt.Ludovic Courtès
2018-06-14store: Remove 'register-path'.Ludovic Courtès
2017-05-03ui: Rename '_' to 'G_'.Ludovic Courtès