image_optim_pack 0.9.1.20221210-x86-linux → 0.9.1.20221226-x86-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: fa12c4d3f2f0d08ce6a5373a57e218191d46a1887a63e66bca7b778aa25aa736
4
- data.tar.gz: e41e197e5ca89113b726c4964c6352eddef1abe7a632350f99b0d5baf227accd
3
+ metadata.gz: a3f192754f1d318c3fb3ebbae09340e680fa0d8758c17470a0a8e2c8211ed9f8
4
+ data.tar.gz: cfb337691e7ba8e38872c9feef5e2dd5b322f8df104b70fc7a69cd54ac0fe55f
5
5
  SHA512:
6
- metadata.gz: 89c7df2840e7c64cd53e01f3b207e69ecd40457b0ab38f2ace9e9a60c14769a914837f4221a794d37388bc289f8dc315409364ff4092b096bf3ac2ae8ba78e27
7
- data.tar.gz: c3eff3feb1dcb9259a07c145f80eb98551ce9a2378f4a85cba9cd83bdf86a52e6c872b6cd58dfc58024459aad205d8167693448ce467925b6afe6bb9826f438c
6
+ metadata.gz: 04f40eb08288f1e860f098d3f9f56d10072a0dbf6e9cf7f0219352a9b6bf4c213f7200a6bb57e7184a12ab8f9d163530c752ebfec83c6657363e64ae96a2f036
7
+ data.tar.gz: 117346f784c9d057e446222408be838beda360ed7d92fc9d63f4368ae253227c3514ba8e16a9394365da769a1b0c27d9b3e1692f25728190db83d66e20bd9816
@@ -23,12 +23,12 @@ jobs:
23
23
  - '2.7'
24
24
  - '3.0'
25
25
  - '3.1'
26
- - jruby-9.2
26
+ - '3.2'
27
27
  - jruby-9.3
28
28
  - jruby-9.4
29
29
  fail-fast: false
30
30
  steps:
31
- - uses: actions/checkout@v2
31
+ - uses: actions/checkout@v3
32
32
  - uses: ruby/setup-ruby@v1
33
33
  with:
34
34
  ruby-version: "${{ matrix.ruby }}"
@@ -14,7 +14,7 @@ jobs:
14
14
  - DOCKER_FILE=Dockerfile.debian DOCKER_TAG_SUFFIX=-debian
15
15
  fail-fast: false
16
16
  steps:
17
- - uses: actions/checkout@v2
17
+ - uses: actions/checkout@v3
18
18
  - uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
19
19
  with:
20
20
  registry: ghcr.io
@@ -12,10 +12,10 @@ jobs:
12
12
  livecheck:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
- - uses: actions/checkout@v2
15
+ - uses: actions/checkout@v3
16
16
  - uses: ruby/setup-ruby@v1
17
17
  with:
18
- ruby-version: '3.1'
18
+ ruby-version: '3'
19
19
  bundler-cache: true
20
20
  - run: |
21
21
  bundle exec script/livecheck || if (( $? == 1 )); then
@@ -8,9 +8,9 @@ jobs:
8
8
  rubocop:
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
- - uses: actions/checkout@v2
11
+ - uses: actions/checkout@v3
12
12
  - uses: ruby/setup-ruby@v1
13
13
  with:
14
- ruby-version: '3.1'
14
+ ruby-version: '3'
15
15
  bundler-cache: true
16
16
  - run: bundle exec rubocop
data/CHANGELOG.markdown CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## unreleased
4
4
 
