mirror of
https://github.com/torvalds/linux.git
synced 2025-04-09 14:45:27 +00:00
scripts/spdxcheck: Handle license identifiers in Jinja comments
Commit 4b132aacb076 ("tools: Add xdrgen") adds a tool, which uses Jinja template files, i.e., files with the j2 file extension, for its lightweight code generation. These template files for this tool have proper headers with the SPDX License information, which are included as Jinja comments by enclosing the text with '{#' and '#}'. Sofar, the spdxcheck script does not support to properly parse this license information in Jinja comments and it reports back with 'Invalid token: #}'. Parse Jinja comments properly by stripping the known Jinja comment suffix. Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com> Link: https://lore.kernel.org/r/20250108125207.57486-1-lukas.bulwahn@redhat.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
634d34e856
commit
154916f4b5
@ -214,6 +214,9 @@ class id_parser(object):
|
||||
# Remove trailing xml comment closure
|
||||
if line.strip().endswith('-->'):
|
||||
expr = expr.rstrip('-->').strip()
|
||||
# Remove trailing Jinja2 comment closure
|
||||
if line.strip().endswith('#}'):
|
||||
expr = expr.rstrip('#}').strip()
|
||||
# Special case for SH magic boot code files
|
||||
if line.startswith('LIST \"'):
|
||||
expr = expr.rstrip('\"').strip()
|
||||
|
Loading…
x
Reference in New Issue
Block a user