#!/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 Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/herd.scm
AgeCommit message (Expand)Author
2019-06-02herd: Use the Guile 2.2 'setvbuf' API....Ludovic Courtès
2019-01-17services: herd: Allow to pass arguments to start-service....Mathieu Othacehe
2018-09-26guix system: Load all services on reconfigure, not just stopped ones....Carlo Zancanaro
2018-07-13services: mcron: Add 'schedule' action....Ludovic Courtès
2018-01-21services: herd: 'with-shepherd' no longer leaves an open connection....Ludovic Courtès
2017-08-23services: herd: Actions return a list of results....Ludovic Courtès
2017-08-08services: herd: Add a stop-service procedure....Christopher Baines
2017-08-08services: herd: Fix matching ok responses from shepherd service....Christopher Baines
2017-05-03services: herd: Make %shepherd-socket-file a parameter and export it....Mathieu Othacehe
2016-08-31services: herd: Provide <live-service> objects....Ludovic Courtès