image_optim_pack 0.13.1.20260426 → 0.13.1.20260816
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/.github/dependabot.yml +7 -1
- data/.github/workflows/build.yml +16 -9
- data/.github/workflows/cache-downloads.yml +8 -5
- data/.github/workflows/check.yml +5 -2
- data/.github/workflows/docker-build.yml +6 -3
- data/.github/workflows/livecheck.yml +5 -2
- data/.github/workflows/rubocop.yml +5 -2
- data/.github/workflows/zizmor.yml +17 -0
- data/CHANGELOG.markdown +4 -0
- data/Makefile +1 -1
- data/README.markdown +1 -0
- data/checksums.mk +1 -1
- data/image_optim_pack.gemspec +1 -1
- data/vendor/darwin-arm64/oxipng +0 -0
- data/vendor/darwin-x86_64/oxipng +0 -0
- data/vendor/linux-aarch64-gnu/oxipng +0 -0
- data/vendor/linux-aarch64-musl/oxipng +0 -0
- data/vendor/linux-x86_64-gnu/oxipng +0 -0
- data/vendor/linux-x86_64-musl/oxipng +0 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae387a4313b24c570da09b0de31a056184d83edc1e24e6905ee2d72e8e047ffa
|
|
4
|
+
data.tar.gz: b60d873a7b9e4dbb43939412783e893b3b869111a0471afcfa3415a33890778c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a00df0578a8f542240c52a60c5790079daec0c46383304e5944018f6fa48438b3a52097e860f25b3a8f158be464cf5687d7670f1f563a95d5f214eff3c35182b
|
|
7
|
+
data.tar.gz: 5bc304e78a62e287bbb534b4008a506cef323bfbe3966c038822cf0695a4ff23cb33fbc23b563f691499125bff122f31e55885263470d1c2112a1932f358179e
|
data/.github/dependabot.yml
CHANGED
|
@@ -3,6 +3,12 @@ updates:
|
|
|
3
3
|
- package-ecosystem: github-actions
|
|
4
4
|
directory: /
|
|
5
5
|
schedule:
|
|
6
|
-
interval:
|
|
6
|
+
interval: cron
|
|
7
|
+
cronjob: "30 4 * * 0"
|
|
7
8
|
cooldown:
|
|
8
9
|
default-days: 7
|
|
10
|
+
groups:
|
|
11
|
+
non-major:
|
|
12
|
+
applies-to: version-updates
|
|
13
|
+
patterns: ["*"]
|
|
14
|
+
update-types: [patch, minor]
|
data/.github/workflows/build.yml
CHANGED
|
@@ -2,6 +2,7 @@ name: build
|
|
|
2
2
|
on:
|
|
3
3
|
push:
|
|
4
4
|
pull_request:
|
|
5
|
+
permissions: {}
|
|
5
6
|
jobs:
|
|
6
7
|
linux-gnu-build:
|
|
7
8
|
strategy:
|
|
@@ -10,8 +11,10 @@ jobs:
|
|
|
10
11
|
arch: [x86_64, aarch64]
|
|
11
12
|
runs-on: ${{ case(matrix.arch == 'x86_64', 'ubuntu-latest', 'ubuntu-22.04-arm') }}
|
|
12
13
|
steps:
|
|
13
|
-
- uses: actions/checkout@
|
|
14
|
-
|
|
14
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
15
|
+
with:
|
|
16
|
+
persist-credentials: false
|
|
17
|
+
- uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
15
18
|
with:
|
|
16
19
|
path: download
|
|
17
20
|
key: download-${{ hashFiles('checksums.mk') }}
|
|
@@ -21,7 +24,7 @@ jobs:
|
|
|
21
24
|
- run: rm -r vendor
|
|
22
25
|
- run: sudo apt-get install -y chrpath
|
|
23
26
|
- run: make all -j
|
|
24
|
-
- uses: actions/upload-artifact@v7
|
|
27
|
+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
25
28
|
with:
|
|
26
29
|
name: ${{ github.job }}-${{ matrix.arch }}
|
|
27
30
|
path: vendor/
|
|
@@ -33,8 +36,10 @@ jobs:
|
|
|
33
36
|
arch: [x86_64, aarch64]
|
|
34
37
|
runs-on: ${{ case(matrix.arch == 'x86_64', 'ubuntu-latest', 'ubuntu-22.04-arm') }}
|
|
35
38
|
steps:
|
|
36
|
-
- uses: actions/checkout@
|
|
37
|
-
|
|
39
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
40
|
+
with:
|
|
41
|
+
persist-credentials: false
|
|
42
|
+
- uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
38
43
|
with:
|
|
39
44
|
path: download
|
|
40
45
|
key: download-${{ hashFiles('checksums.mk') }}
|
|
@@ -48,7 +53,7 @@ jobs:
|
|
|
48
53
|
- run: docker exec build make all -j
|
|
49
54
|
- run: docker stop build
|
|
50
55
|
if: always()
|
|
51
|
-
- uses: actions/upload-artifact@v7
|
|
56
|
+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
52
57
|
with:
|
|
53
58
|
name: ${{ github.job }}-${{ matrix.arch }}
|
|
54
59
|
path: vendor/
|
|
@@ -61,8 +66,10 @@ jobs:
|
|
|
61
66
|
build: [x86_64, arm64]
|
|
62
67
|
runs-on: ${{ case(matrix.arch == 'x86_64', 'macos-15-intel', 'macos-14') }}
|
|
63
68
|
steps:
|
|
64
|
-
- uses: actions/checkout@
|
|
65
|
-
|
|
69
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
70
|
+
with:
|
|
71
|
+
persist-credentials: false
|
|
72
|
+
- uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
66
73
|
with:
|
|
67
74
|
path: download
|
|
68
75
|
key: download-${{ hashFiles('checksums.mk') }}
|
|
@@ -73,7 +80,7 @@ jobs:
|
|
|
73
80
|
- run: rustup target add "${{ case(matrix.build == 'arm64', 'aarch64', matrix.build) }}-apple-darwin"
|
|
74
81
|
if: ${{ matrix.build != matrix.arch }}
|
|
75
82
|
- run: make all -j ARCH="${{ matrix.build }}"
|
|
76
|
-
- uses: actions/upload-artifact@v7
|
|
83
|
+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
77
84
|
with:
|
|
78
85
|
name: ${{ github.job }}-${{ matrix.arch }}-build-${{ matrix.build }}
|
|
79
86
|
path: vendor/
|
|
@@ -8,17 +8,20 @@ on:
|
|
|
8
8
|
description: 'Retry attempt'
|
|
9
9
|
required: true
|
|
10
10
|
type: number
|
|
11
|
+
permissions: {}
|
|
11
12
|
jobs:
|
|
12
13
|
cache-downloads:
|
|
13
14
|
runs-on: ubuntu-latest
|
|
14
15
|
steps:
|
|
15
|
-
- uses: actions/checkout@
|
|
16
|
-
|
|
16
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
17
|
+
with:
|
|
18
|
+
persist-credentials: false
|
|
19
|
+
- uses: ruby/setup-ruby@0dafeac902942906541bc140009cdbf32665b601 # v1.315.0
|
|
17
20
|
with:
|
|
18
21
|
ruby-version: '4'
|
|
19
22
|
bundler-cache: true
|
|
20
23
|
- id: cache-restore
|
|
21
|
-
uses: actions/cache/restore@
|
|
24
|
+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
22
25
|
with:
|
|
23
26
|
path: download
|
|
24
27
|
key: download-${{ hashFiles('checksums.mk') }}
|
|
@@ -26,7 +29,7 @@ jobs:
|
|
|
26
29
|
- run: make download-tidy-up
|
|
27
30
|
- run: make download
|
|
28
31
|
- run: make download-dependencies
|
|
29
|
-
- uses: actions/cache/save@
|
|
32
|
+
- uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
30
33
|
with:
|
|
31
34
|
path: download
|
|
32
35
|
key: download-${{ hashFiles('checksums.mk') }}
|
|
@@ -46,7 +49,7 @@ jobs:
|
|
|
46
49
|
exit $exit_code
|
|
47
50
|
fi
|
|
48
51
|
}
|
|
49
|
-
- uses: actions/cache@
|
|
52
|
+
- uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
50
53
|
with:
|
|
51
54
|
path: download
|
|
52
55
|
key: download-${{ hashFiles('checksums.mk') }}
|
data/.github/workflows/check.yml
CHANGED
|
@@ -4,6 +4,7 @@ on:
|
|
|
4
4
|
pull_request:
|
|
5
5
|
schedule:
|
|
6
6
|
- cron: 45 4 * * 0
|
|
7
|
+
permissions: {}
|
|
7
8
|
jobs:
|
|
8
9
|
check:
|
|
9
10
|
runs-on: "${{ matrix.os }}"
|
|
@@ -24,8 +25,10 @@ jobs:
|
|
|
24
25
|
- jruby-10.1
|
|
25
26
|
fail-fast: false
|
|
26
27
|
steps:
|
|
27
|
-
- uses: actions/checkout@
|
|
28
|
-
|
|
28
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
29
|
+
with:
|
|
30
|
+
persist-credentials: false
|
|
31
|
+
- uses: ruby/setup-ruby@0dafeac902942906541bc140009cdbf32665b601 # v1.315.0
|
|
29
32
|
with:
|
|
30
33
|
ruby-version: "${{ matrix.ruby }}"
|
|
31
34
|
bundler-cache: true
|
|
@@ -3,6 +3,7 @@ on:
|
|
|
3
3
|
push:
|
|
4
4
|
pull_request:
|
|
5
5
|
workflow_dispatch:
|
|
6
|
+
permissions: {}
|
|
6
7
|
jobs:
|
|
7
8
|
docker-build:
|
|
8
9
|
runs-on: ubuntu-latest
|
|
@@ -13,13 +14,15 @@ jobs:
|
|
|
13
14
|
- DOCKER_FILE=Dockerfile.debian DOCKER_TAG_SUFFIX=-debian
|
|
14
15
|
fail-fast: false
|
|
15
16
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
17
|
-
|
|
17
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
18
|
+
with:
|
|
19
|
+
persist-credentials: false
|
|
20
|
+
- uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
18
21
|
with:
|
|
19
22
|
path: download
|
|
20
23
|
key: download-${{ hashFiles('checksums.mk') }}
|
|
21
24
|
fail-on-cache-miss: true
|
|
22
|
-
- uses: docker/login-action@v4
|
|
25
|
+
- uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0
|
|
23
26
|
with:
|
|
24
27
|
registry: ghcr.io
|
|
25
28
|
username: ${{ github.actor }}
|
|
@@ -10,12 +10,15 @@ on:
|
|
|
10
10
|
description: 'Retry attempt'
|
|
11
11
|
required: true
|
|
12
12
|
type: number
|
|
13
|
+
permissions: {}
|
|
13
14
|
jobs:
|
|
14
15
|
livecheck:
|
|
15
16
|
runs-on: ubuntu-latest
|
|
16
17
|
steps:
|
|
17
|
-
- uses: actions/checkout@
|
|
18
|
-
|
|
18
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
19
|
+
with:
|
|
20
|
+
persist-credentials: false
|
|
21
|
+
- uses: ruby/setup-ruby@0dafeac902942906541bc140009cdbf32665b601 # v1.315.0
|
|
19
22
|
with:
|
|
20
23
|
ruby-version: '4'
|
|
21
24
|
bundler-cache: true
|
|
@@ -4,12 +4,15 @@ on:
|
|
|
4
4
|
pull_request:
|
|
5
5
|
schedule:
|
|
6
6
|
- cron: 45 4 * * 0
|
|
7
|
+
permissions: {}
|
|
7
8
|
jobs:
|
|
8
9
|
rubocop:
|
|
9
10
|
runs-on: ubuntu-latest
|
|
10
11
|
steps:
|
|
11
|
-
- uses: actions/checkout@
|
|
12
|
-
|
|
12
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
13
|
+
with:
|
|
14
|
+
persist-credentials: false
|
|
15
|
+
- uses: ruby/setup-ruby@0dafeac902942906541bc140009cdbf32665b601 # v1.315.0
|
|
13
16
|
with:
|
|
14
17
|
ruby-version: '4'
|
|
15
18
|
bundler-cache: true
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
name: zizmor
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
pull_request:
|
|
5
|
+
permissions: {}
|
|
6
|
+
jobs:
|
|
7
|
+
zizmor:
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
permissions:
|
|
10
|
+
security-events: write
|
|
11
|
+
contents: read
|
|
12
|
+
actions: read
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
15
|
+
with:
|
|
16
|
+
persist-credentials: false
|
|
17
|
+
- uses: zizmorcore/zizmor-action@3dc1ecc9bcb9e94e9b2c709687979e1298497054 # v0.6.2
|
data/CHANGELOG.markdown
CHANGED
data/Makefile
CHANGED
|
@@ -18,7 +18,7 @@ LIBMOZJPEG_VER := 4.1.5
|
|
|
18
18
|
LIBPNG_VER := 1.6.58
|
|
19
19
|
LIBZ_VER := 1.3.2
|
|
20
20
|
OPTIPNG_VER := 7.9.1
|
|
21
|
-
OXIPNG_VER := 10.
|
|
21
|
+
OXIPNG_VER := 10.2.0
|
|
22
22
|
PNGCRUSH_VER := 1.8.13
|
|
23
23
|
PNGOUT_VER = $(if $(IS_DARWIN),$(PNGOUT_DARWIN_VER),$(PNGOUT_LINUX_VER))
|
|
24
24
|
PNGOUT_LINUX_VER := 20200115
|
data/README.markdown
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
[](https://github.com/toy/image_optim_pack/actions/workflows/cache-downloads.yml)
|
|
8
8
|
[](https://depfu.com/github/toy/image_optim_pack)
|
|
9
9
|
[](https://inch-ci.org/github/toy/image_optim_pack)
|
|
10
|
+
[](https://github.com/toy/image_optim_pack/actions/workflows/zizmor.yml)
|
|
10
11
|
|
|
11
12
|
# image\_optim\_pack
|
|
12
13
|
|
data/checksums.mk
CHANGED
|
@@ -9,7 +9,7 @@ LIBMOZJPEG_SHA256 := 9fcbb7171f6ac383f5b391175d6fb3acde5e64c4c4727274eade84ed099
|
|
|
9
9
|
LIBPNG_SHA256 := 8c9b05b675ca7301a458df2c2e46f26e1d41ff36b8863f8c33530bc58c2e6225
|
|
10
10
|
LIBZ_SHA256 := b99a0b86c0ba9360ec7e78c4f1e43b1cbdf1e6936c8fa0f6835c0cd694a495a1
|
|
11
11
|
OPTIPNG_SHA256 := c2579be58c2c66dae9d63154edcb3d427fef64cb00ec0aff079c9d156ec46f29
|
|
12
|
-
OXIPNG_SHA256 :=
|
|
12
|
+
OXIPNG_SHA256 := 0d0da5f245ed3a669bce63d3ca368d476bae67b0014a927c00df912c9d964a44
|
|
13
13
|
PNGCRUSH_SHA256 := fed0aaf5c098aa8c7f78c75365cd18d7341417326ecbdba547876b7b4f3df4be
|
|
14
14
|
PNGOUT_LINUX_SHA256 := ac38bba6f0de29033de866538c3afa64341319b695bbe388efbc5fd9e830e928
|
|
15
15
|
PNGOUT_LINUX_STATIC_SHA256 := 7a78ea475d65a00981bf418e5dfa3b34e42d6460fb992340802873bb14b08597
|
data/image_optim_pack.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'image_optim_pack'
|
|
5
|
-
s.version = '0.13.1.
|
|
5
|
+
s.version = '0.13.1.20260816'
|
|
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/vendor/darwin-arm64/oxipng
CHANGED
|
Binary file
|
data/vendor/darwin-x86_64/oxipng
CHANGED
|
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.13.1.
|
|
4
|
+
version: 0.13.1.20260816
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ivan Kuchin
|
|
@@ -103,6 +103,7 @@ files:
|
|
|
103
103
|
- ".github/workflows/docker-build.yml"
|
|
104
104
|
- ".github/workflows/livecheck.yml"
|
|
105
105
|
- ".github/workflows/rubocop.yml"
|
|
106
|
+
- ".github/workflows/zizmor.yml"
|
|
106
107
|
- ".gitignore"
|
|
107
108
|
- ".rubocop.yml"
|
|
108
109
|
- CHANGELOG.markdown
|
|
@@ -254,7 +255,7 @@ licenses:
|
|
|
254
255
|
metadata:
|
|
255
256
|
bug_tracker_uri: https://github.com/toy/image_optim_pack/issues
|
|
256
257
|
changelog_uri: https://github.com/toy/image_optim_pack/blob/master/CHANGELOG.markdown
|
|
257
|
-
documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.13.1.
|
|
258
|
+
documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.13.1.20260816
|
|
258
259
|
source_code_uri: https://github.com/toy/image_optim_pack
|
|
259
260
|
rdoc_options: []
|
|
260
261
|
require_paths:
|
|
@@ -270,7 +271,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
270
271
|
- !ruby/object:Gem::Version
|
|
271
272
|
version: '0'
|
|
272
273
|
requirements: []
|
|
273
|
-
rubygems_version: 4.0.
|
|
274
|
+
rubygems_version: 4.0.17
|
|
274
275
|
specification_version: 4
|
|
275
276
|
summary: 'Precompiled binaries for image_optim: advpng, gifsicle, jhead, jpeg-recompress,
|
|
276
277
|
jpegoptim, jpegtran, optipng, oxipng, pngcrush, pngout, pngquant'
|