aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/gnupg.scm
diff options
context:
space:
mode:
authorSergey Trofimov <sarg@sarg.org.ru>2024-10-21 20:12:51 +0200
committerHilton Chain <hako@ultrarare.space>2024-11-03 00:54:40 +0800
commit6d915231f258aa8d76c58afe1a5b903eb016b111 (patch)
tree70c6ca47f74fc44e1a168c30175aaff437a6067a /gnu/packages/gnupg.scm
parent98d59a6040ec456115e638c28a4342dfd137de73 (diff)
downloadguix-6d915231f258aa8d76c58afe1a5b903eb016b111.tar.gz
guix-6d915231f258aa8d76c58afe1a5b903eb016b111.zip
gnu: ell: Update to 0.69.
* gnu/packages/linux.scm (ell): Update to 0.69. Signed-off-by: Hilton Chain <hako@ultrarare.space>
Diffstat (limited to 'gnu/packages/gnupg.scm')
0 files changed, 0 insertions, 0 deletions
23:41 -0500'>2021-01-31build: test-driver.scm: Enable colored test results by default....The Automake parallel test harness does its own smart detection of the terminal color capability and always provides the --color-tests argument to the driver. This change defaults the --color-tests argument to true when the test driver is run on its own (not via Automake). * build-aux/test-driver.scm (main): Set the default value of the --color-tests argument to true when it's not explicitly provided. Maxim Cournoyer 2021-01-31build: test-driver.scm: Make output redirection optional....This makes it easier (and less surprising) for users to experiment with the custom Scheme test driver directly. The behavior is unchanged from Automake's point of view. * build-aux/test-driver.scm (main): Make the --log-file and --trs-file arguments optional and update doc. Only open, redirect and close a port to a log file when the --log-file option is provided. Only open and close a port to a trs file when the --trs-file option is provided. (test-runner-gnu): Set OUT-PORT parameter default value to the current output port. Set the TRS-PORT parameter default value to a void port. Update doc. Maxim Cournoyer