From c664e354487332ba5f204c62a4a5df41b2cbda1f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 13 Nov 2025 17:55:24 -0500 Subject: Fix licensing metadata syntax --- .reuse/dep5 | 10 +++++----- test/meson.build | 7 +++++++ 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.reuse/dep5 b/.reuse/dep5 index 78cd3aa..580c2fb 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -32,8 +32,8 @@ License: ISC Files: lv2/**/*.ttl plugins/**/*.ttl plugins/**/*.ttl.in schemas.lv2/xsd.ttl Copyright: Copyright 2011-2022 David Robillard -Copyright: Copyright 2013 Robin Gareus -Copyright: Copyright 2006 Steve Harris + Copyright 2013 Robin Gareus + Copyright 2006 Steve Harris License: ISC Files: lv2specgen/DTD/* @@ -47,12 +47,12 @@ License: 0BSD OR ISC Files: schemas.lv2/doap.ttl Copyright: Copyright 2004-2016 Edd Dumbill -Copyright: Copyright 2016-2017 Edd Wilder-James + Copyright 2016-2017 Edd Wilder-James License: Apache-2.0 Files: schemas.lv2/foaf.ttl -Copyright: Copyright 2000-2014 Dan Brickley -Copyright: Copyright 2000-2014 Libby Miller +Copyright: 2000-2014 Dan Brickley + 2000-2014 Libby Miller License: CC-BY-1.0 Files: schemas.lv2/rdf.ttl diff --git a/test/meson.build b/test/meson.build index 5a2bcfb..5b6a41c 100644 --- a/test/meson.build +++ b/test/meson.build @@ -6,6 +6,13 @@ ######## if get_option('lint') + # Check licensing metadata + reuse = find_program('reuse', required: false) + if reuse.found() + reuse_args = ['--root', lv2_source_root, 'lint'] + test('REUSE', reuse, args: reuse_args, suite: 'data') + endif + # Check for spelling errors codespell = find_program('codespell', required: get_option('tests')) if codespell.found() -- cgit v1.2.1