aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/mail.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/tests/mail.scm')
0 files changed, 0 insertions, 0 deletions
ass='logsubject'>news: Add entry for 'pyproject-build-system'.Marius Bakke * etc/news.scm: Add entry. Co-authored-by: Florian Pelz <pelzflorian@pelzflorian.de> Co-authored-by: Julien Lepiller <julien@lepiller.eu> 2022-10-25maint: Tweak release manifest special case for armhf-linux.Christopher Baines Don't remove the emacs package, as it does build and substitutes are available. Do remove the guix package though, as it doesn't build due to Guile memory issues while compiling the package modules. * etc/release-manifest.scm (%base-packages/armhf): Don't replace the emacs package, remove the guix package. (%base-manifest): Remove FIXME comment as %base-packages/armhf doesn't relate to build power. 2022-10-22snippets: Harden for review activity.Liliana Marie Prikler When reviewing patches, whose commit logs don't follow the structure outlined in “Submitting Patches”, a reviewer might be tempted to use snippets to rewrite them. This makes it so that their attempt, while not immediately succeeding, isn't completely thwarted. * etc/snippets/tempel/text-mode (add\ , remove\ , rename\ , update\ ) (addcl\ , https\ ): Use an empty "p" field if (car (magit-staged-files)) fails. 2022-10-16guix-install.sh: Cosmetically tweak non-interactive output.Tobias Geerinckx-Rice Avoid printing Press return to continue...[1666352494.051]: Starting installation… [1666352648.869]: … when the return itself wasn't echoed on the console. * etc/guix-install.sh (welcome): Add a carriage return to the prompt, so that the next line of output may overwrite it. 2022-10-16guix-install.sh: Warn if we suspect dodgy automation.Tobias Geerinckx-Rice This doesn't affect the installation (yet), but reserves the right to default to safe values other than ‘y’ in future. * etc/guix-install.sh (welcome): Warn if the ‘return’ wasn't. 2022-10-16guix-install.sh: Treat all uncaught errors as fatal.Tobias Geerinckx-Rice * etc/guix-install.sh: Set -o pipefail. 2022-10-16guix-install.sh: Suggest what to do if fetching OpenPGP key(s) fails.Tobias Geerinckx-Rice * etc/guix-install.sh (chk_gpg_keyring): Report an _err and set the exit_flag if wget | gpg --import fails. 2022-10-16guix-install.sh: Time out fetching OpenPGP keys.Tobias Geerinckx-Rice The default 900s provide no useful backstop in interactive use. * etc/guix-install.sh (chk_gpg_keyring): Add a 30s wget --timeout. 2022-10-17news: Add 'pt' translation.Thiago Jung Bauermann * etc/news.scm: Add Portuguese translation of entry about the new --emulate-fhs option. Signed-off-by: Julien Lepiller <julien@lepiller.eu> 2022-10-14news: Add 'de' translation.Florian Pelz * etc/news.scm: Add German translation of '--emulate-fhs' entry. 2022-10-13news: Add entry for 'guix shell --emulate-fhs'.Ludovic Courtès * etc/news.scm: Add entry. 2022-10-11guix-install.sh: Restore compatibility with "yes" invocation.Maxim Cournoyer Commit 6a2e303d3a had modified prompt_yes_no to only read a single character, aiming to ease the user experience. This was, in retrospect, a bad idea, as it makes user input error more likely and introduces complexity. This commit reverts to line-oriented input, while preserving the default yes value so that a user can simply hit 'Enter' at the prompt in place of typing "yes". * etc/guix-install.sh (_flush): Delete function. (prompt_yes_no): Restore line-oriented read. Remove loop. Make anything else than yes means no. Use Bash features to streamline definition. Reported-by: Lars-Dominik Braun <lars@6xq.net> and others. 2022-10-07guix-install.sh: Add Bash prompt customization option.Maxim Cournoyer Fixes <https://issues.guix.gnu.org/55484>. * etc/guix-install.sh (sys_customize_bashrc): New function. (main): Use it. 2022-10-07guix-install.sh: Introduce 'die' utility function.Maxim Cournoyer * etc/guix-install.sh (die): New function. (chk_sys_arch): Use it. (guix_get_bin_list, guix_get_bin, sys_create_store): Likewise. 2022-10-07guix-install.sh: Improve prompt_yes_no procedure.Maxim Cournoyer * etc/guix-install.sh (_flush): New function. (prompt_yes_no): Clear input, then only read the first character, silently. Add the [Yes/no] string to the message. When a newline is entered by the user, treat it as the default value, which is "yes". (chk_gpg_keyring): Remove "(yes/no)" from the prompt message. (configure_substitute_discovery): Likewise. (sys_authorize_build_farms): Likewise.