image_optim_pack 0.6.0-x86-darwin → 0.6.0.20191208-x86-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4cee5a647f9cafa03fb8e268a5cfffcf566cb44d88e842c27bd6f6248a68e6bd
4
- data.tar.gz: 465ff16403a2ed7c311eef18df1a1cf052d97728b0e1ea8e1d6687b2c8c254ad
3
+ metadata.gz: dfe3b406090072f1b5f1a75b245d29491cd292425332c2b58f659decdd2eb5b7
4
+ data.tar.gz: 1d776ab092a337ca92912009a4baa03303e82c7e14792b3a3b69a61063d7aebc
5
5
  SHA512:
6
- metadata.gz: ef3ac332a44c6fa6ff89101c8898253e80dc0a51914326d404f6c83523fb6e9837cd844a4522b068a0885291568d4fe8c006f3a922d3e9561eef96877eb0695e
7
- data.tar.gz: 223e6ae472cd2479e61645d9b576f56c5004fe8b7e3a854cb6f7281d4da40e83f24c33dc3aece85894cd55f2e856a45dc8f51bc5b42ceb9e30c59d1baed60007
6
+ metadata.gz: ac5d914f33f5e8d3f288590d57f88c35e9cad6aca8d75071ca366d027b8eb258bf3c0b317ad2b838252f40fc291dbdb8a3b84c0499273a9b079f8a6722c5a75a
7
+ data.tar.gz: dd48c3cade7b2214cb12190dfb87fe9600e89466bc32a4bcab393099601301f90758d8f4305752b225ae62506511abfcad33b47dab948cef50af80563ac2a05b
data/.rubocop.yml CHANGED
@@ -14,7 +14,7 @@ Layout/AccessModifierIndentation:
14
14
  Layout/DotPosition:
15
15
  EnforcedStyle: trailing
16
16
 
17
- Layout/IndentFirstHashElement:
17
+ Layout/FirstHashElementIndentation:
18
18
  EnforcedStyle: consistent
19
19
 
20
20
  Layout/RescueEnsureAlignment:
data/.travis.yml CHANGED
@@ -2,16 +2,17 @@ sudo: false
2
2
  dist: trusty
3
3
  language: ruby
4
4
  rvm:
5
- - '1.8.7-p371'
5
+ - '1.8.7-p374'
6
6
  - '1.9.3-p551'
7
7
  - '2.0.0-p648'
8
8
  - '2.1.10'
9
9
  - '2.2.10'
10
10
  - '2.3.8'
11
- - '2.4.6'
12
- - '2.5.5'
13
- - '2.6.3'
14
- - 'jruby-9.1.9.0'
11
+ - '2.4.9'
12
+ - '2.5.7'
13
+ - '2.6.5'
14
+ - 'jruby-9.1.17.0'
15
+ - 'jruby-9.2.7.0'
15
16
  script:
16
17
  - make test
17
18
  - bundle exec image_optim --info
@@ -26,16 +27,13 @@ matrix:
26
27
  include:
27
28
  - os: osx
28
29
  rvm: default
29
- osx_image: xcode8.3
30
- - os: osx
31
- rvm: default
32
- osx_image: xcode9.4
30
+ osx_image: xcode10.1
33
31
  - os: osx
34
32
  rvm: default
35
- osx_image: xcode10.1
33
+ osx_image: xcode11.2
36
34
  - env: RUBOCOP=✓
37
- rvm: '2.6.3'
35
+ rvm: '2.6.5'
38
36
  script: bundle exec rubocop
39
37
  - env: CHECK_RUBIES=✓
40
- rvm: '2.6.3'
38
+ rvm: '2.6.5'
41
39
  script: bundle exec travis_check_rubies
data/CHANGELOG.markdown CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## unreleased
4
4
 
