image_compressor_pack 0.1.1.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +7 -0
  2. checksums.yaml.gz.sig +0 -0
  3. data/.gitignore +15 -0
  4. data/.travis.yml +16 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +21 -0
  7. data/Makefile +32 -0
  8. data/README.md +45 -0
  9. data/Rakefile +56 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +7 -0
  12. data/certs/ignisf.pem +32 -0
  13. data/ext/image_compressor_pack/extconf.rb +30 -0
  14. data/image_compressor_pack.gemspec +28 -0
  15. data/lib/image_compressor_pack/dynamically_linked_recipes.yml +84 -0
  16. data/lib/image_compressor_pack/recipes.rb +42 -0
  17. data/lib/image_compressor_pack/statically_linked_recipes.yml +93 -0
  18. data/lib/image_compressor_pack/version.rb +3 -0
  19. data/lib/image_compressor_pack.rb +24 -0
  20. data/ports/archives/advancecomp-1.20.tar.gz +0 -0
  21. data/ports/archives/gifsicle-1.88.tar.gz +0 -0
  22. data/ports/archives/jhead-3.00.tar.gz +0 -0
  23. data/ports/archives/jpegoptim-1.4.3.tar.gz +0 -0
  24. data/ports/archives/lcms2-2.7.tar.gz +0 -0
  25. data/ports/archives/libpng-1.6.21.tar.gz +0 -0
  26. data/ports/archives/mozjpeg-3.1-release-source.tar.gz +0 -0
  27. data/ports/archives/nasm-2.12.01.tar.gz +0 -0
  28. data/ports/archives/optipng-0.7.6.tar.gz +0 -0
  29. data/ports/archives/pngcrush-1.8.1.tar.gz +0 -0
  30. data/ports/archives/pngquant-2.7.1-src.tar.gz +0 -0
  31. data/ports/archives/zlib-1.2.8.tar.gz +0 -0
  32. data/ports/patches/jhead/0001-Add-a-configure-shim.patch +21 -0
  33. data/ports/patches/jhead/0002-Specify-a-default-DESTDIR.patch +30 -0
  34. data/ports/patches/jhead/0003-Make-the-configure-script-set-the-DESTDIR.patch +39 -0
  35. data/ports/patches/jhead/0004-Make-the-makefile-install-to-the-proper-location.patch +23 -0
  36. data/ports/patches/jhead/0005-Produce-a-static-binary.patch +25 -0
  37. data/ports/patches/jpegoptim/0001-Link-lm-after-ljpeg.patch +34 -0
  38. data/ports/patches/libpng/0001-Do-not-build-binary-utilities.patch +327 -0
  39. data/ports/patches/mozjpeg/0001-Build-static-binaries.patch +34 -0
  40. data/ports/patches/optipng/0001-Allow-passing-LDFLAGS-as-configure-arg.patch +35 -0
  41. data/ports/patches/pngcrush/0001-Add-an-install-task.patch +33 -0
  42. data/ports/patches/pngcrush/0002-Add-a-configure-script.patch +41 -0
  43. data/ports/patches/pngcrush/0003-Produce-a-static-binary.patch +25 -0
  44. data/ports/patches/pngquant/0001-Work-around-mini-portile-s-configure-invocation.patch +965 -0
  45. data/ports/patches/pngquant/0002-Add-default-LDFLAGS.patch +24 -0
  46. data/ports/patches/pngquant/0003-Disable-libpng-check.patch +77 -0
  47. data/ports/patches/pngquant/0004-Remove-libz-check.patch +37 -0
  48. data/ports/patches/pngquant/0005-Remove-lcms2-check.patch +47 -0
  49. data/ports/patches/pngquant/0006-Do-not-build-static-binary.patch +25 -0
  50. data.tar.gz.sig +0 -0
  51. metadata +168 -0
  52. metadata.gz.sig +0 -0
