rake-compiler-dock 0.6.3 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +3 -2
- data/Dockerfile.jruby +61 -0
- data/{Dockerfile → Dockerfile.mri} +27 -38
- data/History.md +10 -0
- data/Rakefile +2 -1
- data/build/patches/{rake-compiler-1.0.4 → rake-compiler-1.0.6}/enable-static.diff +0 -0
- data/build/patches/{ruby-2.5.0 → ruby-2.5.3}/no_sendfile.patch +0 -0
- data/lib/rake_compiler_dock/docker_check.rb +10 -5
- data/lib/rake_compiler_dock/starter.rb +6 -4
- data/lib/rake_compiler_dock/version.rb +2 -2
- data/test/test_environment_variables.rb +2 -2
- metadata +26 -25
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4f1c79ba29d38c727c275cac167a4c8515677da374fedf15f5cadf6683cdd32
|
4
|
+
data.tar.gz: f38bd41996e31d3ab825f642ce5906187dd240d50e80c4245eb6896876ca15b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb4677877ad29fbc0c14a9d0455fe22016bd6af64081d170b3556f0c6f1e7ba14b7bc7144fc59f70c0ac0cde44200016150929aa3120bf963d817f7af5d223ff
|
7
|
+
data.tar.gz: c7cd83788dbdd56cec416c0736243fd6bc937420f22edd9183b1d365c5cd5e464022fd9b6ad341c15c479fdd371b237debaa1a65c6ec5d6c7d7546827650d4d3
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
�Rd�L%h���������cZ���L�ܬG��N��PQ���������0۸L��J6���$Z �J!`V�x�{���
|
2
|
+
�a���F����%�ƝZu�'��bX,��!r%bm*x����
|
3
|
+
߶�1Xl}�
|
data/Dockerfile.jruby
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
FROM ubuntu:18.04
|
2
|
+
|
3
|
+
RUN apt-get -y update && \
|
4
|
+
apt-get install -y curl git-core xz-utils wget unzip sudo gpg dirmngr openjdk-11-jdk-headless
|
5
|
+
|
6
|
+
# Add "rvm" as system group, to avoid conflicts with host GIDs typically starting with 1000
|
7
|
+
RUN groupadd -r rvm && useradd -r -g rvm -G sudo -p "" --create-home rvm && \
|
8
|
+
echo "source /etc/profile.d/rvm.sh" >> /etc/rubybashrc
|
9
|
+
USER rvm
|
10
|
+
|
11
|
+
# install rvm, RVM 1.26.0+ has signed releases, source rvm for usage outside of package scripts
|
12
|
+
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB && \
|
13
|
+
(curl -L http://get.rvm.io | sudo bash -s stable) && \
|
14
|
+
bash -c " \
|
15
|
+
source /etc/rubybashrc && \
|
16
|
+
rvmsudo rvm cleanup all "
|
17
|
+
|
18
|
+
# Import patch files for ruby and gems
|
19
|
+
COPY build/patches /home/rvm/patches/
|
20
|
+
ENV BASH_ENV /etc/rubybashrc
|
21
|
+
|
22
|
+
# install rubies and fix permissions on
|
23
|
+
RUN bash -c " \
|
24
|
+
export CFLAGS='-s -O3 -fno-fast-math -fPIC' && \
|
25
|
+
for v in jruby-9.2.5.0 ; do \
|
26
|
+
rvm install --binary \$v --patch \$(echo ~/patches/ruby-\$v/* | tr ' ' ','); \
|
27
|
+
done && \
|
28
|
+
rvm cleanup all && \
|
29
|
+
find /usr/local/rvm -type d -print0 | sudo xargs -0 chmod g+sw "
|
30
|
+
|
31
|
+
# Install rake-compiler and typical gems in all Rubies
|
32
|
+
# do not generate documentation for gems
|
33
|
+
RUN echo "gem: --no-ri --no-rdoc" >> ~/.gemrc && \
|
34
|
+
bash -c " \
|
35
|
+
rvm all do gem install --no-document bundler rake-compiler hoe rubygems-tasks && \
|
36
|
+
find /usr/local/rvm -type d -print0 | sudo xargs -0 chmod g+sw "
|
37
|
+
|
38
|
+
# Install rake-compiler's cross rubies in global dir instead of /root
|
39
|
+
RUN sudo mkdir -p /usr/local/rake-compiler && \
|
40
|
+
sudo chown rvm.rvm /usr/local/rake-compiler && \
|
41
|
+
ln -s /usr/local/rake-compiler ~/.rake-compiler
|
42
|
+
|
43
|
+
USER root
|
44
|
+
|
45
|
+
RUN bash -c "rvm alias create default jruby-9.2.5.0"
|
46
|
+
RUN echo "rvm use jruby-9.2.5.0 > /dev/null" >> /etc/rubybashrc
|
47
|
+
|
48
|
+
# Add rvm to the global bashrc
|
49
|
+
RUN echo "source /etc/profile.d/rvm.sh" >> /etc/bash.bashrc
|
50
|
+
|
51
|
+
# Install SIGINT forwarder
|
52
|
+
COPY build/sigfw.c /root/
|
53
|
+
RUN gcc $HOME/sigfw.c -o /usr/local/bin/sigfw
|
54
|
+
|
55
|
+
# Install user mapper
|
56
|
+
COPY build/runas /usr/local/bin/
|
57
|
+
|
58
|
+
# Install sudoers configuration
|
59
|
+
COPY build/sudoers /etc/sudoers.d/rake-compiler-dock
|
60
|
+
|
61
|
+
CMD bash
|
@@ -1,4 +1,4 @@
|
|
1
|
-
FROM ubuntu:
|
1
|
+
FROM ubuntu:18.04
|
2
2
|
|
3
3
|
RUN apt-get -y update && \
|
4
4
|
apt-get install -y curl git-core xz-utils build-essential wget unzip sudo gpg dirmngr
|
@@ -9,7 +9,7 @@ RUN groupadd -r rvm && useradd -r -g rvm -G sudo -p "" --create-home rvm && \
|
|
9
9
|
USER rvm
|
10
10
|
|
11
11
|
# install rvm, RVM 1.26.0+ has signed releases, source rvm for usage outside of package scripts
|
12
|
-
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys
|
12
|
+
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB && \
|
13
13
|
(curl -L http://get.rvm.io | sudo bash -s stable) && \
|
14
14
|
bash -c " \
|
15
15
|
source /etc/rubybashrc && \
|
@@ -22,7 +22,7 @@ ENV BASH_ENV /etc/rubybashrc
|
|
22
22
|
# install rubies and fix permissions on
|
23
23
|
RUN bash -c " \
|
24
24
|
export CFLAGS='-s -O3 -fno-fast-math -fPIC' && \
|
25
|
-
for v in 2.5.
|
25
|
+
for v in 2.5.3 ; do \
|
26
26
|
rvm install \$v --patch \$(echo ~/patches/ruby-\$v/* | tr ' ' ','); \
|
27
27
|
done && \
|
28
28
|
rvm cleanup all && \
|
@@ -45,45 +45,37 @@ USER root
|
|
45
45
|
RUN apt-get -y update && \
|
46
46
|
apt-get install -y gcc-mingw-w64-x86-64 gcc-mingw-w64-i686 g++-mingw-w64-x86-64 g++-mingw-w64-i686 \
|
47
47
|
gcc-multilib moreutils
|
48
|
-
USER rvm
|
49
48
|
|
50
49
|
# Create dev tools i686-linux-gnu-*
|
51
50
|
COPY build/mk_i686.rb /root/
|
52
|
-
RUN bash -c "
|
51
|
+
RUN bash -c " \
|
52
|
+
rvm alias create default 2.5.3 && \
|
53
|
+
rvm use default && \
|
54
|
+
ruby /root/mk_i686.rb "
|
55
|
+
|
56
|
+
USER rvm
|
53
57
|
|
54
58
|
# Patch rake-compiler to build and install static libraries for Linux rubies
|
55
|
-
RUN cd /usr/local/rvm/gems/ruby-2.5.
|
59
|
+
RUN cd /usr/local/rvm/gems/ruby-2.5.3/gems/rake-compiler-1.0.6 && git apply /home/rvm/patches/rake-compiler-1.0.6/*.diff ;\
|
56
60
|
true
|
57
61
|
|
58
|
-
|
59
|
-
|
60
|
-
|
62
|
+
ENV XRUBIES 2.6.0 2.5.0 2.4.0 2.3.0 2.2.2
|
63
|
+
|
64
|
+
# First do downloads sequentially since they can not run in parallel
|
65
|
+
# Then build all xruby versions in parallel
|
66
|
+
# Then cleanup all build artifacts
|
67
|
+
RUN for rv in $XRUBIES; do \
|
68
|
+
bash -c "rake-compiler /home/rvm/.rake-compiler/sources/ruby-$rv/Makefile.in VERSION=$rv HOST=x86_64-linux-gnu"; \
|
69
|
+
done; \
|
70
|
+
for rv in $XRUBIES; do \
|
71
|
+
for host in i686-linux-gnu x86_64-linux-gnu i686-w64-mingw32 x86_64-w64-mingw32; do \
|
72
|
+
echo -n "'rake-compiler cross-ruby VERSION=$rv HOST=$host' " >> ~/xbuild_rubies; \
|
73
|
+
done; \
|
74
|
+
done && \
|
75
|
+
cat ~/xbuild_rubies; \
|
76
|
+
bash -c " \
|
61
77
|
export CFLAGS='-s -O1 -fno-omit-frame-pointer -fno-fast-math' && \
|
62
|
-
parallel
|
63
|
-
'rake-compiler cross-ruby VERSION=2.5.0 HOST=i686-linux-gnu' \
|
64
|
-
'rake-compiler cross-ruby VERSION=2.4.0 HOST=i686-linux-gnu' \
|
65
|
-
'rake-compiler cross-ruby VERSION=2.3.0 HOST=i686-linux-gnu' \
|
66
|
-
'rake-compiler cross-ruby VERSION=2.2.2 HOST=i686-linux-gnu' \
|
67
|
-
'rake-compiler cross-ruby VERSION=2.1.6 HOST=i686-linux-gnu' \
|
68
|
-
'rake-compiler cross-ruby VERSION=2.0.0-p645 HOST=i686-linux-gnu' \
|
69
|
-
'rake-compiler cross-ruby VERSION=2.5.0 HOST=x86_64-linux-gnu' \
|
70
|
-
'rake-compiler cross-ruby VERSION=2.4.0 HOST=x86_64-linux-gnu' \
|
71
|
-
'rake-compiler cross-ruby VERSION=2.3.0 HOST=x86_64-linux-gnu' \
|
72
|
-
'rake-compiler cross-ruby VERSION=2.2.2 HOST=x86_64-linux-gnu' \
|
73
|
-
'rake-compiler cross-ruby VERSION=2.1.6 HOST=x86_64-linux-gnu' \
|
74
|
-
'rake-compiler cross-ruby VERSION=2.0.0-p645 HOST=x86_64-linux-gnu' \
|
75
|
-
'rake-compiler cross-ruby VERSION=2.5.0 HOST=i686-w64-mingw32' \
|
76
|
-
'rake-compiler cross-ruby VERSION=2.4.0 HOST=i686-w64-mingw32' \
|
77
|
-
'rake-compiler cross-ruby VERSION=2.3.0 HOST=i686-w64-mingw32' \
|
78
|
-
'rake-compiler cross-ruby VERSION=2.2.2 HOST=i686-w64-mingw32' \
|
79
|
-
'rake-compiler cross-ruby VERSION=2.1.6 HOST=i686-w64-mingw32' \
|
80
|
-
'rake-compiler cross-ruby VERSION=2.0.0-p645 HOST=i686-w64-mingw32' \
|
81
|
-
'rake-compiler cross-ruby VERSION=2.5.0 HOST=x86_64-w64-mingw32' \
|
82
|
-
'rake-compiler cross-ruby VERSION=2.4.0 HOST=x86_64-w64-mingw32' \
|
83
|
-
'rake-compiler cross-ruby VERSION=2.3.0 HOST=x86_64-w64-mingw32' \
|
84
|
-
'rake-compiler cross-ruby VERSION=2.2.2 HOST=x86_64-w64-mingw32' \
|
85
|
-
'rake-compiler cross-ruby VERSION=2.1.6 HOST=x86_64-w64-mingw32' \
|
86
|
-
'rake-compiler cross-ruby VERSION=2.0.0-p645 HOST=x86_64-w64-mingw32' ; \
|
78
|
+
parallel -- $( cat ~/xbuild_rubies ) && \
|
87
79
|
rm -rf ~/.rake-compiler/builds ~/.rake-compiler/sources && \
|
88
80
|
find /usr/local/rvm -type d -print0 | sudo xargs -0 chmod g+sw "
|
89
81
|
|
@@ -97,9 +89,6 @@ RUN find /usr/local/rake-compiler/ruby/*linux*/ -name mkmf.rb | while read f ; d
|
|
97
89
|
# RubyInstaller doesn't install libgcc -> link it static.
|
98
90
|
RUN find /usr/local/rake-compiler/ruby/*mingw*/ -name rbconfig.rb | while read f ; do sed -i 's/."LDFLAGS". = "/&-static-libgcc /' $f ; done
|
99
91
|
|
100
|
-
RUN bash -c " \
|
101
|
-
rvm alias create 2.5 2.5.0 "
|
102
|
-
|
103
92
|
USER root
|
104
93
|
|
105
94
|
# Add more libraries and tools to support cross build
|
@@ -128,6 +117,6 @@ COPY build/runas /usr/local/bin/
|
|
128
117
|
# Install sudoers configuration
|
129
118
|
COPY build/sudoers /etc/sudoers.d/rake-compiler-dock
|
130
119
|
|
131
|
-
ENV RUBY_CC_VERSION 2.5.0:2.4.0:2.3.0:2.2.2
|
120
|
+
ENV RUBY_CC_VERSION 2.6.0:2.5.0:2.4.0:2.3.0:2.2.2
|
132
121
|
|
133
122
|
CMD bash
|
data/History.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
0.7.0 / 2018-12-26
|
2
|
+
------------------
|
3
|
+
* Add docker image for JRuby extensions, new option `:rubyvm` and `RCD_RUBYVM` environment variable
|
4
|
+
* Add ruby-2.6.0 cross ruby
|
5
|
+
* Remove ruby-2.0 and ruby-2.1 cross ruby
|
6
|
+
* Fix compatibility with JRuby on the host
|
7
|
+
* Update base image to Ubuntu-18.04.
|
8
|
+
* Update native ruby version to 2.5.3
|
9
|
+
|
10
|
+
|
1
11
|
0.6.3 / 2018-02-06
|
2
12
|
------------------
|
3
13
|
* Update base image to Ubuntu-17.10. Fixes #19, #17
|
data/Rakefile
CHANGED
@@ -4,7 +4,8 @@ require "rake_compiler_dock/gem_helper"
|
|
4
4
|
RakeCompilerDock::GemHelper.install_tasks
|
5
5
|
|
6
6
|
task :build do
|
7
|
-
sh "docker build -t larskanis/rake-compiler-dock:#{RakeCompilerDock::IMAGE_VERSION} ."
|
7
|
+
sh "docker build -t larskanis/rake-compiler-dock-mri:#{RakeCompilerDock::IMAGE_VERSION} -f Dockerfile.mri ."
|
8
|
+
sh "docker build -t larskanis/rake-compiler-dock-jruby:#{RakeCompilerDock::IMAGE_VERSION} -f Dockerfile.jruby ."
|
8
9
|
end
|
9
10
|
|
10
11
|
desc "Run tests"
|
File without changes
|
File without changes
|
@@ -1,4 +1,5 @@
|
|
1
1
|
require "uri"
|
2
|
+
require "rbconfig"
|
2
3
|
require "rake_compiler_dock/colors"
|
3
4
|
|
4
5
|
module RakeCompilerDock
|
@@ -155,8 +156,12 @@ module RakeCompilerDock
|
|
155
156
|
@b2d_start_envset
|
156
157
|
end
|
157
158
|
|
159
|
+
def host_os
|
160
|
+
RbConfig::CONFIG['host_os']
|
161
|
+
end
|
162
|
+
|
158
163
|
def doma_pwd_ok?
|
159
|
-
case
|
164
|
+
case host_os
|
160
165
|
when /mingw|mswin/
|
161
166
|
pwd =~ /^\/c\/users/i
|
162
167
|
when /linux/
|
@@ -183,7 +188,7 @@ module RakeCompilerDock
|
|
183
188
|
help = []
|
184
189
|
if !ok? && docker_client_avail? && !doma_avail? && !b2d_avail?
|
185
190
|
help << red("Docker client tools work, but connection to the local docker server failed.")
|
186
|
-
case
|
191
|
+
case host_os
|
187
192
|
when /linux/
|
188
193
|
help << yellow("Please make sure the docker daemon is running.")
|
189
194
|
help << ""
|
@@ -205,7 +210,7 @@ module RakeCompilerDock
|
|
205
210
|
help << yellow(" or have a look at our FAQs: http://git.io/vm8AL")
|
206
211
|
end
|
207
212
|
elsif !ok? && !doma_avail? && !b2d_avail?
|
208
|
-
case
|
213
|
+
case host_os
|
209
214
|
when /mingw|mswin/
|
210
215
|
help << red("Docker is not available.")
|
211
216
|
help << yellow("Please download and install the docker-toolbox:")
|
@@ -255,7 +260,7 @@ module RakeCompilerDock
|
|
255
260
|
elsif !ok? && !doma_pwd_ok?
|
256
261
|
help << red("docker-machine can not mount the current working directory.")
|
257
262
|
help << ""
|
258
|
-
case
|
263
|
+
case host_os
|
259
264
|
when /mingw|mswin/
|
260
265
|
help << yellow(" Please move to a diretory below C:\\Users")
|
261
266
|
when /darwin/
|
@@ -289,7 +294,7 @@ module RakeCompilerDock
|
|
289
294
|
elsif !ok? && !doma_pwd_ok?
|
290
295
|
help << red("boot2docker can not mount the current working directory.")
|
291
296
|
help << ""
|
292
|
-
case
|
297
|
+
case host_os
|
293
298
|
when /mingw|mswin/
|
294
299
|
help << yellow(" Please move to a diretory below C:\\Users")
|
295
300
|
when /darwin/
|
@@ -15,10 +15,6 @@ module RakeCompilerDock
|
|
15
15
|
exec('bash', '-c', cmd, options, &block)
|
16
16
|
end
|
17
17
|
|
18
|
-
def image_name
|
19
|
-
ENV['RCD_IMAGE'] || ENV['RAKE_COMPILER_DOCK_IMAGE'] || "larskanis/rake-compiler-dock:#{IMAGE_VERSION}"
|
20
|
-
end
|
21
|
-
|
22
18
|
def exec(*args)
|
23
19
|
options = (Hash === args.last) ? args.pop : {}
|
24
20
|
runargs = args.dup
|
@@ -43,6 +39,12 @@ module RakeCompilerDock
|
|
43
39
|
end
|
44
40
|
user = options.fetch(:username){ current_user }
|
45
41
|
group = options.fetch(:groupname){ current_group }
|
42
|
+
rubyvm = options.fetch(:rubyvm){ ENV['RCD_RUBYVM'] } || "mri"
|
43
|
+
image_name = options.fetch(:image) do
|
44
|
+
ENV['RCD_IMAGE'] ||
|
45
|
+
ENV['RAKE_COMPILER_DOCK_IMAGE'] ||
|
46
|
+
"larskanis/rake-compiler-dock-#{rubyvm}:#{IMAGE_VERSION}"
|
47
|
+
end
|
46
48
|
|
47
49
|
check_docker(mountdir) if options.fetch(:check_docker){ true }
|
48
50
|
runargs.unshift("sigfw") if options.fetch(:sigfw){ true }
|
@@ -30,11 +30,11 @@ class TestEnvironmentVariables < Test::Unit::TestCase
|
|
30
30
|
end
|
31
31
|
|
32
32
|
def test_IMAGE
|
33
|
-
assert_equal RakeCompilerDock
|
33
|
+
assert_equal "larskanis/rake-compiler-dock-mri:#{RakeCompilerDock::IMAGE_VERSION}", rcd_env['RCD_IMAGE']
|
34
34
|
end
|
35
35
|
|
36
36
|
def test_RUBY_CC_VERSION
|
37
|
-
df = File.read(File.expand_path("../../Dockerfile", __FILE__))
|
37
|
+
df = File.read(File.expand_path("../../Dockerfile.mri", __FILE__))
|
38
38
|
df =~ /^ENV RUBY_CC_VERSION\s+(.*)\s+$/
|
39
39
|
assert_equal $1, rcd_env['RUBY_CC_VERSION']
|
40
40
|
end
|
metadata
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rake-compiler-dock
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lars Kanis
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain:
|
11
11
|
- |
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
|
-
|
13
|
+
MIIDPDCCAiSgAwIBAgIBBDANBgkqhkiG9w0BAQsFADBEMQ0wCwYDVQQDDARsYXJz
|
14
14
|
MR8wHQYKCZImiZPyLGQBGRYPZ3JlaXotcmVpbnNkb3JmMRIwEAYKCZImiZPyLGQB
|
15
|
-
|
15
|
+
GRYCZGUwHhcNMTgwNjAyMDkwNzQxWhcNMTkwNjAyMDkwNzQxWjBEMQ0wCwYDVQQD
|
16
16
|
DARsYXJzMR8wHQYKCZImiZPyLGQBGRYPZ3JlaXotcmVpbnNkb3JmMRIwEAYKCZIm
|
17
17
|
iZPyLGQBGRYCZGUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZb4Uv
|
18
18
|
RFJfRu/VEWiy3psh2jinETjiuBrL0NeRFGf8H7iU9+gx/DI/FFhfHGLrDeIskrJx
|
@@ -21,53 +21,53 @@ cert_chain:
|
|
21
21
|
P0GmVbFBrbc7Zt5h78N3UyOK0u+nvOC23BvyHXzCtcFsXCoEkt+Wwh0RFqVZdnjM
|
22
22
|
LMO2vULHKKHDdX54K/sbVCj9pN9h1aotNzrEyo55zxn0G9PHg/G3P8nMvAXPkUTe
|
23
23
|
brhXrfCwWRvOXA4TAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0G
|
24
|
-
A1UdDgQWBBRAHK81igrXodaDj8a8/
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
24
|
+
A1UdDgQWBBRAHK81igrXodaDj8a8/BIKsaZrETANBgkqhkiG9w0BAQsFAAOCAQEA
|
25
|
+
0s99WtnVnaqOaSGxZyu8oamWfqmT5j6bjZoEMUEXmd6kiFY/MWvybIQon0PHFb5Y
|
26
|
+
uUd3Nl60VG5ZjdtC4BVWl6cmLSg1HwL2zb4WRKM+LHwRUXSsmYsdTTA4jG64O26V
|
27
|
+
eERRAKlcg6oNqcWjHH+CbeNWL2rIJlfqRykQ8o3S6PXQnDYcuTf/bBiU9bwEc2uu
|
28
|
+
UfE3teqcc04i4+zWgDBu45UpF79QXbFbInaZkd92ozdnNYbd4jOud1SWtR5I2OFv
|
29
|
+
cIEWu8F/maa7XqF9Sk/GEGriqlaobodHfoJxAb/u9IDz0ytY3p8mEyGwqNDoCjeL
|
30
|
+
7/9XxD10fBRrg2rR7rYqZg==
|
31
31
|
-----END CERTIFICATE-----
|
32
|
-
date: 2018-
|
32
|
+
date: 2018-12-26 00:00:00.000000000 Z
|
33
33
|
dependencies:
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
|
-
name: bundler
|
36
35
|
requirement: !ruby/object:Gem::Requirement
|
37
36
|
requirements:
|
38
37
|
- - "~>"
|
39
38
|
- !ruby/object:Gem::Version
|
40
39
|
version: '1.7'
|
41
|
-
|
40
|
+
name: bundler
|
42
41
|
prerelease: false
|
42
|
+
type: :development
|
43
43
|
version_requirements: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '1.7'
|
48
48
|
- !ruby/object:Gem::Dependency
|
49
|
-
name: rake
|
50
49
|
requirement: !ruby/object:Gem::Requirement
|
51
50
|
requirements:
|
52
51
|
- - "~>"
|
53
52
|
- !ruby/object:Gem::Version
|
54
53
|
version: '12.0'
|
55
|
-
|
54
|
+
name: rake
|
56
55
|
prerelease: false
|
56
|
+
type: :development
|
57
57
|
version_requirements: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '12.0'
|
62
62
|
- !ruby/object:Gem::Dependency
|
63
|
-
name: test-unit
|
64
63
|
requirement: !ruby/object:Gem::Requirement
|
65
64
|
requirements:
|
66
65
|
- - "~>"
|
67
66
|
- !ruby/object:Gem::Version
|
68
67
|
version: '3.0'
|
69
|
-
|
68
|
+
name: test-unit
|
70
69
|
prerelease: false
|
70
|
+
type: :development
|
71
71
|
version_requirements: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
@@ -84,7 +84,8 @@ extensions: []
|
|
84
84
|
extra_rdoc_files: []
|
85
85
|
files:
|
86
86
|
- ".gitignore"
|
87
|
-
- Dockerfile
|
87
|
+
- Dockerfile.jruby
|
88
|
+
- Dockerfile.mri
|
88
89
|
- Gemfile
|
89
90
|
- History.md
|
90
91
|
- LICENSE.txt
|
@@ -92,8 +93,8 @@ files:
|
|
92
93
|
- Rakefile
|
93
94
|
- bin/rake-compiler-dock
|
94
95
|
- build/mk_i686.rb
|
95
|
-
- build/patches/rake-compiler-1.0.
|
96
|
-
- build/patches/ruby-2.5.
|
96
|
+
- build/patches/rake-compiler-1.0.6/enable-static.diff
|
97
|
+
- build/patches/ruby-2.5.3/no_sendfile.patch
|
97
98
|
- build/runas
|
98
99
|
- build/sigfw.c
|
99
100
|
- build/strip_wrapper
|
@@ -112,7 +113,7 @@ homepage: https://github.com/rake-compiler/rake-compiler-dock
|
|
112
113
|
licenses:
|
113
114
|
- MIT
|
114
115
|
metadata: {}
|
115
|
-
post_install_message:
|
116
|
+
post_install_message:
|
116
117
|
rdoc_options: []
|
117
118
|
require_paths:
|
118
119
|
- lib
|
@@ -127,9 +128,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
127
128
|
- !ruby/object:Gem::Version
|
128
129
|
version: '0'
|
129
130
|
requirements: []
|
130
|
-
rubyforge_project:
|
131
|
-
rubygems_version: 2.7.
|
132
|
-
signing_key:
|
131
|
+
rubyforge_project:
|
132
|
+
rubygems_version: 2.7.6
|
133
|
+
signing_key:
|
133
134
|
specification_version: 4
|
134
135
|
summary: Easy to use and reliable cross compiler environment for building Windows
|
135
136
|
and Linux binary gems.
|
metadata.gz.sig
CHANGED
Binary file
|