void-packages/srcpkgs/tepl/patches/no-gir.patch
Đoàn Trần Công Danh 4f75cf25fd srcpkgs/t*: convert patches to -Np1
```sh
git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" |
while read template; do
	for p in ${template%/template}/patches/*; do
		sed -i '
			\,^[+-][+-][+-] /dev/null,b
			/^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b
			s,^[*][*][*] ,&a/,
			/^--- /{
				s,\(^--- \)\(./\)*,\1a/,
				s,[.-][Oo][Rr][Ii][Gg]\([	/]\),\1,
				s/[.-][Oo][Rr][Ii][Gg]$//
				s/[.]patched[.]\([^.]\)/.\1/
				h
			}
			/^+++ -/{
				g
				s/^--- a/+++ b/
				b
			}
			s,\(^+++ \)\(./\)*,\1b/,
		' "$p"
	done
	sed -i '/^patch_args=/d' $template
done
```
2021-06-20 13:17:29 +07:00

45 lines
1.1 KiB
Diff

From 17e57ed156450fe59001cb0a14f8d87c40d6bf77 Mon Sep 17 00:00:00 2001
From: Daniel Kolesa <daniel@octaforge.org>
Date: Sat, 15 Aug 2020 00:09:15 +0200
Subject: [PATCH] Allow disabling gir
---
meson_options.txt | 5 +++++
tepl/meson.build | 4 ++++
2 files changed, 9 insertions(+)
diff --git meson_options.txt meson_options.txt
index cad97dd..5e99084 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -3,3 +3,8 @@ option(
type: 'boolean', value: false,
description: 'Build API reference (requires gtk-doc)'
)
+option(
+ 'gir',
+ type: 'boolean', value: true,
+ description: 'Build gobject-introspection'
+)
diff --git tepl/meson.build tepl/meson.build
index 226d913..b35dd3a 100644
--- a/tepl/meson.build
+++ b/tepl/meson.build
@@ -164,6 +164,8 @@ PKG_CONFIG.generate(tepl_lib,
libraries: TEPL_PUBLIC_DEPS,
)
+if get_option('gir')
+
GNOME.generate_gir(
tepl_lib,
export_packages: 'tepl-@0@'.format(TEPL_API_VERSION),
@@ -182,3 +184,5 @@ GNOME.generate_gir(
# Support for deps being built as subprojects:
dependencies: TEPL_DEPS,
)
+
+endif
--
2.28.0