5
+ ## v0.6.0.20191208 (2019-12-08)
6
+
7
+ * jhead 3.04 [@toy](https://github.com/toy)
8
+ * Update jhead source and use https where possible [@toy](https://github.com/toy)
9
+
5
10
  ## v0.6.0 (2019-08-15)
6
11
 
7
12
  * Remove FreeBSD and OpenBSD binaries/platforms [#16](https://github.com/toy/image_optim_pack/issues/16) [@toy](https://github.com/toy)
data/Makefile CHANGED
@@ -4,7 +4,7 @@ all :
4
4
 
5
5
  ADVANCECOMP_VER := 2.1
6
6
  GIFSICLE_VER := 1.92
7
- JHEAD_VER := 3.03
7
+ JHEAD_VER := 3.04
8
8
  JPEGARCHIVE_VER := 2.1.1
9
9
  JPEGOPTIM_VER := 1.4.6
10
10
  LIBJPEG_VER := 9c
@@ -83,17 +83,17 @@ $$($1_TGZ) :
83
83
  endef
84
84
 
85
85
  $(eval $(call archive-dl,ADVANCECOMP, https://github.com/amadvance/advancecomp/releases/download/v[VER]/advancecomp-[VER].tar.gz))
86
- $(eval $(call archive-dl,GIFSICLE, http://www.lcdf.org/gifsicle/gifsicle-[VER].tar.gz))
87
- $(eval $(call archive-dl,JHEAD, http://www.sentex.net/~mwandel/jhead/jhead-[VER].tar.gz))
86
+ $(eval $(call archive-dl,GIFSICLE, https://www.lcdf.org/gifsicle/gifsicle-[VER].tar.gz))
87
+ $(eval $(call archive-dl,JHEAD, https://www.sentex.ca/~mwandel/jhead/jhead-[VER].tar.gz))
88
88
  $(eval $(call archive-dl,JPEGARCHIVE, https://github.com/danielgtaylor/jpeg-archive/archive/[VER].tar.gz))
89
- $(eval $(call archive-dl,JPEGOPTIM, http://www.kokkonen.net/tjko/src/jpegoptim-[VER].tar.gz))
90
- $(eval $(call archive-dl,LIBJPEG, http://www.ijg.org/files/jpegsrc.v[VER].tar.gz))
89
+ $(eval $(call archive-dl,JPEGOPTIM, https://www.kokkonen.net/tjko/src/jpegoptim-[VER].tar.gz))
90
+ $(eval $(call archive-dl,LIBJPEG, https://www.ijg.org/files/jpegsrc.v[VER].tar.gz))
91
91
  $(eval $(call archive-dl,LIBMOZJPEG, https://github.com/mozilla/mozjpeg/archive/v[VER].tar.gz))
92
- $(eval $(call archive-dl,LIBPNG, http://prdownloads.sourceforge.net/libpng/libpng-[VER].tar.gz?download))
93
- $(eval $(call archive-dl,LIBZ, http://prdownloads.sourceforge.net/libpng/zlib-[VER].tar.gz?download))
94
- $(eval $(call archive-dl,OPTIPNG, http://prdownloads.sourceforge.net/optipng/optipng-[VER].tar.gz?download))
95
- $(eval $(call archive-dl,PNGCRUSH, http://prdownloads.sourceforge.net/pmt/pngcrush-[VER]-nolib.tar.gz?download))
96
- $(eval $(call archive-dl,PNGQUANT, http://pngquant.org/pngquant-[VER]-src.tar.gz))
92
+ $(eval $(call archive-dl,LIBPNG, https://prdownloads.sourceforge.net/libpng/libpng-[VER].tar.gz?download))
93
+ $(eval $(call archive-dl,LIBZ, https://prdownloads.sourceforge.net/libpng/zlib-[VER].tar.gz?download))
94
+ $(eval $(call archive-dl,OPTIPNG, https://prdownloads.sourceforge.net/optipng/optipng-[VER].tar.gz?download))
95
+ $(eval $(call archive-dl,PNGCRUSH, https://prdownloads.sourceforge.net/pmt/pngcrush-[VER]-nolib.tar.gz?download))
96
+ $(eval $(call archive-dl,PNGQUANT, https://pngquant.org/pngquant-[VER]-src.tar.gz))
97
97
 
98
98
  download : $(foreach archive,$(ARCHIVES),$($(archive)_TGZ))
99
99
  .PHONY : download
data/README.markdown CHANGED
@@ -14,30 +14,30 @@ A test application with latest `image_optim` and `image_optim_pack` is available
14
14
 
15
15
  ## Binaries and libraries
16
16
 
17
- * [advpng](http://www.advancemame.it/doc-advpng.html) by Andrea Mazzoleni and Filipe Estima ([GNU GPLv3](acknowledgements/advancecomp.txt))
18
- * contains parts of [7z](http://7-zip.org) by Igor Pavlov with modifications by Andrea Mazzoleni ([license](acknowledgements/7z.txt))
17
+ * [advpng](https://www.advancemame.it/doc-advpng.html) by Andrea Mazzoleni and Filipe Estima ([GNU GPLv3](acknowledgements/advancecomp.txt))
18
+ * contains parts of [7z](https://7-zip.org) by Igor Pavlov with modifications by Andrea Mazzoleni ([license](acknowledgements/7z.txt))
19
19
  * and [zopfli](https://code.google.com/p/zopfli/) by Lode Vandevenne and Jyrki Alakuijala ([license](acknowledgements/zopfli.txt), [contributors](acknowledgements/zopfli-contributors.txt))
20
- * [gifsicle](http://lcdf.org/gifsicle/) by Eddie Kohler ([GNU GPLv2](acknowledgements/gifsicle.txt))
21
- * [jhead](http://sentex.net/~mwandel/jhead/) by Matthias Wandel ([public domain](acknowledgements/jhead.txt))
20
+ * [gifsicle](https://lcdf.org/gifsicle/) by Eddie Kohler ([GNU GPLv2](acknowledgements/gifsicle.txt))
21
+ * [jhead](https://www.sentex.ca/~mwandel/jhead/) by Matthias Wandel ([public domain](acknowledgements/jhead.txt))
22
22
  * [jpeg-recompress](https://github.com/danielgtaylor/jpeg-archive) by Daniel G. Taylor ([license](acknowledgements/jpeg-archive.txt))
23
23
  * includes [Image Quality Assessment (IQA)](http://tdistler.com/iqa/) by Tom Distler ([license](acknowledgements/iqa.txt))
24
24
  * includes [SmallFry](https://github.com/dwbuiten/smallfry) by Derek Buitenhuis ([license](acknowledgements/smallfry.txt))
25
25
  * statically linked against mozjpeg, see below
26
- * [jpegoptim](http://www.kokkonen.net/tjko/projects.html) by Timo Kokkonen ([GNU GPLv2](acknowledgements/jpegoptim.txt) or later)
27
- * [libjpeg and jpegtran](http://ijg.org/) by the Independent JPEG Group ([license](acknowledgements/libjpeg.txt))
28
- * [libjpeg-turbo](http://www.libjpeg-turbo.org/) by libjpeg-turbo Project ([license](acknowledgements/libjpeg-turbo.txt))
26
+ * [jpegoptim](https://www.kokkonen.net/tjko/projects.html) by Timo Kokkonen ([GNU GPLv2](acknowledgements/jpegoptim.txt) or later)
27
+ * [libjpeg and jpegtran](https://ijg.org/) by the Independent JPEG Group ([license](acknowledgements/libjpeg.txt))
28
+ * [libjpeg-turbo](https://www.libjpeg-turbo.org/) by libjpeg-turbo Project ([license](acknowledgements/libjpeg-turbo.txt))
29
29
  * based on libjpeg, see above
30
- * includes [x86 SIMD extension for IJG JPEG library](http://cetus.sakura.ne.jp/softlab/jpeg-x86simd/jpegsimd.html) by Miyasaka Masaru ([license](acknowledgements/libjpeg-x86-simd.txt))
30
+ * includes [x86 SIMD extension for IJG JPEG library](https://cetus.sakura.ne.jp/softlab/jpeg-x86simd/jpegsimd.html) by Miyasaka Masaru ([license](acknowledgements/libjpeg-x86-simd.txt))
31
31
  * [libpng](http://libpng.org/pub/png/) by Guy Eric Schalnat, Andreas Dilger, Glenn Randers-Pehrson and others ([license](acknowledgements/libpng.txt))
32
32
  * [mozjpeg](https://github.com/mozilla/mozjpeg) by Mozilla Research ([license](acknowledgements/mozjpeg.txt))
33
33
  * base on libjpeg and libjpeg-turbo, see above
34
34
  * [optipng](http://optipng.sourceforge.net/) by Cosmin Truta ([license](acknowledgements/optipng.txt), [authors](acknowledgements/optipng-authors.txt))
35
35
  * contains code based in part on the work of Miyasaka Masaru for BMP support ([license](acknowledgements/bmp2png.txt))
36
36
  * and David Koblas for GIF support ([license](acknowledgements/gifread.txt))
37
- * [pngcrush](http://pmt.sourceforge.net/pngcrush/) by Glenn Randers-Pehrson, portions by Greg Roelofs ([license](acknowledgements/pngcrush.txt))
37
+ * [pngcrush](https://pmt.sourceforge.io/pngcrush/) by Glenn Randers-Pehrson, portions by Greg Roelofs ([license](acknowledgements/pngcrush.txt))
38
38
  * contains [cexcept](http://www.nicemice.net/cexcept/) interface by Adam M. Costello and Cosmin Truta ([license](acknowledgements/cexcept.txt))
39
- * [pngquant](http://pngquant.org/) by Kornel Lesiński based on code by Greg Roelofs and Jef Poskanzer after an idea by Stefan Schneider ([license](acknowledgements/pngquant.txt))
40
- * [zlib](http://zlib.net/) by Jean-Loup Gailly and Mark Adler ([license](acknowledgements/zlib.txt))
39
+ * [pngquant](https://pngquant.org/) by Kornel Lesiński based on code by Greg Roelofs and Jef Poskanzer after an idea by Stefan Schneider ([license](acknowledgements/pngquant.txt))
40
+ * [zlib](https://zlib.net/) by Jean-Loup Gailly and Mark Adler ([license](acknowledgements/zlib.txt))
41
41
 
42
42
  **NOTE: On FreeBSD and OpenBSD `make` is not the GNU Make, so `gmake` should be used instead.**
43
43
 
data/boxes/.rubocop.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  inherit_from: ../.rubocop.yml
2
2
 
3
- Lint/UnneededSplatExpansion:
3
+ Lint/RedundantSplatExpansion:
4
4
  Enabled: false
5
5
 
6
6
  Metrics/LineLength:
data/checksums.mk CHANGED
@@ -1,6 +1,6 @@
1
1
  ADVANCECOMP_SHA256 := 3ac0875e86a8517011976f04107186d5c60d434954078bc502ee731480933eb8
2
2
  GIFSICLE_SHA256 := 5ab556c01d65fddf980749e3ccf50b7fd40de738b6df679999294cc5fabfce65
3
- JHEAD_SHA256 := 82194e0128d9141038f82fadcb5845391ca3021d61bc00815078601619f6c0c2
3
+ JHEAD_SHA256 := ef89bbcf4f6c25ed88088cf242a47a6aedfff4f08cc7dc205bf3e2c0f10a03c9
4
4
  JPEGARCHIVE_SHA256 := 494534f5308f99743f11f3a7c151a8d5ca8a5f1f8b61ea119098511d401bc618
5
5
  JPEGOPTIM_SHA256 := 88b1eb64c2a33a2f013f068df8b0331f42c019267401ae3fa28e3277403a5ab7
6
6
  LIBJPEG_SHA256 := 650250979303a649e21f87b5ccd02672af1ea6954b911342ea491f351ceb7122
@@ -2,9 +2,9 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'image_optim_pack'
5
- s.version = '0.6.0'
5
+ s.version = '0.6.0.20191208'
6
6
  s.summary = %q{Precompiled binaries for image_optim: advpng, gifsicle, jhead, jpeg-recompress, jpegoptim, jpegtran, optipng, pngcrush, pngquant}
7
- s.homepage = "http://github.com/toy/#{s.name}"
7
+ s.homepage = "https://github.com/toy/#{s.name}"
8
8
  s.authors = ['Ivan Kuchin']
9
9
  s.license = 'MIT'
10
10
 
data/script/livecheck CHANGED
@@ -178,7 +178,7 @@ gifsicle:
178
178
  url: https://www.lcdf.org/gifsicle/
179
179
  regexp: gifsicle-(\d+(?:\.\d+)*)\.tar\.gz
180
180
  jhead:
181
- url: http://www.sentex.net/~mwandel/jhead/
181
+ url: https://www.sentex.ca/~mwandel/jhead/
182
182
  regexp: jhead-(\d+(?:\.\d+)*)
183
183
  jpegoptim:
184
184
  url: https://github.com/tjko/jpegoptim/releases.atom
@@ -187,7 +187,7 @@ jpegarchive:
187
187
  url: https://github.com/danielgtaylor/jpeg-archive/releases.atom
188
188
  regexp: <title>JPEG-Archive (\d+(?:\.\d+)*)</title>
189
189
  libjpeg:
190
- url: http://www.ijg.org/files/
190
+ url: https://www.ijg.org/files/
191
191
  regexp: jpegsrc.v(.*?).tar.gz
192
192
  libmozjpeg:
193
193
  url: https://github.com/mozilla/mozjpeg/releases.atom
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.6.0
4
+ version: 0.6.0.20191208
5
5
  platform: x86-darwin
6
6
  authors:
7
7
  - Ivan Kuchin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-15 00:00:00.000000000 Z
11
+ date: 2019-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: image_optim
@@ -145,13 +145,13 @@ files:
145
145
  - vendor/darwin-i386/optipng
146
146
  - vendor/darwin-i386/pngcrush
147
147
  - vendor/darwin-i386/pngquant
148
- homepage: http://github.com/toy/image_optim_pack
148
+ homepage: https://github.com/toy/image_optim_pack
149
149
  licenses:
150
150
  - MIT
151
151
  metadata:
152
152
  bug_tracker_uri: https://github.com/toy/image_optim_pack/issues
153
153
  changelog_uri: https://github.com/toy/image_optim_pack/blob/master/CHANGELOG.markdown
154
- documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.6.0
154
+ documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.6.0.20191208
155
155
  source_code_uri: https://github.com/toy/image_optim_pack
156
156
  post_install_message:
157
157
  rdoc_options: []
@@ -168,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
168
168
  - !ruby/object:Gem::Version
169
169
  version: '0'
170
170
  requirements: []
171
- rubygems_version: 3.0.3
171
+ rubygems_version: 3.0.6
172
172
  signing_key:
173
173
  specification_version: 4
174
174
  summary: 'Precompiled binaries for image_optim: advpng, gifsicle, jhead, jpeg-recompress,