image_optim_pack 0.12.1.20250704 → 0.12.2

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: 9d0c4a236f36881c701731d14ec5a0327c19c225d725fc12989a3bbcdb2bd334
4
- data.tar.gz: 62a1ab38c53875c86b2cd573e55a74de463e47eab75dd887ef1c469625a69f39
3
+ metadata.gz: a93e8bdc2e268667748f37d395e447d0f06767746257e552b407763ea273a53f
4
+ data.tar.gz: d0bad7960a0e00acb00559880b077eaf641238b3bf9a6f5425f024f0ea71da78
5
5
  SHA512:
6
- metadata.gz: bdfcf2332011e3a22afc3e770540dd8b9f843636ef7fd3f9aa98d82f95faa257f33861be2b5cd8cc293beecd84ae655e2247276911e52bc8186e434b254dea14
7
- data.tar.gz: 6ef5b7315399eb9c3518167dc8d95e5738d6d88b0cfed8479a179cfde27d714911e3fcc8e398b16933f454e0bffb655eb851448e7952806433ac7978ff65fcc5
6
+ metadata.gz: 89afe382210b8ce53ab8cf96e2e405758764b045725c9d8a4c74fac924e3f9f21d8402dc5385b6a31653a94eed56b04329441c8195ae9692877f1af427ad2604
7
+ data.tar.gz: e7039cc7ed57f02632e31e4fe54bc0a3d58da3adcc0d29495e168deae9160dc88f7787e1156e1fb008e9cbcbbd241991bbcd26f9efa3dab8ed16dbf7444d300d
@@ -6,7 +6,7 @@ jobs:
6
6
  build-on-linux:
7
7
  runs-on: ubuntu-latest
8
8
  steps:
9
- - uses: actions/checkout@v4
9
+ - uses: actions/checkout@v5
10
10
  - run: uname -m
11
11
  - run: sudo apt-get install -y chrpath
12
12
  - run: rustup target list --installed
@@ -18,9 +18,9 @@ jobs:
18
18
  name: on-linux
19
19
  path: vendor/
20
20
  build-on-darwin-x86_64:
21
- runs-on: macos-13
21
+ runs-on: macos-15-intel
22
22
  steps:
23
- - uses: actions/checkout@v4
23
+ - uses: actions/checkout@v5
24
24
  - run: uname -m
25
25
  - run: rustup target add aarch64-apple-darwin
26
26
  - run: make download download-dependencies
@@ -34,7 +34,7 @@ jobs:
34
34
  build-on-darwin-arm64:
35
35
  runs-on: macos-14
36
36
  steps:
37
- - uses: actions/checkout@v4
37
+ - uses: actions/checkout@v5
38
38
  - run: uname -m
39
39
  - run: rustup target add x86_64-apple-darwin
40
40
  - run: make download download-dependencies
@@ -11,7 +11,7 @@ jobs:
11
11
  matrix:
12
12
  os:
13
13
  - ubuntu-latest
14
- - macos-13
14
+ - macos-15-intel
15
15
  - macos-14
16
16
  ruby:
17
17
  - '2.7'
@@ -24,7 +24,7 @@ jobs:
24
24
  - jruby-10.0
25
25
  fail-fast: false
26
26
  steps:
27
- - uses: actions/checkout@v4
27
+ - uses: actions/checkout@v5
28
28
  - uses: ruby/setup-ruby@v1
29
29
  with:
30
30
  ruby-version: "${{ matrix.ruby }}"
@@ -13,7 +13,7 @@ jobs:
13
13
  - DOCKER_FILE=Dockerfile.debian DOCKER_TAG_SUFFIX=-debian
14
14
  fail-fast: false
15
15
  steps:
16
- - uses: actions/checkout@v4
16
+ - uses: actions/checkout@v5
17
17
  - uses: docker/login-action@v3
18
18
  with:
19
19
  registry: ghcr.io
@@ -14,7 +14,7 @@ jobs:
14
14
  livecheck:
15
15
  runs-on: ubuntu-latest
16
16
  steps:
17
- - uses: actions/checkout@v4
17
+ - uses: actions/checkout@v5
18
18
  - uses: ruby/setup-ruby@v1
19
19
  with:
20
20
  ruby-version: '3'
@@ -8,7 +8,7 @@ jobs:
8
8
  rubocop:
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
- - uses: actions/checkout@v4
11
+ - uses: actions/checkout@v5
12
12
  - uses: ruby/setup-ruby@v1
