aboutsummaryrefslogtreecommitdiff
path: root/doc/guix.de.texi
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2019-03-11 01:34:03 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2019-03-11 02:08:04 +0100
commit4d34fe46810b41601af82af181c257dbaa999acd (patch)
tree0e9d8c0a5d42d41831696bf28a6cc28207c2ef09 /doc/guix.de.texi
parent642de36b9eded5d4bbcb06560ce963b60e933cec (diff)
downloadguix-4d34fe46810b41601af82af181c257dbaa999acd.tar.gz
guix-4d34fe46810b41601af82af181c257dbaa999acd.zip
gnu: avidemux: Update to 2.7.2.
* gnu/packages/video.scm (avidemux): Update to 2.7.2. [arguments]: Update version of included ffmpeg.
Diffstat (limited to 'doc/guix.de.texi')
0 files changed, 0 insertions, 0 deletions
022-12-31 14:48:46 +0100'>2022-12-31tests: import-utils: Ignore extra keyword arguments....* 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 2022-10-05tests: Add new test cases for beautify-description....* tests/import-utils.scm ("beautify-description: use double spacing"): Update. ("beautify-description: remove single quotes", "beautify-description: escape @"): New tests. Ricardo Wurmus 2022-09-29import/utils: alist->package: Include properties....* guix/import/utils.scm (alist->package): Process properties field in input data and include it in the generated package. * tests/import-utils.scm ("alist->package with properties"): New test. Signed-off-by: Ludovic Courtès <ludo@gnu.org> itd