1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From: Arnaud Ferraris <arnaud.ferraris@collabora.com>
Date: Tue, 24 Sep 2024 14:39:04 +0200
Subject: Gir.toml: ignore unbound types causing test failures
Generating bindings for those types causes autopkgtest to fail. As
they're not used in the main glib crate anyway, let's just ignore them.
Forwarded: not-needed
---
Gir.toml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/Gir.toml b/Gir.toml
index 8e34910..0ca5716 100644
--- a/Gir.toml
+++ b/Gir.toml
@@ -62,6 +62,11 @@ ignore = [
"GLib.SIZEOF_VOID_P",
"GLib.VA_COPY_AS_ARRAY",
"GLib.VERSION_MIN_REQUIRED",
+ "GLib.UnixPipe",
+ "GLib.UnixPipeEnd",
+ "GLib.StaticMutex",
+ "GLib.StaticRWLock",
+ "GLib.StaticRecMutex",
]
[[object]]
|