#!/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 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 ln -s mdate-from-git.scm build-aux/mdate-sh
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/check.scm
AgeCommit message (Expand)Author
2024-04-22gnu: Add python-pytest-next....Nicolas Graves
2024-04-22gnu: python-pytest-xdist: Use pyproject-build-system....Nicolas Graves
2024-04-06gnu: go-github-com-mattn-go-runewidth: Move to golang-xyz....Sharlatan Hellseher
2024-03-29gnu: Add python-pytest-examples....Sharlatan Hellseher
2024-03-29gnu: Add python-nose-exclude....Sharlatan Hellseher
2024-03-27gnu: Add python-pytest-relaxed....nafkhamdc
2024-03-10gnu: check-0.14: Fix build on powerpc-linux....Efraim Flashner
2024-03-09gnu: catch2-3: Update to 3.5.3....Zheng Junjie
2024-03-02gnu: Add theft....Liliana Marie Prikler
2024-03-02gnu: Add greatest....Liliana Marie Prikler
2024-02-27gnu: googlebenchmark: Update to 1.8.3....