image_optim_pack 0.12.1.20250704-x86_64-linux → 0.12.1.20250921-x86_64-linux

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: c9b2abb29867bb6bbae5e6f206c1ed846a10eaea8a795d6bb454cc0d89160977
4
- data.tar.gz: 7d483e4ca36f030bac490b76a553d073a6608f8908d495d349b519ecaec3a444
3
+ metadata.gz: 12d20984d8ed54a292574abe3874d0d6976f7c3c871956a615611c8bc00df37f
4
+ data.tar.gz: 59f054fc962e8523afb0e5c89a2ba910a08fbe500ebbb441dbca01f7cbff00a1
5
5
  SHA512:
6
- metadata.gz: 83647fd57b4021ba03a7c763930d85d64ecd2389002a16e31f064542ca23de69d9949dd7ef66492842d72ea8bed1ee2439f316e9ae5390a82f646c752ce7548c
7
- data.tar.gz: c6accf8fb361c2c4aa3309eb9891d5e16cb11307ed06a335da642e75163d2984806c6681a524718aa9b446cf174b98dbe9570fcd72b43618c2c4404f6ba160ec
6
+ metadata.gz: 60a67332a9bb282a44daf3e66faca1a9ea1276f36284c2716e71000e9d5ac4a7d44e90633ac93714997b5498b4618ee3c6bd0868b3ffa76fb4e3d4b15f137ec0
7
+ data.tar.gz: ee048c8a84e6f0b32605d81c0f7f2e2eaf89dadc89d90a086883d4ebadacf4d587a8ac202e0781180883ae6c3125b966450742f9e58787441a10bb799ba14787
@@ -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
@@ -20,7 +20,7 @@ jobs:
20
20
  build-on-darwin-x86_64:
21
21
  runs-on: macos-13
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
@@ -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,10 @@
2
2
 
3
3
  ## unreleased
4
4
 
5
+ ## v0.12.1.20250921 (2025-09-21)
6
+
7
+ * jpegoptim 1.5.6 [@toy](https://github.com/toy)
8
+
5
9
  ## v0.12.1.20250704 (2025-07-04)
6
10
 
7
11
  * libpng 1.6.50 [@toy](https://github.com/toy)
data/Makefile CHANGED
@@ -6,7 +6,7 @@ ADVANCECOMP_VER := 2.6
6
6
  GIFSICLE_VER := 1.96
7
7
  JHEAD_VER := 3.04
8
8
  JPEGARCHIVE_VER := 2.2.0
9
- JPEGOPTIM_VER := 1.5.5
9
+ JPEGOPTIM_VER := 1.5.6
10
10
  LIBJPEG_VER := 9f
11
11
  LIBLCMS_VER := 2.17
12
12
  LIBMOZJPEG_VER := 4.1.5
@@ -467,7 +467,7 @@ endif
467
467
 
468
468
  ## libmozjpeg
469
469
  $(LIBMOZJPEG_TARGET) :
470
- cd $(DIR) && cmake -DPNG_SUPPORTED=0 .
470
+ cd $(DIR) && cmake -DPNG_SUPPORTED=0 -DCMAKE_POLICY_VERSION_MINIMUM=3.5 .
471
471
  cd $(DIR) && $(MAKE) jpeg-static
472
472
 
473
473
  ## libpng
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,7 +2,7 @@ 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
7
  LIBLCMS_SHA256 := d11af569e42a1baa1650d20ad61d12e41af4fead4aa7964a01f93b08b53ab074
8
8
  LIBMOZJPEG_SHA256 := 9fcbb7171f6ac383f5b391175d6fb3acde5e64c4c4727274eade84ed0998fcc1
@@ -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.1.20250921'
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']
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.1.20250921
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Ivan Kuchin
@@ -173,7 +173,7 @@ licenses:
173
173
  metadata:
174
174
  bug_tracker_uri: https://github.com/toy/image_optim_pack/issues
175
175
  changelog_uri: https://github.com/toy/image_optim_pack/blob/master/CHANGELOG.markdown
176
- documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.12.1.20250704
176
+ documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.12.1.20250921
177
177
  source_code_uri: https://github.com/toy/image_optim_pack
178
178
  rdoc_options: []
179
179
  require_paths:
@@ -189,7 +189,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
189
189
  - !ruby/object:Gem::Version
190
190
  version: '0'
191
191
  requirements: []
192
- rubygems_version: 3.6.8
192
+ rubygems_version: 3.7.2
193
193
  specification_version: 4
194
194
  summary: 'Precompiled binaries for image_optim: advpng, gifsicle, jhead, jpeg-recompress,
195
195
  jpegoptim, jpegtran, optipng, oxipng, pngcrush, pngout, pngquant'