ruby-libgd 0.2.3 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5f72abe4a18b66efb49a1e30a5ef170e69a31f4a3eb0ccf308e9c9f85603c229
4
- data.tar.gz: c17c93e69f330862bc24bd655fbc7abb8017be59d0bd57723d5aeb7c9301e70f
3
+ metadata.gz: d0a3de385842f0cf17fc56e102fc0dd9614512227bf9a07dc8b8cd96929dd2a4
4
+ data.tar.gz: 3b47534f1017febc504cb328c1d1db1b2fa7f58f5e15047504abff2e119d347b
5
5
  SHA512:
6
- metadata.gz: 7667691652b3fbb70b7945071ac3f0719d8162adb231b80c3b1e7eb17514db6714e1562791f6bdd20676bc77b3d96fc85b1dec0b5bfb7c07678efa86ec82fc48
7
- data.tar.gz: f02dc5751f96bd1bd25ac4b693f4e18b968cc2fcaceaa687efd269572cca60a8ef506de4b3a79870a98fb91a8c164fd8bea78eb7df6bca1a1b1ab0b255647531
6
+ metadata.gz: de84a2dc1be0454faea9fad0105cf7bda0e4a0684ed90ff62bf91e914e246afcd0ce21b666793b86d198e335324464a31b173b3e7d589d6d01ff8b73c76eee02
7
+ data.tar.gz: 2c699498111605b390e3b9c25f9f5a157e806612094fdee1aa0e2ffaf858bb7fecfe0c45e8d3a651f7ea8e7ae2c777f016623c38fa4742c5a9b236351623a669
data/ext/gd/Makefile CHANGED
@@ -13,9 +13,9 @@ NULLCMD = :
13
13
  #### Start of system configuration section. ####
14
14
 
15
15
  srcdir = .
16
- topdir = /usr/local/include/ruby-3.3.0
16
+ topdir = /usr/local/include/ruby-4.0.0
17
17
  hdrdir = $(topdir)
18
- arch_hdrdir = /usr/local/include/ruby-3.3.0/x86_64-linux
18
+ arch_hdrdir = /usr/local/include/ruby-4.0.0/x86_64-linux
19
19
  PATH_SEPARATOR = :
20
20
  VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby
21
21
  prefix = $(DESTDIR)/usr/local
@@ -42,6 +42,7 @@ archincludedir = $(includedir)/$(arch)
42
42
  sitearchlibdir = $(libdir)/$(sitearch)
43
43
  archlibdir = $(libdir)/$(arch)
44
44
  ridir = $(datarootdir)/$(RI_BASE_NAME)
45
+ modular_gc_dir = $(DESTDIR)
45
46
  mandir = $(datarootdir)/man
46
47
  localedir = $(datarootdir)/locale
47
48
  libdir = $(exec_prefix)/lib
@@ -78,7 +79,7 @@ COUTFLAG = -o $(empty)
78
79
  CSRCFLAG = $(empty)
79
80
 
80
81
  RUBY_EXTCONF_H =
81
- cflags = $(optflags) $(debugflags) $(warnflags)
82
+ cflags = $(hardenflags) $(optflags) $(debugflags) $(warnflags)
82
83
  cxxflags =
83
84
  optflags = -O3 -fno-fast-math
84
85
  debugflags = -ggdb3
@@ -96,7 +97,9 @@ ARCH_FLAG =
96
97
  DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG)
97
98
  LDSHARED = $(CC) -shared
98
99
  LDSHAREDXX = $(CXX) -shared
100
+ POSTLINK = :
99
101
  AR = gcc-ar
102
+ LD = ld
100
103
  EXEEXT =
101
104
 
102
105
  RUBY_INSTALL_NAME = $(RUBY_BASE_NAME)
@@ -108,7 +111,7 @@ RUBY_BASE_NAME = ruby
108
111
 
109
112
  arch = x86_64-linux
110
113
  sitearch = $(arch)
111
- ruby_version = 3.3.0
114
+ ruby_version = 4.0.0
112
115
  ruby = $(bindir)/$(RUBY_BASE_NAME)
113
116
  RUBY = $(ruby)
114
117
  BUILTRUBY = $(bindir)/$(RUBY_BASE_NAME)
@@ -128,7 +131,7 @@ TOUCH = exit >
128
131
 
129
132
  preload =
130
133
  libpath = . $(libdir)
131
- LIBPATH = -L. -L$(libdir) -Wl,-rpath,$(libdir)
134
+ LIBPATH = -L. -L$(libdir) -Wl,-rpath,$(libdir)
132
135
  DEFFILE =
133
136
 
134
137
  CLEANFILES = mkmf.log
@@ -161,7 +164,7 @@ HDRDIR = $(sitehdrdir)$(target_prefix)
161
164
  ARCHHDRDIR = $(sitearchhdrdir)$(target_prefix)
162
165
  TARGET_SO_DIR =
163
166
  TARGET_SO = $(TARGET_SO_DIR)$(DLLIB)
164
- CLEANLIBS = $(TARGET_SO) false
167
+ CLEANLIBS = $(TARGET_SO)
165
168
  CLEANOBJS = $(OBJS) *.bak
166
169
  TARGET_SO_DIR_TIMESTAMP = $(TIMESTAMP_DIR)/.sitearchdir.-.gd.time
167
170
 
@@ -263,6 +266,7 @@ $(TARGET_SO): $(OBJS) Makefile
263
266
  $(ECHO) linking shared-object gd/$(DLLIB)
264
267
  -$(Q)$(RM) $(@)
265
268
  $(Q) $(LDSHARED) -o $@ $(OBJS) $(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS)
269
+ $(Q) $(POSTLINK)
266
270
 
267
271
 
268
272
 
