aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-11-13 17:55:24 -0500
committerDavid Robillard <d@drobilla.net>2025-11-13 19:00:09 -0500
commitc664e354487332ba5f204c62a4a5df41b2cbda1f (patch)
tree0567a967dae2c0d1dc9d2e0d8c02c16f086c25e6
parent89de262da7dce7d3c10c384179db4962dc0a4455 (diff)
downloadlv2-c664e354487332ba5f204c62a4a5df41b2cbda1f.tar.xz
Fix licensing metadata syntax
-rw-r--r--.reuse/dep510
-rw-r--r--test/meson.build7
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 <d@drobilla.net>
-Copyright: Copyright 2013 Robin Gareus <robin@gareus.org>
-Copyright: Copyright 2006 Steve Harris <steve@plugin.org.uk>
+ Copyright 2013 Robin Gareus <robin@gareus.org>
+ Copyright 2006 Steve Harris <steve@plugin.org.uk>
License: ISC
Files: lv2specgen/DTD/*
@@ -47,12 +47,12 @@ License: 0BSD OR ISC
Files: schemas.lv2/doap.ttl
Copyright: Copyright 2004-2016 Edd Dumbill <edd@usefulinc.com>
-Copyright: Copyright 2016-2017 Edd Wilder-James <edd@ewj.me>
+ Copyright 2016-2017 Edd Wilder-James <edd@ewj.me>
License: Apache-2.0
Files: schemas.lv2/foaf.ttl
-Copyright: Copyright 2000-2014 Dan Brickley <danbri@danbri.org>
-Copyright: Copyright 2000-2014 Libby Miller <libby@nicecupoftea.org>
+Copyright: 2000-2014 Dan Brickley <danbri@danbri.org>
+ 2000-2014 Libby Miller <libby@nicecupoftea.org>
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()