13
13
  with:
14
14
  ruby-version: '3'
data/CHANGELOG.markdown CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  ## unreleased
4
4
 
5
+ ## v0.12.2 (2025-10-05)
6
+
7
+ * Rebuild pngquant ensuring proper linking of libraries [@toy](https://github.com/toy)
8
+ * libz 1.3.1 [@toy](https://github.com/toy)
9
+
10
+ ## v0.12.1.20250921 (2025-09-21)
11
+
12
+ * jpegoptim 1.5.6 [@toy](https://github.com/toy)
13
+
5
14
  ## v0.12.1.20250704 (2025-07-04)
6
15
 
7
16
  * libpng 1.6.50 [@toy](https://github.com/toy)
data/Dockerfile CHANGED
@@ -29,12 +29,12 @@ RUN ./extract libpng && \
29
29
  ./configure --with-zlib-prefix=/usr/local && \
30
30
  make install
31
31
 
32
- FROM libpng as liblcms
33
- ARG LIBLCMS_VER
34
- ARG LIBLCMS_SHA256
35
- COPY download/liblcms-$LIBLCMS_VER.tar.gz download/
36
- RUN ./extract liblcms && \
37
- cd build/liblcms && \
32
+ FROM libpng as liblcms2
33
+ ARG LIBLCMS2_VER
34
+ ARG LIBLCMS2_SHA256
35
+ COPY download/liblcms2-$LIBLCMS2_VER.tar.gz download/
36
+ RUN ./extract liblcms2 && \
37
+ cd build/liblcms2 && \
38
38
  ./configure && \
39
39
  make install
40
40
 
@@ -137,7 +137,7 @@ RUN ./extract pngout_linux_static && \
137
137
  cd build/pngout_linux_static && \
138
138
  cp amd64/pngout-static /usr/local/bin/pngout
139
139
 
140
- FROM liblcms as pngquant
140
+ FROM liblcms2 as pngquant
141
141
  ARG PNGQUANT_VER
142
142
  ARG PNGQUANT_SHA256
143
143
  COPY download/pngquant-$PNGQUANT_VER.tar.gz download/
@@ -176,7 +176,7 @@ COPY --from=pngquant /usr/local/bin/pngquant /usr/local/bin/
176
176
  COPY --from=libjpeg /usr/local/lib/libjpeg.so.9 /usr/local/lib/
177
177
  COPY --from=libpng /usr/local/lib/libpng16.so.16 /usr/local/lib/
178
178
  COPY --from=libz /usr/local/lib/libz.so.1 /usr/local/lib/
179
- COPY --from=liblcms /usr/local/lib/liblcms2.so.2 /usr/local/lib/
179
+ COPY --from=liblcms2 /usr/local/lib/liblcms2.so.2 /usr/local/lib/
180
180
 
181
181
  RUN npm -g install svgo
182
182
  RUN gem install --no-document image_optim
data/Dockerfile.debian CHANGED
@@ -29,12 +29,12 @@ RUN ./extract libpng && \
29
29
  ./configure --with-zlib-prefix=/usr/local && \
30
30
  make install
31
31
 
32
- FROM libpng as liblcms
33
- ARG LIBLCMS_VER
34
- ARG LIBLCMS_SHA256
35
- COPY download/liblcms-$LIBLCMS_VER.tar.gz download/
36
- RUN ./extract liblcms && \
37
- cd build/liblcms && \
32
+ FROM libpng as liblcms2
33
+ ARG LIBLCMS2_VER
34
+ ARG LIBLCMS2_SHA256
35
+ COPY download/liblcms2-$LIBLCMS2_VER.tar.gz download/
36
+ RUN ./extract liblcms2 && \
37
+ cd build/liblcms2 && \
38
38
  ./configure && \
39
39
  make install
40
40
 
@@ -137,7 +137,7 @@ RUN ./extract pngout_linux_static && \
137
137
  cd build/pngout_linux_static && \
138
138
  cp amd64/pngout-static /usr/local/bin/pngout
139
139
 
140
- FROM liblcms as pngquant
140
+ FROM liblcms2 as pngquant
141
141
  ARG PNGQUANT_VER
142
142
  ARG PNGQUANT_SHA256
143
143
  COPY download/pngquant-$PNGQUANT_VER.tar.gz download/
@@ -176,7 +176,7 @@ COPY --from=pngquant /usr/local/bin/pngquant /usr/local/bin/
176
176
  COPY --from=libjpeg /usr/local/lib/libjpeg.so.9 /usr/local/lib/
177
177
  COPY --from=libpng /usr/local/lib/libpng16.so.16 /usr/local/lib/
178
178
  COPY --from=libz /usr/local/lib/libz.so.1 /usr/local/lib/
179
- COPY --from=liblcms /usr/local/lib/liblcms2.so.2 /usr/local/lib/
179
+ COPY --from=liblcms2 /usr/local/lib/liblcms2.so.2 /usr/local/lib/
180
180
 
181
181
  RUN npm -g install svgo
182
182
  RUN gem install --no-document image_optim
data/Makefile CHANGED
@@ -1,17 +1,22 @@
1
1
  all :
2
2
 
3
+ ORIGINAL_VARIABLES := $(.VARIABLES)
4
+ print-variables :
5
+ $(foreach v, $(sort $(filter-out $(ORIGINAL_VARIABLES) ORIGINAL_VARIABLES,$(.VARIABLES))), $(info $(v) = $($(v))))
6
+ .PHONY : print-variables
7
+
3
8
  # ====== VERSIONS ======
4
9
 
5
10
  ADVANCECOMP_VER := 2.6
6
11
  GIFSICLE_VER := 1.96
7
12
  JHEAD_VER := 3.04
8
13
  JPEGARCHIVE_VER := 2.2.0
9
- JPEGOPTIM_VER := 1.5.5
14
+ JPEGOPTIM_VER := 1.5.6
10
15
  LIBJPEG_VER := 9f
11
- LIBLCMS_VER := 2.17
16
+ LIBLCMS2_VER := 2.17
12
17
  LIBMOZJPEG_VER := 4.1.5
13
18
  LIBPNG_VER := 1.6.50
14
- LIBZ_VER := 1.2.11
19
+ LIBZ_VER := 1.3.1
15
20
  OPTIPNG_VER := 7.9.1
16
21
  OXIPNG_VER := 9.1.5
17
22
  PNGCRUSH_VER := 1.8.13
@@ -59,7 +64,15 @@ ANSI_RESET=\033[0m
59
64
  downcase = $(shell echo $1 | tr A-Z a-z)
60
65
 
61
66
  tar := $(shell if command -v bsdtar >/dev/null 2>&1; then echo bsdtar; else echo tar; fi)
62
- sha256sum := $(shell if command -v sha256sum >/dev/null 2>&1; then echo sha256sum; elif command -v shasum >/dev/null 2>&1; then echo shasum -a 256; else echo sha256; fi)
67
+ sha256sum := $(shell \
68
+ empty_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855; \
69
+ for cmd in sha256sum "shasum -a 256" gsha256sum sha256; do \
70
+ if echo "$$empty_sha256 /dev/null" | $$cmd -c >/dev/null 2>&1; then \
71
+ echo "$$cmd"; \
72
+ exit 0; \
73
+ fi; \
74
+ done; \
75
+ echo false)
63
76
 
64
77
  # ====== ARCHIVES ======
65
78
 
@@ -90,10 +103,10 @@ $(call archive,$1,$3)
90
103
  $$($1_ARC) :
91
104
  mkdir -p $(DL_DIR)
92
105
  test -w $(DL_DIR)
93
- while ! mkdir $$@.lock 2> /dev/null; do sleep 1; done
94
- wget -q -O $$@.tmp $(subst [VER],$($1_VER),$(strip $2))
95
- mv $$@.tmp $$@
96
- rm -r $$@.lock
106
+ tmpfile=`mktemp "$$@.XXXXXXXXXX"` && \
107
+ wget -q -O "$$$$tmpfile" --no-use-server-timestamps "$(subst [VER],$($1_VER),$(strip $2))" && \
108
+ chmod 644 "$$$$tmpfile" && \
109
+ mv "$$$$tmpfile" "$$@"
97
110
  endef
98
111
 
99
112
  $(eval $(call archive-dl,ADVANCECOMP, https://github.com/amadvance/advancecomp/releases/download/v[VER]/advancecomp-[VER].tar.gz))
@@ -102,10 +115,10 @@ $(eval $(call archive-dl,JHEAD, https://www.sentex.ca/~mwandel/jhead/jhead
102
115
  $(eval $(call archive-dl,JPEGARCHIVE, https://github.com/danielgtaylor/jpeg-archive/archive/v[VER].tar.gz))
103
116
  $(eval $(call archive-dl,JPEGOPTIM, https://github.com/tjko/jpegoptim/archive/v[VER].tar.gz))
104
117
  $(eval $(call archive-dl,LIBJPEG, https://www.ijg.org/files/jpegsrc.v[VER].tar.gz))
105
- $(eval $(call archive-dl,LIBLCMS, https://prdownloads.sourceforge.net/lcms/lcms2-[VER].tar.gz?download))
118
+ $(eval $(call archive-dl,LIBLCMS2, https://prdownloads.sourceforge.net/lcms/lcms2-[VER].tar.gz?download))
106
119
  $(eval $(call archive-dl,LIBMOZJPEG, https://github.com/mozilla/mozjpeg/archive/v[VER].tar.gz))
107
120
  $(eval $(call archive-dl,LIBPNG, https://prdownloads.sourceforge.net/libpng/libpng-[VER].tar.gz?download))
108
- $(eval $(call archive-dl,LIBZ, https://prdownloads.sourceforge.net/libpng/zlib-[VER].tar.gz?download))
121
+ $(eval $(call archive-dl,LIBZ, https://github.com/madler/zlib/archive/v[VER].tar.gz))
109
122
  $(eval $(call archive-dl,OPTIPNG, https://prdownloads.sourceforge.net/optipng/optipng-[VER].tar.gz?download))
110
123
  $(eval $(call archive-dl,OXIPNG, https://github.com/oxipng/oxipng/archive/refs/tags/v[VER].tar.gz))
111
124
  $(eval $(call archive-dl,PNGCRUSH, https://prdownloads.sourceforge.net/pmt/pngcrush-[VER]-nolib.tar.gz?download))
@@ -182,7 +195,7 @@ $(eval $(call target,JPEG-RECOMPRESS,JPEGARCHIVE))
182
195
  $(eval $(call target,JPEGOPTIM))
183
196
  $(eval $(call target,JPEGTRAN,LIBJPEG,.libs/jpegtran))
184
197
  $(eval $(call target,LIBJPEG,,libjpeg$(DLEXT)))
185
- $(eval $(call target,LIBLCMS,,liblcms2$(DLEXT)))
198
+ $(eval $(call target,LIBLCMS2,,liblcms2$(DLEXT)))
186
199
  $(eval $(call target-build,LIBMOZJPEG,,libjpeg.a))
187
200
  $(eval $(call target,LIBPNG,,libpng$(DLEXT)))
188
201
  $(eval $(call target,LIBZ,,libz$(DLEXT)))
@@ -238,6 +251,7 @@ define check_output
238
251
  endef
239
252
 
240
253
  define check_shlib
254
+ @$(ldd) $(OUTPUT_DIR)/$1 | egrep "\s+.*/.*"
241
255
  @! $(ldd) $(OUTPUT_DIR)/$1 | egrep -o "[^: ]+/[^: ]+" | egrep -v "^(@loader_path|/lib|/lib64|/usr|$(OUTPUT_DIR))/"
242
256
  endef
243
257
 
@@ -453,8 +467,8 @@ else
453
467
  endif
454
468
  cd $(DIR) && ln -sf .libs/libjpeg$(DLEXT) .
455
469
 
456
- ## liblcms
457
- $(LIBLCMS_TARGET) :
470
+ ## liblcms2
471
+ $(LIBLCMS2_TARGET) :
458
472
  cd $(DIR) && ./configure --host "$(HOST)"
459
473
  cd $(DIR) && $(libtool_target_soname)
460
474
  ifdef IS_DARWIN
@@ -467,7 +481,7 @@ endif
467
481
 
468
482
  ## libmozjpeg
469
483
  $(LIBMOZJPEG_TARGET) :
470
- cd $(DIR) && cmake -DPNG_SUPPORTED=0 .
484
+ cd $(DIR) && cmake -DPNG_SUPPORTED=0 -DCMAKE_POLICY_VERSION_MINIMUM=3.5 .
471
485
  cd $(DIR) && $(MAKE) jpeg-static
472
486
 
473
487
  ## libpng
@@ -529,15 +543,15 @@ endif
529
543
  cd $(DIR) && touch pngout
530
544
 
531
545
  ## pngquant
532
- $(eval $(call depend,PNGQUANT,LIBLCMS LIBPNG LIBZ))
533
- $(PNGQUANT_TARGET) : export OVERRIDE_BIN_DIR = $(LIBPNG_DIR)/override-bin
534
- $(PNGQUANT_TARGET) : export PATH := $(OVERRIDE_BIN_DIR):$(PATH)
546
+ $(eval $(call depend,PNGQUANT,LIBLCMS2 LIBPNG LIBZ))
535
547
  $(PNGQUANT_TARGET) : export RUSTFLAGS = -C link-arg=$(XORIGIN)
536
548
  $(PNGQUANT_TARGET) :
537
- # prevent build code of libpng-sys crate from using libpng-config
538
- mkdir -p $(OVERRIDE_BIN_DIR) && \
539
- cd $(OVERRIDE_BIN_DIR) && \
540
- printf '%s\n' '#!/bin/sh' 'echo 1.5' > libpng-config && \
541
- chmod +x libpng-config
542
- cd $(DIR) && cargo build --release --frozen --offline --target=$(RUST_HOST)
549
+ printf "%s\n" \
550
+ $(foreach LIB,PNG Z LCMS2, \
551
+ "[target.$(RUST_HOST).$(call downcase,$(LIB))]" \
552
+ "rustc-link-lib = ['$(call downcase,$(LIB))']" \
553
+ "rustc-link-search = ['native=$(LIB$(LIB)_DIR)']" \
554
+ "include = '$(LIB$(LIB)_DIR)'" \
555
+ ) > $(DIR)/override.toml
556
+ cd $(DIR) && cargo build --release --frozen --offline --target=$(RUST_HOST) --config override.toml
543
557
  $(call chrpath_origin,$@)
data/README.markdown CHANGED
@@ -4,7 +4,6 @@
4
4
  [![Docker build](https://img.shields.io/github/actions/workflow/status/toy/image_optim_pack/docker-build.yml?label=docker+build&logo=docker)](https://github.com/toy/image_optim_pack/actions/workflows/docker-build.yml)
5
5
  [![Livecheck](https://img.shields.io/github/actions/workflow/status/toy/image_optim_pack/livecheck.yml?label=livecheck&logo=github)](https://github.com/toy/image_optim_pack/actions/workflows/livecheck.yml)
6
6
  [![Build](https://img.shields.io/github/actions/workflow/status/toy/image_optim_pack/build.yml?label=build&logo=github)](https://github.com/toy/image_optim_pack/actions/workflows/build.yml)
7
- [![Code Climate](https://img.shields.io/codeclimate/maintainability/toy/image_optim_pack?logo=codeclimate)](https://codeclimate.com/github/toy/image_optim_pack)
8
7
  [![Depfu](https://img.shields.io/depfu/toy/image_optim_pack)](https://depfu.com/github/toy/image_optim_pack)
9
8
  [![Inch CI](https://inch-ci.org/github/toy/image_optim_pack.svg?branch=master)](https://inch-ci.org/github/toy/image_optim_pack)
10
9
 
data/checksums.mk CHANGED
@@ -2,12 +2,12 @@ ADVANCECOMP_SHA256 := b07d77735540409771cbe1b6df165b5151c11bb9c3d8f01290be0ec88e
2
2
  GIFSICLE_SHA256 := fd23d279681a6dfe3c15264e33f344045b3ba473da4d19f49e67a50994b077fb
3
3
  JHEAD_SHA256 := ef89bbcf4f6c25ed88088cf242a47a6aedfff4f08cc7dc205bf3e2c0f10a03c9
4
4
  JPEGARCHIVE_SHA256 := 3da16a5abbddd925dee0379aa51d9fe0cba33da0b5703be27c13a2dda3d7ed75
5
- JPEGOPTIM_SHA256 := 90a309d1c092de358bb411d702281ac3039b489d03adb0bc3c4ef04cf0067d38
5
+ JPEGOPTIM_SHA256 := 661a808dfffa933d78c6beb47a2937d572b9f03e94cbaaab3d4c0d72f410e9be
6
6
  LIBJPEG_SHA256 := 04705c110cb2469caa79fb71fba3d7bf834914706e9641a4589485c1f832565b
7
- LIBLCMS_SHA256 := d11af569e42a1baa1650d20ad61d12e41af4fead4aa7964a01f93b08b53ab074
7
+ LIBLCMS2_SHA256 := d11af569e42a1baa1650d20ad61d12e41af4fead4aa7964a01f93b08b53ab074
8
8
  LIBMOZJPEG_SHA256 := 9fcbb7171f6ac383f5b391175d6fb3acde5e64c4c4727274eade84ed0998fcc1
9
9
  LIBPNG_SHA256 := 708f4398f996325819936d447f982e0db90b6b8212b7507e7672ea232210949a
10
- LIBZ_SHA256 := c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1
10
+ LIBZ_SHA256 := 17e88863f3600672ab49182f217281b6fc4d3c762bde361935e436a95214d05c
11
11
  OPTIPNG_SHA256 := c2579be58c2c66dae9d63154edcb3d427fef64cb00ec0aff079c9d156ec46f29
12
12
  OXIPNG_SHA256 := 8f99d5c67efa2a7550023bf610b90e65d421375c9ed7f37097f83ae5c05f85bd
13
13
  PNGCRUSH_SHA256 := fed0aaf5c098aa8c7f78c75365cd18d7341417326ecbdba547876b7b4f3df4be
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'image_optim_pack'
5
- s.version = '0.12.1.20250704'
5
+ s.version = '0.12.2'
6
6
  s.summary = %q{Precompiled binaries for image_optim: advpng, gifsicle, jhead, jpeg-recompress, jpegoptim, jpegtran, optipng, oxipng, pngcrush, pngout, pngquant}
7
7
  s.homepage = "https://github.com/toy/#{s.name}"
8
8
  s.authors = ['Ivan Kuchin']
data/script/livecheck CHANGED
@@ -38,7 +38,7 @@ CONFIG = {
38
38
  regexp: /jpegsrc.v(.*?).tar.gz/,
39
39
  info_url: 'https://jpegclub.org/reference/reference-sources/#:~:text=CHANGE%20LOG',
40
40
  },
41
- liblcms: {
41
+ liblcms2: {
42
42
  url: 'https://sourceforge.net/projects/lcms/rss?path=/lcms',
43
43
  regexp: %r{/lcms/(\d+(?:\.\d+)*)/},
44
44
  info_url: 'https://www.littlecms.com/blog/',
@@ -51,12 +51,12 @@ CONFIG = {
51
51
  libpng: {
52
52
  url: 'https://sourceforge.net/projects/libpng/rss?path=/libpng16',
53
53
  regexp: %r{/libpng\d*/(\d+(?:\.\d+)*)/},
54
- info_url: 'https://github.com/glennrp/libpng/blob/libpng16/CHANGES#:~:text=Send%20comments/corrections/commendations%20to%20png%2Dmng%2Dimplement%20at%20lists.sf.net.',
54
+ info_url: 'https://github.com/pnggroup/libpng/blob/libpng16/CHANGES#:~:text=Send%20comments/corrections/commendations%20to%20png%2Dmng%2Dimplement%20at%20lists.sf.net.',
55
55
  },
56
56
  libz: {
57
- url: 'https://sourceforge.net/projects/libpng/rss?path=/zlib',
58
- regexp: %r{/zlib/(\d+(?:\.\d+)*)/},
59
- info_url: 'https://github.com/glennrp/zlib/blob/master/ChangeLog',
57
+ url: 'https://github.com/madler/zlib/releases.atom',
58
+ regexp: %r{<id>tag:github.com,2008:Repository/\d+/v(\d+(?:\.\d+)*)</id>},
59
+ info_url: 'https://www.zlib.net/ChangeLog.txt',
60
60
  },
61
61
  optipng: {
62
62
  url: 'https://optipng.sourceforge.net',
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: image_optim_pack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.1.20250704
4
+ version: 0.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Kuchin
@@ -203,7 +203,7 @@ licenses:
203
203
  metadata:
204
204
  bug_tracker_uri: https://github.com/toy/image_optim_pack/issues
205
205
  changelog_uri: https://github.com/toy/image_optim_pack/blob/master/CHANGELOG.markdown
206
- documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.12.1.20250704
206
+ documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.12.2
207
207
  source_code_uri: https://github.com/toy/image_optim_pack
208
208
  rdoc_options: []
209
209
  require_paths:
@@ -219,7 +219,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
219
219
  - !ruby/object:Gem::Version
220
220
  version: '0'
221
221
  requirements: []
222
- rubygems_version: 3.6.8
222
+ rubygems_version: 3.7.2
223
223
  specification_version: 4
224
224
  summary: 'Precompiled binaries for image_optim: advpng, gifsicle, jhead, jpeg-recompress,
225
225
  jpegoptim, jpegtran, optipng, oxipng, pngcrush, pngout, pngquant'