data/ext/gd/arc.o CHANGED
Binary file
data/ext/gd/blit.o CHANGED
Binary file
data/ext/gd/circle.o CHANGED
Binary file
data/ext/gd/color.o CHANGED
Binary file
data/ext/gd/draw_line.o CHANGED
Binary file
data/ext/gd/ellipse.o CHANGED
Binary file
data/ext/gd/encode.o CHANGED
Binary file
data/ext/gd/fill.o CHANGED
Binary file
data/ext/gd/filter.o CHANGED
Binary file
data/ext/gd/gd.o CHANGED
Binary file
data/ext/gd/gd.so CHANGED
Binary file
data/ext/gd/gif.o CHANGED
Binary file
data/ext/gd/image.o CHANGED
Binary file
data/ext/gd/mkmf.log CHANGED
@@ -1,6 +1,6 @@
1
1
  have_library: checking for -lgd... -------------------- yes
2
2
 
3
- LD_LIBRARY_PATH=.:/usr/local/lib "gcc -o conftest -I/usr/local/include/ruby-3.3.0/x86_64-linux -I/usr/local/include/ruby-3.3.0/ruby/backward -I/usr/local/include/ruby-3.3.0 -I. -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC conftest.c -L. -L/usr/local/lib -Wl,-rpath,/usr/local/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lruby -lm -lpthread -lc"
3
+ LD_LIBRARY_PATH=.:/usr/local/lib LSAN_OPTIONS=detect_leaks=0 "gcc -o conftest -I/usr/local/include/ruby-4.0.0/x86_64-linux -I/usr/local/include/ruby-4.0.0/ruby/backward -I/usr/local/include/ruby-4.0.0 -I. -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC conftest.c -L. -L/usr/local/lib -Wl,-rpath,/usr/local/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lruby -lm -lpthread -lc"
4
4
  checked program was:
5
5
  /* begin */
6
6
  1: #include "ruby.h"
@@ -11,7 +11,7 @@ checked program was:
11
11
  6: }
12
12
  /* end */
13
13
 
14
- LD_LIBRARY_PATH=.:/usr/local/lib "gcc -o conftest -I/usr/local/include/ruby-3.3.0/x86_64-linux -I/usr/local/include/ruby-3.3.0/ruby/backward -I/usr/local/include/ruby-3.3.0 -I. -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC conftest.c -L. -L/usr/local/lib -Wl,-rpath,/usr/local/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lruby -lgd -lm -lpthread -lc"
14
+ LD_LIBRARY_PATH=.:/usr/local/lib LSAN_OPTIONS=detect_leaks=0 "gcc -o conftest -I/usr/local/include/ruby-4.0.0/x86_64-linux -I/usr/local/include/ruby-4.0.0/ruby/backward -I/usr/local/include/ruby-4.0.0 -I. -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC conftest.c -L. -L/usr/local/lib -Wl,-rpath,/usr/local/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lruby -lgd -lm -lpthread -lc"
15
15
  checked program was:
16
16
  /* begin */
17
17
  1: #include "ruby.h"
@@ -35,7 +35,7 @@ checked program was:
35
35
 
36
36
  have_library: checking for -lm... -------------------- yes
37
37
 
38
- LD_LIBRARY_PATH=.:/usr/local/lib "gcc -o conftest -I/usr/local/include/ruby-3.3.0/x86_64-linux -I/usr/local/include/ruby-3.3.0/ruby/backward -I/usr/local/include/ruby-3.3.0 -I. -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC conftest.c -L. -L/usr/local/lib -Wl,-rpath,/usr/local/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -lgd -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lruby -lm -lgd -lm -lpthread -lc"
38
+ LD_LIBRARY_PATH=.:/usr/local/lib LSAN_OPTIONS=detect_leaks=0 "gcc -o conftest -I/usr/local/include/ruby-4.0.0/x86_64-linux -I/usr/local/include/ruby-4.0.0/ruby/backward -I/usr/local/include/ruby-4.0.0 -I. -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC conftest.c -L. -L/usr/local/lib -Wl,-rpath,/usr/local/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -lgd -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lruby -lm -lgd -lm -lpthread -lc"
39
39
  checked program was:
40
40
  /* begin */
41
41
  1: #include "ruby.h"
data/ext/gd/pixel.o CHANGED
Binary file
data/ext/gd/polygon.o CHANGED
Binary file
data/ext/gd/rectangle.o CHANGED
Binary file
data/ext/gd/text.o CHANGED
Binary file
data/ext/gd/transform.o CHANGED
Binary file
data/ext/gd/version.o CHANGED
Binary file
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-libgd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Germán Alberto Giménez Silva
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2026-01-15 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: High-performance native Ruby bindings to libgd for image generation,
14
13
  drawing, filters, alpha blending, and transformations.
@@ -70,8 +69,11 @@ files:
70
69
  homepage: https://github.com/ggerman/ruby-libgd
71
70
  licenses:
72
71
  - MIT
73
- metadata: {}
74
- post_install_message:
72
+ metadata:
73
+ homepage_uri: https://github.com/ggerman/ruby-libgd
74
+ source_code_uri: https://github.com/ggerman/ruby-libgd
75
+ changelog_uri: https://github.com/ggerman/ruby-libgd/blob/main/CHANGELOG.md
76
+ rubygems_mfa_required: 'true'
75
77
  rdoc_options: []
76
78
  require_paths:
77
79
  - lib
@@ -87,8 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
89
  - !ruby/object:Gem::Version
88
90
  version: '0'
89
91
  requirements: []
90
- rubygems_version: 3.5.22
91
- signing_key:
92
+ rubygems_version: 4.0.6
92
93
  specification_version: 4
93
94
  summary: Native Ruby bindings for libgd
94
95
  test_files: []