aboutsummaryrefslogtreecommitdiff
path: root/gnu/build/bootloader.scm
diff options
context:
space:
mode:
authorAshvith Shetty <ashvithshetty10@gmail.com>2024-09-07 22:17:18 +0530
committerjgart <jgart@dismail.de>2024-09-07 15:23:52 -0500
commit76d903b7c170899eff82e5165fb32405c371bb99 (patch)
tree94e93b3b827d0f8e690d0eb8eade6e5854b3864f /gnu/build/bootloader.scm
parent994095b085a495a364d3df82121a1a303d044548 (diff)
downloadguix-76d903b7c170899eff82e5165fb32405c371bb99.tar.gz
guix-76d903b7c170899eff82e5165fb32405c371bb99.zip
gnu: tilix: Update to 1.9.6.
* gnu/packages/terminals.scm (tilix): Update to 1.9.6. Change-Id: I8c73f4ea79de18f062ad77885cd79cb117ae319d Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu/build/bootloader.scm')
0 files changed, 0 insertions, 0 deletions
>* tests/import-utils.scm ("recursive-import", "recursive-import: skip false packages (toplevel)", "recursive-import: skip false packages (dependency)"): Do not try to match all arguments. Ricardo Wurmus 2022-11-18import/utils: spdx-string->license: Support '+' operator....Previously, '+' was supported only via special cases for deprecated GNU identifiers like 'GPL-N+'. This commit adds support for other uses of '+', such as 'AFL-2.0+' and 'LPPL-1.0+'. Strictly speaking, '+' is an operator, not part of the SPDX license identifier, but it is useful to handle it here. * guix/import/utils.scm (spdx-string->license): Support '+' operator. * tests/import-utils.scm ("spdx-string->license"): Test it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Philip McGrath 2022-11-18import/utils: spdx-string->license: Match case-insensitively....SPDX specifies that license identifiers (unlike the 'AND', 'OR', and 'WITH' operators) are matched case-insensitively. * guix/import/utils.scm (%spdx-license-identifiers): New variable. (spdx-string->license): Search in '%spdx-license-identifiers' using 'string-ci=?'. * tests/import-utils.scm ("spdx-string->license"): New test. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Philip McGrath