pango 4.0.3 → 4.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/pango/extconf.rb +21 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e921985c66414f2e05f1a834ed98f594806f63f4ff640df59a69258eea262142
|
|
4
|
+
data.tar.gz: 9abf4e39d212d0b1c54396e9b598202238d61e46fb88bee7468b9d9fa80fc5e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b33f21d5278d6d74d6f542ff27799d620fa331b6fe828dc6dd7c5044f83d9ff166bccf57d1e5710820c57072d1ee40e4b93cf627d5938d20f8936326a0574a3d
|
|
7
|
+
data.tar.gz: 567a2edf3f741a7a6695c07aab30e4840f25d6442c230d1a4423209ebb984ee48d943df707868d70ed85d674459710ae3b444d2c2ea95c52f49c64d3aef51477
|
data/ext/pango/extconf.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2017-
|
|
3
|
+
# Copyright (C) 2017-2022 Ruby-GNOME Project Team
|
|
4
4
|
#
|
|
5
5
|
# This library is free software; you can redistribute it and/or
|
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
|
@@ -86,6 +86,26 @@ have_func("pango_attr_iterator_get_attrs", pango_header)
|
|
|
86
86
|
|
|
87
87
|
create_pkg_config_file("Ruby/Pango", package_id)
|
|
88
88
|
$defs << " -DRUBY_PANGO_COMPILATION"
|
|
89
|
+
case RUBY_PLATFORM
|
|
90
|
+
when /darwin/
|
|
91
|
+
symbols_in_external_bundles = [
|
|
92
|
+
"_rb_gi_struct_get_raw",
|
|
93
|
+
"_rbg_define_method",
|
|
94
|
+
"_rbg_define_singleton_method",
|
|
95
|
+
"_rbg_rval2cstr",
|
|
96
|
+
"_rbgobj_add_relative",
|
|
97
|
+
"_rbgobj_boxed_get",
|
|
98
|
+
"_rbgobj_define_class",
|
|
99
|
+
"_rbgobj_get_enum",
|
|
100
|
+
"_rbgobj_initialize_object",
|
|
101
|
+
"_rbgobj_make_boxed",
|
|
102
|
+
"_rbgobj_make_boxed_raw",
|
|
103
|
+
"_rbgobj_make_enum",
|
|
104
|
+
]
|
|
105
|
+
symbols_in_external_bundles.each do |symbol|
|
|
106
|
+
$DLDFLAGS << " -Wl,-U,#{symbol}"
|
|
107
|
+
end
|
|
108
|
+
end
|
|
89
109
|
create_makefile(module_name)
|
|
90
110
|
|
|
91
111
|
pkg_config_dir = with_config("pkg-config-dir")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pango
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.4
|
|
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: 2022-09
|
|
11
|
+
date: 2022-12-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cairo-gobject
|
|
@@ -16,28 +16,28 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 4.0.
|
|
19
|
+
version: 4.0.4
|
|
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.0.
|
|
26
|
+
version: 4.0.4
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: gobject-introspection
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 4.0.
|
|
33
|
+
version: 4.0.4
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - '='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 4.0.
|
|
40
|
+
version: 4.0.4
|
|
41
41
|
description: Ruby/Pango is a Ruby binding of pango-1.x based on GObject-Introspection.
|
|
42
42
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
|
43
43
|
executables: []
|