aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/guile-xyz.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2023-09-30 23:59:22 +0300
committerEfraim Flashner <efraim@flashner.co.il>2023-10-18 11:35:40 +0300
commit868d17acf79302f04e9ead1ff7bed35a76a14885 (patch)
tree476445f06b70cf1fbe7ae7d21af65c3d108a7a55 /gnu/packages/guile-xyz.scm
parentc2ac2e3f383ebf22a1049ca32f54656f14e56c48 (diff)
downloadguix-868d17acf79302f04e9ead1ff7bed35a76a14885.tar.gz
guix-868d17acf79302f04e9ead1ff7bed35a76a14885.zip
gnu: rust-fd-lock-3: Update to 3.0.12.
* gnu/packages/crates-io.scm (rust-fd-lock-3): Update to 3.0.12. [arguments]: Don't skip build. [cargo-inputs]: Add rust-rustix-0.37, rust-windows-sys-0.48. Remove rust-libc-0.2, rust-winapi-0.3. [cargo-development-inputs]: Add rust-tempfile-3.
Diffstat (limited to 'gnu/packages/guile-xyz.scm')
0 files changed, 0 insertions, 0 deletions
'msg-tooltip'>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