summaryrefslogtreecommitdiff
path: root/dev-util/lv2lint/files/lv2lint-0.16.2-tests-optional.patch
blob: a38d87bff94b9d803600c42c2f27e9837daa4554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
https://git.open-music-kontrollers.ch/~hp/lv2lint/commit/b9ee588bff38bcdc52859d2b2167e47feadf6a0d.patch

From b9ee588bff38bcdc52859d2b2167e47feadf6a0d Mon Sep 17 00:00:00 2001
From: Hanspeter Portner <dev@open-music-kontrollers.ch>
Date: Fri, 5 May 2023 12:04:53 +0200
Subject: [PATCH] Add build-tests configure option

--- a/meson.build
+++ b/meson.build
@@ -29,6 +29,7 @@ x11_tests = get_option('x11-tests')
 reuse = find_program('reuse', required : false)
 
 version = get_option('version')
+build_tests = get_option('build-tests')
 
 prefix= get_option('prefix')
 libdir= get_option('libdir')
@@ -133,9 +134,11 @@ configure_file(
   install : true,
   install_dir : 'bin')
 
-if reuse.found()
-  test('REUSE', reuse, args : [
-    '--root', meson.current_source_dir(),
-    'lint'
-  ])
+if build_tests
+  if reuse.found()
+    test('REUSE', reuse, args : [
+      '--root', meson.current_source_dir(),
+      'lint'
+    ])
+  endif
 endif
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,7 +1,8 @@
 # SPDX-FileCopyrightText: Hanspeter Portner <dev@open-music-kontrollers.ch>
 # SPDX-License-Identifier: CC0-1.0
 
+option('build-tests', type : 'boolean', value : true)
 option('online-tests', type : 'feature', value : 'disabled')
 option('elf-tests', type : 'feature', value : 'disabled')
 option('x11-tests', type : 'feature', value : 'disabled')
-option('version', type : 'string', value : '0.17.81')
+option('version', type : 'string', value : '0.17.83')
-- 
2.38.4