summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-05-14 20:27:17 +0200
committerMiroslav Šulc <fordfrog@gentoo.org>2023-05-15 09:12:22 +0200
commita0961288aebb910007d888b9c4f364b2e8796b09 (patch)
tree43c7c20a6c29547ddb994d4867d7ad03842d81ef /dev-util/lv2lint
parentmedia-plugins/kodi-pvr-hts: dropped myself as maintainer (diff)
downloadgentoo-a0961288aebb910007d888b9c4f364b2e8796b09.tar.gz
gentoo-a0961288aebb910007d888b9c4f364b2e8796b09.tar.bz2
gentoo-a0961288aebb910007d888b9c4f364b2e8796b09.zip
dev-util/lv2lint: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/31039 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-util/lv2lint')
-rw-r--r--dev-util/lv2lint/files/lv2lint-0.16.2-tests-optional.patch48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-util/lv2lint/files/lv2lint-0.16.2-tests-optional.patch b/dev-util/lv2lint/files/lv2lint-0.16.2-tests-optional.patch
deleted file mode 100644
index a38d87bff94b..000000000000
--- a/dev-util/lv2lint/files/lv2lint-0.16.2-tests-optional.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-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