5
+ ## v0.9.1.20221226 (2022-12-26)
6
+
7
+ * oxipng 8.0.0 [@toy](https://github.com/toy)
8
+
5
9
  ## v0.9.1.20221210 (2022-12-10)
6
10
 
7
11
  * oxipng 7.0.0 [@toy](https://github.com/toy)
data/Makefile CHANGED
@@ -13,7 +13,7 @@ LIBMOZJPEG_VER := 4.1.1
13
13
  LIBPNG_VER := 1.6.39
14
14
  LIBZ_VER := 1.2.11
15
15
  OPTIPNG_VER := 0.7.7
16
- OXIPNG_VER := 7.0.0
16
+ OXIPNG_VER := 8.0.0
17
17
  PNGCRUSH_VER := 1.8.13
18
18
  PNGOUT_VER := 20200115
19
19
  PNGOUT_LINUX_VER := $(PNGOUT_VER)
@@ -491,7 +491,7 @@ $(OPTIPNG_TARGET) :
491
491
 
492
492
  ## oxipng
493
493
  $(OXIPNG_TARGET) :
494
- cd $(DIR) && cargo build --release
494
+ cd $(DIR) && cargo build --release --frozen
495
495
 
496
496
  ## pngcrush
497
497
  $(eval $(call depend,PNGCRUSH,LIBPNG LIBZ))
data/README.markdown CHANGED
@@ -1,8 +1,8 @@
1
1
  [![Gem Version](https://img.shields.io/gem/v/image_optim_pack?logo=rubygems)](https://rubygems.org/gems/image_optim_pack)
2
- [![Build Status](https://img.shields.io/github/workflow/status/toy/image_optim_pack/check/master?logo=github)](https://github.com/toy/image_optim_pack/actions/workflows/check.yml)
3
- [![Rubocop](https://img.shields.io/github/workflow/status/toy/image_optim_pack/rubocop/master?label=rubocop&logo=rubocop)](https://github.com/toy/image_optim_pack/actions/workflows/rubocop.yml)
4
- [![Docker build](https://img.shields.io/github/workflow/status/toy/image_optim_pack/docker-build?label=docker+build&logo=docker)](https://github.com/toy/image_optim_pack/actions/workflows/docker-build.yml)
5
- [![Livecheck](https://img.shields.io/github/workflow/status/toy/image_optim_pack/livecheck/master?label=livecheck&logo=github)](https://github.com/toy/image_optim_pack/actions/workflows/livecheck.yml)
2
+ [![Build Status](https://img.shields.io/github/actions/workflow/status/toy/image_optim_pack/check.yml?logo=github)](https://github.com/toy/image_optim_pack/actions/workflows/check.yml)
3
+ [![Rubocop](https://img.shields.io/github/actions/workflow/status/toy/image_optim_pack/rubocop.yml?label=rubocop&logo=rubocop)](https://github.com/toy/image_optim_pack/actions/workflows/rubocop.yml)
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
+ [![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
  [![Code Climate](https://img.shields.io/codeclimate/maintainability/toy/image_optim_pack?logo=codeclimate)](https://codeclimate.com/github/toy/image_optim_pack)
7
7
  [![Depfu](https://img.shields.io/depfu/toy/image_optim_pack)](https://depfu.com/github/toy/image_optim_pack)
8
8
  [![Inch CI](https://inch-ci.org/github/toy/image_optim_pack.svg?branch=master)](https://inch-ci.org/github/toy/image_optim_pack)
data/Vagrantfile CHANGED
@@ -29,6 +29,7 @@ Vagrant.configure('2') do |config|
29
29
 
30
30
  apt-get update
31
31
  apt-get -y install rsync ntpdate make wget gcc g++ chrpath perl pkg-config autoconf automake libtool nasm cmake cargo
32
+ apt-get -y remove unattended-upgrades
32
33
  else
33
34
  set -ex
34
35
 
data/checksums.mk CHANGED
@@ -9,7 +9,7 @@ LIBMOZJPEG_SHA256 := 66b1b8d6b55d263f35f27f55acaaa3234df2a401232de99b6d099e2bb0a
9
9
  LIBPNG_SHA256 := af4fb7f260f839919e5958e5ab01a275d4fe436d45442a36ee62f73e5beb75ba
10
10
  LIBZ_SHA256 := c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1
11
11
  OPTIPNG_SHA256 := 4f32f233cef870b3f95d3ad6428bfe4224ef34908f1b42b0badf858216654452
12
- OXIPNG_SHA256 := 2a669c9b966cb54f8247c0accc9d90502944359abdd4143d9162d64e0acbaf76
12
+ OXIPNG_SHA256 := ef96d6340e70900de0a38ace8f5f20878f6c256b18b0c59cd87f2b515437b87b
13
13
  PNGCRUSH_SHA256 := fed0aaf5c098aa8c7f78c75365cd18d7341417326ecbdba547876b7b4f3df4be
14
14
  PNGOUT_LINUX_SHA256 := ac38bba6f0de29033de866538c3afa64341319b695bbe388efbc5fd9e830e928
15
15
  PNGOUT_LINUX_STATIC_SHA256 := 7a78ea475d65a00981bf418e5dfa3b34e42d6460fb992340802873bb14b08597
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'image_optim_pack'
5
- s.version = '0.9.1.20221210'
5
+ s.version = '0.9.1.20221226'
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']
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.9.1.20221210
4
+ version: 0.9.1.20221226
5
5
  platform: x86-linux
6
6
  authors:
7
7
  - Ivan Kuchin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-10 00:00:00.000000000 Z
11
+ date: 2022-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: image_optim
@@ -181,7 +181,7 @@ licenses:
181
181
  metadata:
182
182
  bug_tracker_uri: https://github.com/toy/image_optim_pack/issues
183
183
  changelog_uri: https://github.com/toy/image_optim_pack/blob/master/CHANGELOG.markdown
184
- documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.9.1.20221210
184
+ documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.9.1.20221226
185
185
  source_code_uri: https://github.com/toy/image_optim_pack
186
186
  post_install_message:
187
187
  rdoc_options: []