image_optim_pack 0.9.1.20230828 → 0.10.0.20231014
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/CHANGELOG.markdown +9 -0
- data/Makefile +4 -6
- data/README.markdown +1 -1
- data/Vagrantfile +0 -1
- data/checksums.mk +3 -3
- data/image_optim_pack.gemspec +1 -2
- data/script/platform_downloads +1 -20
- data/vendor/darwin-x86_64/advpng +0 -0
- data/vendor/darwin-x86_64/jpeg-recompress +0 -0
- data/vendor/darwin-x86_64/oxipng +0 -0
- data/vendor/linux-x86_64/advpng +0 -0
- data/vendor/linux-x86_64/jpeg-recompress +0 -0
- data/vendor/linux-x86_64/oxipng +0 -0
- metadata +4 -20
- data/image_optim_pack-linux-x86.gemspec +0 -3
- data/vendor/linux-i686/advpng +0 -0
- data/vendor/linux-i686/gifsicle +0 -0
- data/vendor/linux-i686/jhead +0 -0
- data/vendor/linux-i686/jpeg-recompress +0 -0
- data/vendor/linux-i686/jpegoptim +0 -0
- data/vendor/linux-i686/jpegtran +0 -0
- data/vendor/linux-i686/libjpeg.so +0 -0
- data/vendor/linux-i686/liblcms2.so +0 -0
- data/vendor/linux-i686/libpng.so +0 -0
- data/vendor/linux-i686/libz.so +0 -0
- data/vendor/linux-i686/optipng +0 -0
- data/vendor/linux-i686/oxipng +0 -0
- data/vendor/linux-i686/pngcrush +0 -0
- data/vendor/linux-i686/pngout +0 -0
- data/vendor/linux-i686/pngquant +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e647539ac9dd00c0e07533541b60b17e6b68626deb480275fe696be9329e059b
|
4
|
+
data.tar.gz: 31e8e29d9e60a88f94e2a562d268a5462c01d07673e7b62450a4d5aa50d61df5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5667c791275bb6f8d0d25caa56627600d0b507bcd5aa2bf0b0e80255b89179d01b2bb4c538b0d22add4a74cda77658369664c924088cd27f5e0141a567d73c69
|
7
|
+
data.tar.gz: d3a9e3af829fb6de1726bbee48c8aee3e9ac058039501af1efff3cb82f95d19cc9ecccf9fe5b5ec990571ce378751c38d1176d28bc3996beeabbe36f8b97544d
|
data/CHANGELOG.markdown
CHANGED
@@ -2,6 +2,15 @@
|
|
2
2
|
|
3
3
|
## unreleased
|
4
4
|
|
5
|
+
## v0.10.0.20231014 (2023-10-14)
|
6
|
+
|
7
|
+
* libmozjpeg 4.1.5 [@toy](https://github.com/toy)
|
8
|
+
|
9
|
+
## v0.10.0 (2023-10-11)
|
10
|
+
|
11
|
+
* advancecomp 2.6 and oxipng 9.0.0 [@toy](https://github.com/toy)
|
12
|
+
* Remove 32 bit (i686) linux binaries/platform [@toy](https://github.com/toy)
|
13
|
+
|
5
14
|
## v0.9.1.20230828 (2023-08-28)
|
6
15
|
|
7
16
|
* libmozjpeg 4.1.4 [@toy](https://github.com/toy)
|
data/Makefile
CHANGED
@@ -2,18 +2,18 @@ all :
|
|
2
2
|
|
3
3
|
# ====== VERSIONS ======
|
4
4
|
|
5
|
-
ADVANCECOMP_VER := 2.
|
5
|
+
ADVANCECOMP_VER := 2.6
|
6
6
|
GIFSICLE_VER := 1.94
|
7
7
|
JHEAD_VER := 3.04
|
8
8
|
JPEGARCHIVE_VER := 2.2.0
|
9
9
|
JPEGOPTIM_VER := 1.5.5
|
10
10
|
LIBJPEG_VER := 9e
|
11
11
|
LIBLCMS_VER := 2.15
|
12
|
-
LIBMOZJPEG_VER := 4.1.
|
12
|
+
LIBMOZJPEG_VER := 4.1.5
|
13
13
|
LIBPNG_VER := 1.6.40
|
14
14
|
LIBZ_VER := 1.2.11
|
15
15
|
OPTIPNG_VER := 0.7.7
|
16
|
-
OXIPNG_VER :=
|
16
|
+
OXIPNG_VER := 9.0.0
|
17
17
|
PNGCRUSH_VER := 1.8.13
|
18
18
|
PNGOUT_VER := 20200115
|
19
19
|
PNGOUT_LINUX_VER := $(PNGOUT_VER)
|
@@ -244,8 +244,6 @@ endef
|
|
244
244
|
|
245
245
|
ifdef IS_DARWIN
|
246
246
|
test : ARCH_STRING := $(ARCH)
|
247
|
-
else ifeq (i386,$(ARCH:i686=i386))
|
248
|
-
test : ARCH_STRING := 80386
|
249
247
|
else ifeq (amd64,$(ARCH:x86_64=amd64))
|
250
248
|
test : ARCH_STRING := x86-64
|
251
249
|
endif
|
@@ -491,7 +489,7 @@ $(OPTIPNG_TARGET) :
|
|
491
489
|
|
492
490
|
## oxipng
|
493
491
|
$(OXIPNG_TARGET) :
|
494
|
-
cd $(DIR) && cargo build --release --
|
492
|
+
cd $(DIR) && cargo build --release --locked
|
495
493
|
|
496
494
|
## pngcrush
|
497
495
|
$(eval $(call depend,PNGCRUSH,LIBPNG LIBZ))
|
data/README.markdown
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
|
12
12
|
Precompiled binaries for [`image_optim`](https://github.com/toy/image_optim).
|
13
13
|
|
14
|
-
Contains binaries for Mac OS X (>= 10.9, x86\_64) and Linux (
|
14
|
+
Contains binaries for Mac OS X (>= 10.9, x86\_64) and Linux (x86\_64).
|
15
15
|
|
16
16
|
A test application with latest `image_optim` and `image_optim_pack` is available on render: https://iopack.onrender.com/.
|
17
17
|
|
data/Vagrantfile
CHANGED
data/checksums.mk
CHANGED
@@ -1,15 +1,15 @@
|
|
1
|
-
ADVANCECOMP_SHA256 :=
|
1
|
+
ADVANCECOMP_SHA256 := b07d77735540409771cbe1b6df165b5151c11bb9c3d8f01290be0ec88ec3498f
|
2
2
|
GIFSICLE_SHA256 := 4bc97005c0789620de75f89997d3c2f70758c72c61aa0a2ef04f7a671a2ff89b
|
3
3
|
JHEAD_SHA256 := ef89bbcf4f6c25ed88088cf242a47a6aedfff4f08cc7dc205bf3e2c0f10a03c9
|
4
4
|
JPEGARCHIVE_SHA256 := 3da16a5abbddd925dee0379aa51d9fe0cba33da0b5703be27c13a2dda3d7ed75
|
5
5
|
JPEGOPTIM_SHA256 := 90a309d1c092de358bb411d702281ac3039b489d03adb0bc3c4ef04cf0067d38
|
6
6
|
LIBJPEG_SHA256 := 4077d6a6a75aeb01884f708919d25934c93305e49f7e3f36db9129320e6f4f3d
|
7
7
|
LIBLCMS_SHA256 := b20cbcbd0f503433be2a4e81462106fa61050a35074dc24a4e356792d971ab39
|
8
|
-
LIBMOZJPEG_SHA256 :=
|
8
|
+
LIBMOZJPEG_SHA256 := 9fcbb7171f6ac383f5b391175d6fb3acde5e64c4c4727274eade84ed0998fcc1
|
9
9
|
LIBPNG_SHA256 := 8f720b363aa08683c9bf2a563236f45313af2c55d542b5481ae17dd8d183bb42
|
10
10
|
LIBZ_SHA256 := c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1
|
11
11
|
OPTIPNG_SHA256 := 4f32f233cef870b3f95d3ad6428bfe4224ef34908f1b42b0badf858216654452
|
12
|
-
OXIPNG_SHA256 :=
|
12
|
+
OXIPNG_SHA256 := 534fa8f349f52b01c2ee4332cef25ce1311edca04209ac6d972e38b171550a1b
|
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.
|
5
|
+
s.version = '0.10.0.20231014'
|
6
6
|
s.summary = %q{Precompiled binaries for image_optim: advpng, gifsicle, jhead, jpeg-recompress, jpegoptim, jpegtran, optipng, pngcrush, pngquant}
|
7
7
|
s.homepage = "https://github.com/toy/#{s.name}"
|
8
8
|
s.authors = ['Ivan Kuchin']
|
@@ -22,7 +22,6 @@ Gem::Specification.new do |s|
|
|
22
22
|
s.platform = Gem::Platform.new([gem_cpu, gem_os])
|
23
23
|
|
24
24
|
cpu_aliases = {
|
25
|
-
'x86' => %w[i386 i686],
|
26
25
|
'x86_64' => %w[x86_64 amd64],
|
27
26
|
}[gem_cpu] || [gem_cpu]
|
28
27
|
|
data/script/platform_downloads
CHANGED
@@ -5,26 +5,7 @@ require 'gems'
|
|
5
5
|
require 'ostruct'
|
6
6
|
require 'terminal-table'
|
7
7
|
|
8
|
-
|
9
|
-
authors
|
10
|
-
built_at
|
11
|
-
created_at
|
12
|
-
description
|
13
|
-
downloads_count
|
14
|
-
metadata
|
15
|
-
number
|
16
|
-
summary
|
17
|
-
platform
|
18
|
-
rubygems_version
|
19
|
-
ruby_version
|
20
|
-
prerelease
|
21
|
-
licenses
|
22
|
-
requirements
|
23
|
-
sha
|
24
|
-
].freeze
|
25
|
-
Version = Struct.new(*ATTRIBUTES, :keyword_init => true)
|
26
|
-
|
27
|
-
versions = Gems.versions('image_optim_pack').map(&Version.method(:new))
|
8
|
+
versions = Gems.versions('image_optim_pack').map(&OpenStruct.method(:new)) # rubocop:disable Style/OpenStructUse
|
28
9
|
|
29
10
|
platforms = versions.map(&:platform).uniq.sort_by do |platform|
|
30
11
|
platform.sub('amd64', 'x86_64').split('-').reverse
|
data/vendor/darwin-x86_64/advpng
CHANGED
Binary file
|
Binary file
|
data/vendor/darwin-x86_64/oxipng
CHANGED
Binary file
|
data/vendor/linux-x86_64/advpng
CHANGED
Binary file
|
Binary file
|
data/vendor/linux-x86_64/oxipng
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: image_optim_pack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0.20231014
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Kuchin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-10-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: image_optim
|
@@ -148,7 +148,6 @@ files:
|
|
148
148
|
- boxes/definitions/centos-postinstall.sh
|
149
149
|
- checksums.mk
|
150
150
|
- image_optim_pack-darwin-x86_64.gemspec
|
151
|
-
- image_optim_pack-linux-x86.gemspec
|
152
151
|
- image_optim_pack-linux-x86_64.gemspec
|
153
152
|
- image_optim_pack.gemspec
|
154
153
|
- lib/image_optim/pack.rb
|
@@ -175,21 +174,6 @@ files:
|
|
175
174
|
- vendor/darwin-x86_64/pngcrush
|
176
175
|
- vendor/darwin-x86_64/pngout
|
177
176
|
- vendor/darwin-x86_64/pngquant
|
178
|
-
- vendor/linux-i686/advpng
|
179
|
-
- vendor/linux-i686/gifsicle
|
180
|
-
- vendor/linux-i686/jhead
|
181
|
-
- vendor/linux-i686/jpeg-recompress
|
182
|
-
- vendor/linux-i686/jpegoptim
|
183
|
-
- vendor/linux-i686/jpegtran
|
184
|
-
- vendor/linux-i686/libjpeg.so
|
185
|
-
- vendor/linux-i686/liblcms2.so
|
186
|
-
- vendor/linux-i686/libpng.so
|
187
|
-
- vendor/linux-i686/libz.so
|
188
|
-
- vendor/linux-i686/optipng
|
189
|
-
- vendor/linux-i686/oxipng
|
190
|
-
- vendor/linux-i686/pngcrush
|
191
|
-
- vendor/linux-i686/pngout
|
192
|
-
- vendor/linux-i686/pngquant
|
193
177
|
- vendor/linux-x86_64/advpng
|
194
178
|
- vendor/linux-x86_64/gifsicle
|
195
179
|
- vendor/linux-x86_64/jhead
|
@@ -211,7 +195,7 @@ licenses:
|
|
211
195
|
metadata:
|
212
196
|
bug_tracker_uri: https://github.com/toy/image_optim_pack/issues
|
213
197
|
changelog_uri: https://github.com/toy/image_optim_pack/blob/master/CHANGELOG.markdown
|
214
|
-
documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.
|
198
|
+
documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.10.0.20231014
|
215
199
|
source_code_uri: https://github.com/toy/image_optim_pack
|
216
200
|
post_install_message:
|
217
201
|
rdoc_options: []
|
@@ -228,7 +212,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
228
212
|
- !ruby/object:Gem::Version
|
229
213
|
version: '0'
|
230
214
|
requirements: []
|
231
|
-
rubygems_version: 3.4.
|
215
|
+
rubygems_version: 3.4.20
|
232
216
|
signing_key:
|
233
217
|
specification_version: 4
|
234
218
|
summary: 'Precompiled binaries for image_optim: advpng, gifsicle, jhead, jpeg-recompress,
|
data/vendor/linux-i686/advpng
DELETED
Binary file
|
data/vendor/linux-i686/gifsicle
DELETED
Binary file
|
data/vendor/linux-i686/jhead
DELETED
Binary file
|
Binary file
|
data/vendor/linux-i686/jpegoptim
DELETED
Binary file
|
data/vendor/linux-i686/jpegtran
DELETED
Binary file
|
Binary file
|
Binary file
|
data/vendor/linux-i686/libpng.so
DELETED
Binary file
|
data/vendor/linux-i686/libz.so
DELETED
Binary file
|
data/vendor/linux-i686/optipng
DELETED
Binary file
|
data/vendor/linux-i686/oxipng
DELETED
Binary file
|
data/vendor/linux-i686/pngcrush
DELETED
Binary file
|
data/vendor/linux-i686/pngout
DELETED
Binary file
|
data/vendor/linux-i686/pngquant
DELETED
Binary file
|