@@ -0,0 +1,24 @@
1
+ From 0a57a934ba38621c666df40abba6f83cb6e32026 Mon Sep 17 00:00:00 2001
2
+ From: Petko Bordjukov <bordjukov@gmail.com>
3
+ Date: Thu, 9 Jun 2016 02:54:43 +0300
4
+ Subject: [PATCH 2/6] Add default LDFLAGS
5
+
6
+ ---
7
+ configure.bash | 1 +
8
+ 1 file changed, 1 insertion(+)
9
+
10
+ diff --git a/configure.bash b/configure.bash
11
+ index 7308b9d..a1ec1de 100755
12
+ --- a/configure.bash
13
+ +++ b/configure.bash
14
+ @@ -15,6 +15,7 @@ else
15
+ COCOA_READER=0
16
+ LCMS2=auto
17
+ fi
18
+ +LDFLAGS="-lpng -static"
19
+ EXTRA_CFLAGS=
20
+ EXTRA_LDFLAGS=
21
+
22
+ --
23
+ 2.8.3
24
+
@@ -0,0 +1,77 @@
1
+ From dad6e24886adbf10959492caf90fbe85572adf6d Mon Sep 17 00:00:00 2001
2
+ From: Petko Bordjukov <bordjukov@gmail.com>
3
+ Date: Thu, 9 Jun 2016 03:05:23 +0300
4
+ Subject: [PATCH 3/6] Disable libpng check
5
+
6
+ ---
7
+ configure.bash | 52 ++--------------------------------------------------
8
+ 1 file changed, 2 insertions(+), 50 deletions(-)
9
+
10
+ diff --git a/configure.bash b/configure.bash
11
+ index a1ec1de..94598bf 100755
12
+ --- a/configure.bash
13
+ +++ b/configure.bash
14
+ @@ -347,58 +347,10 @@ fi
15
+
16
+ # libpng
17
+ # try if given flags are enough
18
+ -HAS_LIBPNG=0
19
+ -if echo "#include \"png.h\"
20
+ - int main(){
21
+ - return !png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
22
+ -}" | "$CC" -xc -std=c99 -o /dev/null $CFLAGS $LDFLAGS - &> /dev/null; then
23
+ - status "libpng" "custom flags"
24
+ - HAS_LIBPNG=1
25
+ -fi
26
+ +HAS_LIBPNG=1
27
+ +status "libpng" "custom flags"
28
+
29
+ if [ "$HAS_LIBPNG" -eq 0 ]; then
30
+ - # try static in the given directory
31
+ - PNGH=$(find_h "$LIBPNG_DIR" "png.h")
32
+ - if [ -n "$PNGH" ]; then
33
+ - PNGH_STRING=$(pngh_string "$PNGH")
34
+ - PNGH_MAJMIN=$(pngh_majmin "$PNGH")
35
+ - if [[ -n "$PNGH_STRING" && -n "$PNGH_MAJMIN" ]]; then
36
+ - LIBPNGA=$(find_f "$LIBPNG_DIR" "libpng${PNGH_MAJMIN}.a")
37
+ - if [ -n "$LIBPNGA" ]; then
38
+ - cflags "-I${PNGH%/*}"
39
+ - lflags "${LIBPNGA}"
40
+ - status "libpng" "static (${PNGH_STRING})"
41
+ - HAS_LIBPNG=1
42
+ - fi
43
+ - fi
44
+ - fi
45
+ -fi
46
+ -# try shared
47
+ -if [ "$HAS_LIBPNG" -eq 0 ]; then
48
+ - if find_pkgconfig libpng; then
49
+ - HAS_LIBPNG=1
50
+ - else
51
+ - for i in "${DIRS[@]}"; do
52
+ - DIR=($i)
53
+ - PNGH=$(find_h "${DIR[0]}" "png.h")
54
+ - if [ -n "$PNGH" ]; then
55
+ - PNGH_STRING=$(pngh_string "$PNGH")
56
+ - PNGH_MAJMIN=$(pngh_majmin "$PNGH")
57
+ - if [[ -n "$PNGH_STRING" && -n "$PNGH_MAJMIN" ]]; then
58
+ - LIBPNGSO=$(find_f "${DIR[1]}" "libpng${PNGH_MAJMIN}.$SOLIBSUFFIX*")
59
+ - if [ -n "$LIBPNGSO" ]; then
60
+ - cflags "-I${PNGH%/*}"
61
+ - lflags "-L${LIBPNGSO%/*} -lpng${PNGH_MAJMIN}"
62
+ - status "libpng" "shared (${PNGH_STRING})"
63
+ - HAS_LIBPNG=1
64
+ - break
65
+ - fi
66
+ - fi
67
+ - fi
68
+ - done
69
+ - fi
70
+ -fi
71
+ -if [ "$HAS_LIBPNG" -eq 0 ]; then
72
+ if [[ "$OSTYPE" =~ "darwin" ]]; then
73
+ LIBPNG_CMD='`brew install libpng`'
74
+ else
75
+ --
76
+ 2.8.3
77
+
@@ -0,0 +1,37 @@
1
+ From 0ebf0e9a703606e6a495bb42a43c34e90734b0dd Mon Sep 17 00:00:00 2001
2
+ From: Petko Bordjukov <bordjukov@gmail.com>
3
+ Date: Thu, 9 Jun 2016 03:07:27 +0300
4
+ Subject: [PATCH 4/6] Remove libz check
5
+
6
+ ---
7
+ configure.bash | 7 +------
8
+ 1 file changed, 1 insertion(+), 6 deletions(-)
9
+
10
+ diff --git a/configure.bash b/configure.bash
11
+ index 94598bf..0ada8a5 100755
12
+ --- a/configure.bash
13
+ +++ b/configure.bash
14
+ @@ -15,7 +15,7 @@ else
15
+ COCOA_READER=0
16
+ LCMS2=auto
17
+ fi
18
+ -LDFLAGS="-lpng -static"
19
+ +LDFLAGS="-lpng -lz -static"
20
+ EXTRA_CFLAGS=
21
+ EXTRA_LDFLAGS=
22
+
23
+ @@ -359,11 +359,6 @@ if [ "$HAS_LIBPNG" -eq 0 ]; then
24
+ error "libpng" "not found (try: $LIBPNG_CMD)"
25
+ fi
26
+
27
+ -# zlib
28
+ -if ! find_library "zlib" "z" "zlib.h" "libz.a" "libz.$SOLIBSUFFIX*"; then
29
+ - error "zlib" "not found (please install zlib-devel package)"
30
+ -fi
31
+ -
32
+ # lcms2
33
+ if [ "$LCMS2" != 0 ]; then
34
+ if find_library "lcms2" "lcms2" "lcms2.h" "liblcms2.a" "liblcms2.$SOLIBSUFFIX*"; then
35
+ --
36
+ 2.8.3
37
+
@@ -0,0 +1,47 @@
1
+ From 28212c119b915202ae3f53f77bd28b68ad481458 Mon Sep 17 00:00:00 2001
2
+ From: Petko Bordjukov <bordjukov@gmail.com>
3
+ Date: Thu, 9 Jun 2016 03:11:07 +0300
4
+ Subject: [PATCH 5/6] Remove lcms2 check
5
+
6
+ ---
7
+ configure.bash | 17 ++---------------
8
+ 1 file changed, 2 insertions(+), 15 deletions(-)
9
+
10
+ diff --git a/configure.bash b/configure.bash
11
+ index 0ada8a5..4b8c80e 100755
12
+ --- a/configure.bash
13
+ +++ b/configure.bash
14
+ @@ -15,7 +15,7 @@ else
15
+ COCOA_READER=0
16
+ LCMS2=auto
17
+ fi
18
+ -LDFLAGS="-lpng -lz -static"
19
+ +LDFLAGS="-lpng -lz -llcms2 -lpthread -static"
20
+ EXTRA_CFLAGS=
21
+ EXTRA_LDFLAGS=
22
+
23
+ @@ -359,20 +359,7 @@ if [ "$HAS_LIBPNG" -eq 0 ]; then
24
+ error "libpng" "not found (try: $LIBPNG_CMD)"
25
+ fi
26
+
27
+ -# lcms2
28
+ -if [ "$LCMS2" != 0 ]; then
29
+ - if find_library "lcms2" "lcms2" "lcms2.h" "liblcms2.a" "liblcms2.$SOLIBSUFFIX*"; then
30
+ - cflags "-DUSE_LCMS=1"
31
+ - else
32
+ - if [ "$LCMS2" = 'auto' ]; then
33
+ - status "lcms2" "no"
34
+ - else
35
+ - error "lcms2" "not found (please install libcms2-devel package)"
36
+ - fi
37
+ - fi
38
+ -else
39
+ - status "lcms2" "no"
40
+ -fi
41
+ +cflags "-DUSE_LCMS=1"
42
+
43
+ echo
44
+
45
+ --
46
+ 2.8.3
47
+
@@ -0,0 +1,25 @@
1
+ From f9bd64476161112ed1fb8d76e6069b23c0219ab8 Mon Sep 17 00:00:00 2001
2
+ From: Petko Bordjukov <bordjukov@gmail.com>
3
+ Date: Thu, 9 Jun 2016 04:45:34 +0300
4
+ Subject: [PATCH 6/6] Do not build static binary
5
+
6
+ ---
7
+ configure.bash | 2 +-
8
+ 1 file changed, 1 insertion(+), 1 deletion(-)
9
+
10
+ diff --git a/configure.bash b/configure.bash
11
+ index 4b8c80e..25c0e90 100755
12
+ --- a/configure.bash
13
+ +++ b/configure.bash
14
+ @@ -15,7 +15,7 @@ else
15
+ COCOA_READER=0
16
+ LCMS2=auto
17
+ fi
18
+ -LDFLAGS="-lpng -lz -llcms2 -lpthread -static"
19
+ +LDFLAGS="-lpng -lz -llcms2 -lpthread"
20
+ EXTRA_CFLAGS=
21
+ EXTRA_LDFLAGS=
22
+
23
+ --
24
+ 2.8.3
25
+
data.tar.gz.sig ADDED
Binary file
metadata ADDED
@@ -0,0 +1,168 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: image_compressor_pack
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1.rc2
5
+ platform: ruby
6
+ authors:
7
+ - Petko Bordjukov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ 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
42
+ bfdfE27aG1U=
43
+ -----END CERTIFICATE-----
44
+ date: 2016-06-09 00:00:00.000000000 Z
45
+ dependencies:
46
+ - !ruby/object:Gem::Dependency
47
+ name: mini_portile2
48
+ requirement: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - "~>"
51
+ - !ruby/object:Gem::Version
52
+ version: '2.0'
53
+ type: :runtime
54
+ prerelease: false
55
+ version_requirements: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '2.0'
60
+ - !ruby/object:Gem::Dependency
61
+ name: bundler
62
+ requirement: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - "~>"
65
+ - !ruby/object:Gem::Version
66
+ version: '1.10'
67
+ type: :development
68
+ prerelease: false
69
+ version_requirements: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - "~>"
72
+ - !ruby/object:Gem::Version
73
+ version: '1.10'
74
+ - !ruby/object:Gem::Dependency
75
+ name: rake
76
+ requirement: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - "~>"
79
+ - !ruby/object:Gem::Version
80
+ version: '10.0'
81
+ type: :development
82
+ prerelease: false
83
+ version_requirements: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - "~>"
86
+ - !ruby/object:Gem::Version
87
+ version: '10.0'
88
+ description: This gem packs a bunch of useful utilities for image optimization for
89
+ use with image_optim.
90
+ email:
91
+ - bordjukov@gmail.com
92
+ executables: []
93
+ extensions:
94
+ - ext/image_compressor_pack/extconf.rb
95
+ extra_rdoc_files: []
96
+ files:
97
+ - ".gitignore"
98
+ - ".travis.yml"
99
+ - Gemfile
100
+ - LICENSE.txt
101
+ - Makefile
102
+ - README.md
103
+ - Rakefile
104
+ - bin/console
105
+ - bin/setup
106
+ - certs/ignisf.pem
107
+ - ext/image_compressor_pack/extconf.rb
108
+ - image_compressor_pack.gemspec
109
+ - lib/image_compressor_pack.rb
110
+ - lib/image_compressor_pack/dynamically_linked_recipes.yml
111
+ - lib/image_compressor_pack/recipes.rb
112
+ - lib/image_compressor_pack/statically_linked_recipes.yml
113
+ - lib/image_compressor_pack/version.rb
114
+ - ports/archives/advancecomp-1.20.tar.gz
115
+ - ports/archives/gifsicle-1.88.tar.gz
116
+ - ports/archives/jhead-3.00.tar.gz
117
+ - ports/archives/jpegoptim-1.4.3.tar.gz
118
+ - ports/archives/lcms2-2.7.tar.gz
119
+ - ports/archives/libpng-1.6.21.tar.gz
120
+ - ports/archives/mozjpeg-3.1-release-source.tar.gz
121
+ - ports/archives/nasm-2.12.01.tar.gz
122
+ - ports/archives/optipng-0.7.6.tar.gz
123
+ - ports/archives/pngcrush-1.8.1.tar.gz
124
+ - ports/archives/pngquant-2.7.1-src.tar.gz
125
+ - ports/archives/zlib-1.2.8.tar.gz
126
+ - ports/patches/jhead/0001-Add-a-configure-shim.patch
127
+ - ports/patches/jhead/0002-Specify-a-default-DESTDIR.patch
128
+ - ports/patches/jhead/0003-Make-the-configure-script-set-the-DESTDIR.patch
129
+ - ports/patches/jhead/0004-Make-the-makefile-install-to-the-proper-location.patch
130
+ - ports/patches/jhead/0005-Produce-a-static-binary.patch
131
+ - ports/patches/jpegoptim/0001-Link-lm-after-ljpeg.patch
132
+ - ports/patches/libpng/0001-Do-not-build-binary-utilities.patch
133
+ - ports/patches/mozjpeg/0001-Build-static-binaries.patch
134
+ - ports/patches/optipng/0001-Allow-passing-LDFLAGS-as-configure-arg.patch
135
+ - ports/patches/pngcrush/0001-Add-an-install-task.patch
136
+ - ports/patches/pngcrush/0002-Add-a-configure-script.patch
137
+ - ports/patches/pngcrush/0003-Produce-a-static-binary.patch
138
+ - ports/patches/pngquant/0001-Work-around-mini-portile-s-configure-invocation.patch
139
+ - ports/patches/pngquant/0002-Add-default-LDFLAGS.patch
140
+ - ports/patches/pngquant/0003-Disable-libpng-check.patch
141
+ - ports/patches/pngquant/0004-Remove-libz-check.patch
142
+ - ports/patches/pngquant/0005-Remove-lcms2-check.patch
143
+ - ports/patches/pngquant/0006-Do-not-build-static-binary.patch
144
+ homepage: https://github.com/ignisf/image_compressor_pack
145
+ licenses:
146
+ - MIT
147
+ metadata: {}
148
+ post_install_message:
149
+ rdoc_options: []
150
+ require_paths:
151
+ - lib
152
+ required_ruby_version: !ruby/object:Gem::Requirement
153
+ requirements:
154
+ - - ">="
155
+ - !ruby/object:Gem::Version
156
+ version: '0'
157
+ required_rubygems_version: !ruby/object:Gem::Requirement
158
+ requirements:
159
+ - - ">"
160
+ - !ruby/object:Gem::Version
161
+ version: 1.3.1
162
+ requirements: []
163
+ rubyforge_project:
164
+ rubygems_version: 2.6.4
165
+ signing_key:
166
+ specification_version: 4
167
+ summary: A distribution of image optimization utilities.
168
+ test_files: []
metadata.gz.sig ADDED
Binary file