summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome/gobject-introspection/gobject-introspection/0004-giscanner-add-a-use-ldd-wrapper-option.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2019-04-15 12:54:39 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-04-16 11:10:02 +0100
commit37a210e084092317375413c58bdb8d6e106512e0 (patch)
tree45a02b8747813abacf10acd7abafa0a1760cfd50 /meta/recipes-gnome/gobject-introspection/gobject-introspection/0004-giscanner-add-a-use-ldd-wrapper-option.patch
parent87f32804db4dc6bbde95bec3064dd7cde342dbb1 (diff)
downloadpoky-37a210e084092317375413c58bdb8d6e106512e0.tar.gz
gobject-introspection: update to 1.60.1
Drop upstreamed patches: 0010-meson-add-option-gir-dir-prefix.patch 0002-g-ir-tools-respect-gir_dir_prefix.patch 0001-configure.ac-make-GIR_DIR-configurable.patch Rebase the rest. Upstream has renamed the gir_dir_prefix option, adjust the recipe. Add a patch to disable tests in cross builds, as previously meson build system didn't actually build them. (From OE-Core rev: 98f4c3a64f8a2b03f57df4387d2ce1e3b3af4035) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/gobject-introspection/gobject-introspection/0004-giscanner-add-a-use-ldd-wrapper-option.patch')
-rw-r--r--meta/recipes-gnome/gobject-introspection/gobject-introspection/0004-giscanner-add-a-use-ldd-wrapper-option.patch10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-gnome/gobject-introspection/gobject-introspection/0004-giscanner-add-a-use-ldd-wrapper-option.patch b/meta/recipes-gnome/gobject-introspection/gobject-introspection/0004-giscanner-add-a-use-ldd-wrapper-option.patch
index 2e36b64bab..79264ed086 100644
--- a/meta/recipes-gnome/gobject-introspection/gobject-introspection/0004-giscanner-add-a-use-ldd-wrapper-option.patch
+++ b/meta/recipes-gnome/gobject-introspection/gobject-introspection/0004-giscanner-add-a-use-ldd-wrapper-option.patch
@@ -1,4 +1,4 @@
1From eba2b999e81d81b5f43bb1f0ab33881786bebdec Mon Sep 17 00:00:00 2001 1From cba7807888a4a1f1d630d16c51c89859209334b3 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com> 2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Fri, 30 Oct 2015 16:28:46 +0200 3Date: Fri, 30 Oct 2015 16:28:46 +0200
4Subject: [PATCH] giscanner: add a --use-ldd-wrapper option 4Subject: [PATCH] giscanner: add a --use-ldd-wrapper option
@@ -15,10 +15,10 @@ Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
15 2 files changed, 6 insertions(+), 1 deletion(-) 15 2 files changed, 6 insertions(+), 1 deletion(-)
16 16
17diff --git a/giscanner/scannermain.py b/giscanner/scannermain.py 17diff --git a/giscanner/scannermain.py b/giscanner/scannermain.py
18index 061def0..5cb793e 100644 18index 0b6a2d2..9013562 100644
19--- a/giscanner/scannermain.py 19--- a/giscanner/scannermain.py
20+++ b/giscanner/scannermain.py 20+++ b/giscanner/scannermain.py
21@@ -129,6 +129,9 @@ def _get_option_parser(): 21@@ -123,6 +123,9 @@ def _get_option_parser():
22 parser.add_option("", "--use-binary-wrapper", 22 parser.add_option("", "--use-binary-wrapper",
23 action="store", dest="wrapper", default=None, 23 action="store", dest="wrapper", default=None,
24 help="wrapper to use for running programs (useful when cross-compiling)") 24 help="wrapper to use for running programs (useful when cross-compiling)")
@@ -29,10 +29,10 @@ index 061def0..5cb793e 100644
29 action="append", dest="program_args", default=[], 29 action="append", dest="program_args", default=[],
30 help="extra arguments to program") 30 help="extra arguments to program")
31diff --git a/giscanner/shlibs.py b/giscanner/shlibs.py 31diff --git a/giscanner/shlibs.py b/giscanner/shlibs.py
32index 7b7b2d0..01d21a3 100644 32index 2c61f2f..d67df95 100644
33--- a/giscanner/shlibs.py 33--- a/giscanner/shlibs.py
34+++ b/giscanner/shlibs.py 34+++ b/giscanner/shlibs.py
35@@ -102,7 +102,9 @@ def _resolve_non_libtool(options, binary, libraries): 35@@ -96,7 +96,9 @@ def _resolve_non_libtool(options, binary, libraries):
36 args.extend(libtool) 36 args.extend(libtool)
37 args.append('--mode=execute') 37 args.append('--mode=execute')
38 platform_system = platform.system() 38 platform_system = platform.system()