pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/gobject-introspection gobject-introspection: Fix...
details: https://anonhg.NetBSD.org/pkgsrc/rev/07b9551aa29c
branches: trunk
changeset: 423447:07b9551aa29c
user: jperkin <jperkin%pkgsrc.org@localhost>
date: Tue Feb 18 16:00:22 2020 +0000
description:
gobject-introspection: Fix build on certain Darwin configurations.
The generation tools require libraries from within the build area to execute,
so ensure they can be found. This removes a patch I committed a couple of
years ago that was apparently fixing a different LD_LIBRARY_PATH issue, but
unfortunately my commit message was inadequate and I can't find what issue that
was resolving.
diffstat:
devel/gobject-introspection/distinfo | 4 +-
devel/gobject-introspection/patches/patch-gir_meson.build | 16 ++++++++
devel/gobject-introspection/patches/patch-giscanner_ccompiler.py | 20 ----------
3 files changed, 18 insertions(+), 22 deletions(-)
diffs (61 lines):
diff -r de0fb7986b03 -r 07b9551aa29c devel/gobject-introspection/distinfo
--- a/devel/gobject-introspection/distinfo Tue Feb 18 14:21:43 2020 +0000
+++ b/devel/gobject-introspection/distinfo Tue Feb 18 16:00:22 2020 +0000
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.34 2019/10/14 03:28:01 gutteridge Exp $
+$NetBSD: distinfo,v 1.35 2020/02/18 16:00:22 jperkin Exp $
SHA1 (gobject-introspection-1.62.0.tar.xz) = 6c51a15d3c067bb99b4b5c799d449c82c873f2b7
RMD160 (gobject-introspection-1.62.0.tar.xz) = d9f1d8b15259ca9e77c5103b3bf79df4f7976ee2
SHA512 (gobject-introspection-1.62.0.tar.xz) = b460a95fd7a323e9b0c9a45e680ebe98bbae7632abfa53b3e0b0ec050775cab17dde693314d6d4f8e93614c32b5587f8ce0b4a4c9ee9ba46c029ce029014e638
Size (gobject-introspection-1.62.0.tar.xz) = 980732 bytes
+SHA1 (patch-gir_meson.build) = c2835a743c73fb2d511a51f83d450ca73384c3c1
SHA1 (patch-giscanner_ast.py) = 06b3d8903d126028d2d5144c6d6a508209c834b9
-SHA1 (patch-giscanner_ccompiler.py) = 03faf472ad9384670e7f15a647e069606d44daba
SHA1 (patch-giscanner_gdumpparser.py) = 83d6c72d070b2e32d90131148b566a1a2fb9aa77
SHA1 (patch-giscanner_girparser.py) = 1156b7146568667dcb56ae7fecfc0f1be91b78ec
SHA1 (patch-meson.build) = eb67bfe1a9dd46986b9b6e0d296c385e2924a0e8
diff -r de0fb7986b03 -r 07b9551aa29c devel/gobject-introspection/patches/patch-gir_meson.build
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/gobject-introspection/patches/patch-gir_meson.build Tue Feb 18 16:00:22 2020 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-gir_meson.build,v 1.1 2020/02/18 16:00:22 jperkin Exp $
+
+gircompiler requires libraries from the build area.
+
+--- gir/meson.build.orig 2019-09-09 19:22:10.000000000 +0000
++++ gir/meson.build
+@@ -433,7 +433,8 @@ foreach gir : gir_files
+ input: gir,
+ output: '@BASENAME@.typelib',
+ depends: [gobject_gir, ],
+- command: [gircompiler, '-o', '@OUTPUT@', '@INPUT@',
++ command: ['env', 'LD_LIBRARY_PATH=' + meson.current_build_dir() + '/../girepository',
++ gircompiler, '-o', '@OUTPUT@', '@INPUT@',
+ '--includedir', meson.current_build_dir(),
+ '--includedir', meson.current_source_dir(),
+ ],
diff -r de0fb7986b03 -r 07b9551aa29c devel/gobject-introspection/patches/patch-giscanner_ccompiler.py
--- a/devel/gobject-introspection/patches/patch-giscanner_ccompiler.py Tue Feb 18 14:21:43 2020 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-$NetBSD: patch-giscanner_ccompiler.py,v 1.2 2019/06/03 10:47:20 prlw1 Exp $
-
-Do not set LD_LIBRARY_PATH when calling the compiler.
-
---- giscanner/ccompiler.py.orig 2019-03-02 17:10:05.000000000 +0000
-+++ giscanner/ccompiler.py
-@@ -227,13 +227,6 @@ class CCompiler(object):
- else:
- args.append('-l' + library)
-
-- for envvar in runtime_path_envvar:
-- if envvar in os.environ:
-- os.environ[envvar] = \
-- os.pathsep.join(runtime_paths + [os.environ[envvar]])
-- else:
-- os.environ[envvar] = os.pathsep.join(runtime_paths)
--
- def get_external_link_flags(self, args, libraries):
- # An "external" link is where the library to be introspected
- # is installed on the system; this case is used for the scanning
Home |
Main Index |
Thread Index |
Old Index