#!/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 koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
AgeCommit message (Expand)Author
2022-01-10gnu: python-tomli: Update to 2.0.0....Maxim Cournoyer
2022-01-10gnu: python-pyparsing: Update to 3.0.6....Maxim Cournoyer
2022-01-10gnu: python-wheel: Update to 0.37.0....Maxim Cournoyer
2022-01-10gnu: python-packaging-bootstrap: Update to 21.3....Maxim Cournoyer
2021-12-13gnu: Simplify package inputs....Ludovic Courtès
2021-11-17Merge branch 'master' into core-updates-frozenLudovic Courtès
2021-11-11gnu: python-six-bootstrap: Update to 1.16.0....Maxim Cournoyer
2021-11-11gnu: Add python-tomli....Maxim Cournoyer
2021-11-11gnu: Add python-flit-core....Maxim Cournoyer
2021-11-11gnu: python-pypa-build: Update to 0.7.0....Maxim Cournoyer
2021-11-11gnu: Move a few Python packages to (gnu packages python-build)....Maxim Cournoyer
2021-11-11gnu: python-poetry-core: Update to 1.0.7....Tanguy Le Carrour