gobject-introspection 4.1.7 → 4.1.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a5293d184b597be3e9318e17ad29d9147934c962eb15b2a13cacdb268d43b56
4
- data.tar.gz: 6533df662bcc569973590c53a731d980a6914b7bbc39b59f9edad472811e06ec
3
+ metadata.gz: ed862dcf41f6270aa054b333eadcfc698aeca2ea946150fc1f6ff18c19b149ec
4
+ data.tar.gz: 1458dd2d3b7b9e7bd7e5b71c0f550d2679b491e7ff290cb76b275d6bde00eef4
5
5
  SHA512:
6
- metadata.gz: 19757813c1ed6f1d6df002e67476fe1928aa5733fd93441cebe35307a6f8d4590cd23010b79462353ed3ecd27d74851a9af1a6427e2da1a4ce30f4ea0dfa48a0
7
- data.tar.gz: 5f4ef8efafab4687f9606b7f0fd55b24c389d1d13b58c6e75334bce9494324f5aff50f278eada200e30bf02026bcf41b496a4ff9da1ce2021534dbd570dc92fb
6
+ metadata.gz: 25b847debfda48790e56bd80c03819174367ce8d3f3a3a0ea3ef8a38863719a00c11032d1da3b7a801be2a354b3aa8157b9d9a7d88e687c9b29b946a8b8bdf74
7
+ data.tar.gz: ed56c7986c96b282ea369b02670735379fe538ffd3fa1ef0d5b774a7ec4dd48ef17b6ffbcb20fe0f49c476c65aac8d1d7233f9ad782175517bd37ae7d18f1e22
@@ -41,6 +41,7 @@ end
41
41
 
42
42
  unless required_pkg_config_package(package_id,
43
43
  :alt_linux => "gobject-introspection-devel",
44
+ :conda => "gobject-introspection",
44
45
  :debian => "libgirepository1.0-dev",
45
46
  :redhat => "pkgconfig(gobject-introspection-1.0)",
46
47
  :homebrew => "gobject-introspection",
@@ -147,8 +147,9 @@ rb_gi_arg_metadata_init_struct_info(RBGIArgMetadata *metadata,
147
147
  static RBGIArgMetadata *
148
148
  rb_gi_arg_metadata_new(GICallableInfo *callable_info, gint i)
149
149
  {
150
-
151
- RBGIArgMetadata *metadata = ALLOC(RBGIArgMetadata);
150
+ /* We can't use ALLOC() (Ruby API) here because this may be called
151
+ in a thread that isn't the Ruby's main thread. */
152
+ RBGIArgMetadata *metadata = g_new(RBGIArgMetadata, 1);
152
153
  metadata->callable_info = callable_info;
153
154
  GIArgInfo *arg_info = &(metadata->arg_info);
154
155
  g_callable_info_load_arg(callable_info, i, arg_info);
@@ -185,7 +186,7 @@ void
185
186
  rb_gi_arg_metadata_free(RBGIArgMetadata *metadata)
186
187
  {
187
188
  rb_gi_arg_metadata_clear(metadata);
188
- xfree(metadata);
189
+ g_free(metadata);
189
190
  }
190
191
 
191
192
  static void
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gobject-introspection
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.7
4
+ version: 4.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Ruby-GNOME Project Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-31 00:00:00.000000000 Z
11
+ date: 2023-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: glib2
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 4.1.7
19
+ version: 4.1.9
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 4.1.7
26
+ version: 4.1.9
27
27
  description: Ruby/GObjectIntrospection provides bindings of GObject Introspection
28
28
  and a loader module that can generate dynamically Ruby bindings of any GObject C
29
29
  libraries