pango 3.5.0 → 3.5.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f5c7971e49c9d7418ec2c1bd93f7463a9265ae283283d487173602dc11fcab3e
4
- data.tar.gz: 53ce605e63dfd2caf744520cf68389f98870683c17c9a631dee26b541bdfc4ac
3
+ metadata.gz: be28139580135340befb1427090197a0310f50f220991fa27221d616017faaa2
4
+ data.tar.gz: 389b6d52f9849b2595cbdb3035b5c44444d24fcd4fc0e7602b94546ea752ec24
5
5
  SHA512:
6
- metadata.gz: 382c6b5da562c55d5562b8f58351df4b278740f59eabb4a1dab74134a55765d082172a2b8a2b215accb872334b8c9da615fa7652229bf7a4225455cc2df23947
7
- data.tar.gz: d8126d43e3d52f0afd374dd85f2d964b9d7d6bccaaccdeaadd8428e46ceead84b61a9608747f7eff7221df7529b0e53918f2ee789b1225dfaf9b7ae22db663eb
6
+ metadata.gz: 25e0f41c2c2665b39d34eccfbd6ac276e21379aae031cf08c1a1294dddcb39a4bc1e2355268feb07271d8fd18a389343e563c2d1d3cf474d1d0a29bf4c2729a2
7
+ data.tar.gz: dd1e6c4860451ded190eaea7798f93c7bf71f7815c74086437d21e300e5b5af22614c21cd6ca5d541a90a73722cddecf596aaca4de6456b9c224702ac168dc97
@@ -1,6 +1,6 @@
1
1
  /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
2
  /*
3
- * Copyright (C) 2017 Ruby-GNOME2 Project Team
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
@@ -23,10 +23,12 @@
23
23
  #define RG_TARGET_NAMESPACE cAttrIterator
24
24
  #define _SELF(self) (RVAL2PANGOATTRITERATOR(self))
25
25
 
26
- G_DEFINE_BOXED_TYPE(PangoAttrIterator,
27
- pango_attr_iterator,
28
- pango_attr_iterator_copy,
29
- pango_attr_iterator_destroy);
26
+ #if !PANGO_CHECK_VERSION(1, 44, 0)
27
+ G_DEFINE_BOXED_TYPE(PangoAttrIterator,
28
+ pango_attr_iterator,
29
+ pango_attr_iterator_copy,
30
+ pango_attr_iterator_destroy);
31
+ #endif
30
32
 
31
33
  static VALUE
32
34
  rg_attrs(VALUE self)
@@ -1,6 +1,6 @@
1
1
  /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
2
  /*
3
- * Copyright (C) 2017-2018 Ruby-GNOME2 Project Team
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
@@ -20,14 +20,6 @@
20
20
 
21
21
  #include "rb-pango-private.h"
22
22
 
23
- #ifndef PANGO_CHECK_VERSION
24
- # define PANGO_CHECK_VERSION(major, minor, micro) \
25
- (PANGO_VERSION_MAJOR > (major) || \
26
- (PANGO_VERSION_MAJOR == (major) && PANGO_VERSION_MINOR > (minor)) || \
27
- (PANGO_VERSION_MAJOR == (major) && PANGO_VERSION_MINOR == (minor) && \
28
- PANGO_VERSION_MICRO >= (micro)))
29
- #endif
30
-
31
23
  #if !PANGO_CHECK_VERSION(1, 44, 0)
32
24
  static GType
33
25
  pango_attribute_get_type(void)
@@ -1,6 +1,6 @@
1
1
  /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
2
  /*
3
- * Copyright (C) 2017 Ruby-GNOME2 Project Team
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
@@ -22,6 +22,14 @@
22
22
 
23
23
  #include "rb-pango.h"
24
24
 
25
+ #ifndef PANGO_CHECK_VERSION
26
+ # define PANGO_CHECK_VERSION(major, minor, micro) \
27
+ (PANGO_VERSION_MAJOR > (major) || \
28
+ (PANGO_VERSION_MAJOR == (major) && PANGO_VERSION_MINOR > (minor)) || \
29
+ (PANGO_VERSION_MAJOR == (major) && PANGO_VERSION_MINOR == (minor) && \
30
+ PANGO_VERSION_MICRO >= (micro)))
31
+ #endif
32
+
25
33
  G_GNUC_INTERNAL void rbpango_attribute_init(VALUE mPango);
26
34
  G_GNUC_INTERNAL void rbpango_attr_iterator_init(VALUE mPango);
27
35
  G_GNUC_INTERNAL void rbpango_attr_list_init(VALUE mPango);
data/ext/pango/rb-pango.c CHANGED
@@ -28,6 +28,21 @@ rg_s_pixels(G_GNUC_UNUSED VALUE self, VALUE pixels)
28
28
  return rb_float_new(PANGO_PIXELS(NUM2DBL(pixels)));
29
29
  }
30
30
 
31
+ #ifdef _WIN32
32
+ /* Workaround: See glib2/ext/glib2/rbglib.c for details. */
33
+ BOOL WINAPI
34
+ DllMain(G_GNUC_UNUSED HINSTANCE hinstDLL,
35
+ G_GNUC_UNUSED DWORD fdwReason,
36
+ G_GNUC_UNUSED LPVOID lpvReserved);
37
+ BOOL WINAPI
38
+ DllMain(G_GNUC_UNUSED HINSTANCE hinstDLL,
39
+ G_GNUC_UNUSED DWORD fdwReason,
40
+ G_GNUC_UNUSED LPVOID lpvReserved)
41
+ {
42
+ return TRUE;
43
+ }
44
+ #endif
45
+
31
46
  void
32
47
  Init_pango(void)
33
48
  {
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: 3.5.0
4
+ version: 3.5.1
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-01-11 00:00:00.000000000 Z
11
+ date: 2022-01-17 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: 3.5.0
19
+ version: 3.5.1
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: 3.5.0
26
+ version: 3.5.1
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: 3.5.0
33
+ version: 3.5.1
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: 3.5.0
40
+ version: 3.5.1
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: []