image_optim_pack 0.3.0.20161108 → 0.3.0.20161206
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 +8 -8
- data/Makefile +8 -2
- data/image_optim_pack.gemspec +1 -1
- data/vendor/darwin-i386/advpng +0 -0
- data/vendor/darwin-i386/pngquant +0 -0
- data/vendor/darwin-x86_64/advpng +0 -0
- data/vendor/darwin-x86_64/pngquant +0 -0
- data/vendor/freebsd-amd64/advpng +0 -0
- data/vendor/freebsd-amd64/pngquant +0 -0
- data/vendor/freebsd-i386/advpng +0 -0
- data/vendor/freebsd-i386/pngquant +0 -0
- data/vendor/linux-i686/advpng +0 -0
- data/vendor/linux-i686/pngquant +0 -0
- data/vendor/linux-x86_64/advpng +0 -0
- data/vendor/linux-x86_64/pngquant +0 -0
- data/vendor/openbsd-amd64/advpng +0 -0
- data/vendor/openbsd-amd64/pngquant +0 -0
- data/vendor/openbsd-i386/advpng +0 -0
- data/vendor/openbsd-i386/pngquant +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MmI3NWVkNjlhNzZlYTZhMjgwZGRkNDhjYWRhOGFhYjEyMjIxMWIyZg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NjFhMWNiNzdiN2MyYmYwMmM0NDFmODBhNmRjYzNlNWZiMTg2ZjI2OA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NDA1ZDQwYWJjMDc0YTlkMTA0YjU2MTI1ZWQwYzYzMDc3YmFjNTFjNWEyMzAw
|
10
|
+
M2E1ZGU3OWE1YWNkNTg2M2U1NTQ3OGI0NzFhYjMyZTI4N2EwY2NhNmM2OWI1
|
11
|
+
OGJiYzAyNWVjMTRmN2IyMzAyNTIyYWE3YTc5NjJmZGY5OTVjODk=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZWMyMjEyZTk1MTg3ZTgwY2ZhNDY5ZTQ0NjM1YmU2YTE0M2YxY2I4NDEwYzU4
|
14
|
+
ZmY0YmYyYjVjZWI5NDljYjIzMmYxODIxNGQ5ZWRmOTJmNzIyMDM1NDU4Zjc3
|
15
|
+
Yjg5YTJmYzYzZWQ4MTU4ZWM1MDkwODUwZDRjNjNkMDUwY2MzM2Q=
|
data/Makefile
CHANGED
@@ -2,7 +2,7 @@ run : all
|
|
2
2
|
|
3
3
|
# ====== VERSIONS ======
|
4
4
|
|
5
|
-
ADVANCECOMP_VER := 1.
|
5
|
+
ADVANCECOMP_VER := 1.23
|
6
6
|
GIFSICLE_VER := 1.88
|
7
7
|
JHEAD_VER := 3.00
|
8
8
|
JPEGARCHIVE_VER := 2.1.1
|
@@ -13,7 +13,7 @@ LIBPNG_VER := 1.6.26
|
|
13
13
|
LIBZ_VER := 1.2.8
|
14
14
|
OPTIPNG_VER := 0.7.6
|
15
15
|
PNGCRUSH_VER := 1.8.10
|
16
|
-
PNGQUANT_VER := 2.
|
16
|
+
PNGQUANT_VER := 2.8.1
|
17
17
|
|
18
18
|
# ====== CONSTANTS ======
|
19
19
|
|
@@ -87,6 +87,12 @@ $(eval $(call archive,OPTIPNG, http://prdownloads.sourceforge.net/optipng/op
|
|
87
87
|
$(eval $(call archive,PNGCRUSH, http://prdownloads.sourceforge.net/pmt/pngcrush-[VER]-nolib.tar.gz?download))
|
88
88
|
$(eval $(call archive,PNGQUANT, https://github.com/pornel/pngquant/archive/[VER].tar.gz))
|
89
89
|
|
90
|
+
PNGQUANT_GIT := $(DL_DIR)/pngquant.git
|
91
|
+
$(PNGQUANT_GIT) :; git clone --recursive https://github.com/pornel/pngquant.git $@
|
92
|
+
$(PNGQUANT_TGZ) : $(PNGQUANT_GIT)
|
93
|
+
cd $(PNGQUANT_GIT) && git checkout -q $(PNGQUANT_VER) && git submodule -q update
|
94
|
+
cd $(PNGQUANT_GIT) && tar --exclude=.git -czf $(PNGQUANT_TGZ) .
|
95
|
+
|
90
96
|
# ====== PRODUCTS ======
|
91
97
|
|
92
98
|
$(shell $(mkpath) $(OUTPUT_DIR)) # just create output dir
|
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.3.0.
|
5
|
+
s.version = '0.3.0.20161206'
|
6
6
|
s.summary = %q{Precompiled binaries for image_optim: advpng, gifsicle, jhead, jpeg-recompress, jpegoptim, jpegtran, optipng, pngcrush, pngquant}
|
7
7
|
s.homepage = "http://github.com/toy/#{s.name}"
|
8
8
|
s.authors = ['Ivan Kuchin']
|
data/vendor/darwin-i386/advpng
CHANGED
Binary file
|
data/vendor/darwin-i386/pngquant
CHANGED
Binary file
|
data/vendor/darwin-x86_64/advpng
CHANGED
Binary file
|
Binary file
|
data/vendor/freebsd-amd64/advpng
CHANGED
Binary file
|
Binary file
|
data/vendor/freebsd-i386/advpng
CHANGED
Binary file
|
Binary file
|
data/vendor/linux-i686/advpng
CHANGED
Binary file
|
data/vendor/linux-i686/pngquant
CHANGED
Binary file
|
data/vendor/linux-x86_64/advpng
CHANGED
Binary file
|
Binary file
|
data/vendor/openbsd-amd64/advpng
CHANGED
Binary file
|
Binary file
|
data/vendor/openbsd-i386/advpng
CHANGED
Binary file
|
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.3.0.
|
4
|
+
version: 0.3.0.20161206
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Kuchin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-12-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: image_optim
|