gobject-introspection: bump to 1.68.0 (#6147)

This commit is contained in:
linkmauve
2021-08-25 10:32:19 +02:00
committed by GitHub
parent 1b9b6db554
commit 6543e8e33e
2 changed files with 7 additions and 7 deletions

View File

@@ -12,9 +12,9 @@ COPYRIGHT="Colin Walters
LICENSE="GNU LGPL v2
GNU GPL v2
MIT"
REVISION="4"
REVISION="1"
SOURCE_URI="http://ftp.gnome.org/pub/GNOME/sources/gobject-introspection/${portVersion%.*}/gobject-introspection-$portVersion.tar.xz"
CHECKSUM_SHA256="b1ee7ed257fdbc008702bdff0ff3e78a660e7e602efa8f211dc89b9d1e7d90a2"
CHECKSUM_SHA256="d229242481a201b84a0c66716de1752bca41db4133672cfcfb37c93eb6e54a27"
SOURCE_DIR="gobject-introspection-$portVersion"
PATCHES="gobject_introspection-$portVersion.patchset"

View File

@@ -5,12 +5,12 @@ Subject: Use objdump -x instead of ldd
diff --git a/giscanner/shlibs.py b/giscanner/shlibs.py
index e6de7bb..fee97b0 100644
index 9f8ab5d..c2c7987 100644
--- a/giscanner/shlibs.py
+++ b/giscanner/shlibs.py
@@ -99,6 +99,8 @@ def _resolve_non_libtool(options, binary, libraries):
platform_system = platform.system()
if platform_system == 'Darwin':
@@ -101,6 +101,8 @@ def _resolve_non_libtool(options, binary, libraries):
args.extend([options.ldd_wrapper, binary.args[0]])
elif platform_system == 'Darwin':
args.extend(['otool', '-L', binary.args[0]])
+ elif platform_system == 'Haiku':
+ args.extend(['objdump', '-x', binary.args[0]])
@@ -18,5 +18,5 @@ index e6de7bb..fee97b0 100644
args.extend(['ldd', binary.args[0]])
output = subprocess.check_output(args)
--
2.24.0
2.30.2