aboutsummaryrefslogtreecommitdiff
path: root/.patman
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2024-11-03 17:02:00 +0100
committerZheng Junjie <zhengjunjie@iscas.ac.cn>2024-11-04 17:46:33 +0800
commit7e934e6cfcde26292d6a077be344340e6d266a1b (patch)
treec0b7b1b49f168a21765c8d2c957ce3bafc382534 /.patman
parent7bc82833a206fbf3f0ccc1226399bf10d8187012 (diff)
downloadguix-7e934e6cfcde26292d6a077be344340e6d266a1b.tar.gz
guix-7e934e6cfcde26292d6a077be344340e6d266a1b.zip
gnu: libmobi: Update to 0.12. [security fixes]
This fixes CVE-2022-1533, CVE-2022-1534, CVE-2022-1907, CVE-2022-1908, CVE-2022-1987, CVE-2022-2279, CVE-2022-29788, CVE-2021-3751, CVE-2021-3881, CVE-2021-3888 and CVE-2021-3889. * gnu/packages/ebook.scm (libmobi): Update to 0.12.
Diffstat (limited to '.patman')
0 files changed, 0 insertions, 0 deletions
tions and apply it to the current test runner when running the test file. * doc/guix.texi (Running the Test Suite): Document the new options. Maxim Cournoyer 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