aboutsummaryrefslogtreecommitdiff
path: root/build-aux/check-channel-news.scm
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2024-09-06 12:03:06 -0500
committerjgart <jgart@dismail.de>2024-09-06 12:53:18 -0500
commit2cc5c836c5dacaaf4ddbf7463ef2ca4869280f39 (patch)
tree084d809ae06f51baf51a15f85248871faf369ed5 /build-aux/check-channel-news.scm
parent904631033ef8c5af94d3c2ec5e2762fdddf74c28 (diff)
downloadguix-2cc5c836c5dacaaf4ddbf7463ef2ca4869280f39.tar.gz
guix-2cc5c836c5dacaaf4ddbf7463ef2ca4869280f39.zip
gnu: trealla: Update to 2.55.34.
* gnu/packages/prolog.scm (trealla): Update to 2.55.34. Change-Id: Ida254b8f5877291cbcf8ac6ccb5e45a2f6d79a7f
Diffstat (limited to 'build-aux/check-channel-news.scm')
0 files changed, 0 insertions, 0 deletions
ed 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