rake-compiler-dock 0.7.1 → 0.7.2
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f8966fb1c1fe4aec8b3e82b034c7f1327cefc6c632d5e7d5308d1edbf5d5d58
|
|
4
|
+
data.tar.gz: 5d8f0f1075017802cbe0592ea481683f4958806ce3e1fb47f12fe1e2e5763679
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87eb25a8c230147d54c119e4738c2c95a9afe49d88c3dc463cc64f712fae18d9b237cfe7270292d6044969c7fcd0f215a33b5e74ad8b2578c0823d7dc1496039
|
|
7
|
+
data.tar.gz: 42a89f7a0f73263d06165e0d12da16b2a0c7c58618641e45734d04df3c8c1dad9891502169c1123dcb47bd0cfb232e115eb1159847d7fecd6d9774cf3733b1ca
|
data/Dockerfile.jruby
CHANGED
|
@@ -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://
|
|
12
|
+
RUN gpg --keyserver hkp://pool.sks-keyservers.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 && \
|
data/Dockerfile.mri
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
FROM ubuntu:
|
|
1
|
+
FROM ubuntu:16.04
|
|
2
2
|
|
|
3
3
|
RUN apt-get -y update && \
|
|
4
|
-
apt-get install -y curl git-core xz-utils build-essential wget unzip sudo
|
|
4
|
+
apt-get install -y curl git-core xz-utils build-essential wget unzip sudo gnupg2 dirmngr
|
|
5
5
|
|
|
6
6
|
# Add "rvm" as system group, to avoid conflicts with host GIDs typically starting with 1000
|
|
7
7
|
RUN groupadd -r rvm && useradd -r -g rvm -G sudo -p "" --create-home rvm && \
|
|
@@ -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://
|
|
12
|
+
RUN gpg --keyserver hkp://pool.sks-keyservers.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 && \
|
|
@@ -56,8 +56,8 @@ RUN bash -c " \
|
|
|
56
56
|
USER rvm
|
|
57
57
|
|
|
58
58
|
# Patch rake-compiler to build and install static libraries for Linux rubies
|
|
59
|
-
RUN cd /usr/local/rvm/gems/ruby-2.5.3/gems/rake-compiler-1.0.
|
|
60
|
-
true
|
|
59
|
+
RUN cd /usr/local/rvm/gems/ruby-2.5.3/gems/rake-compiler-1.0.7 && \
|
|
60
|
+
( git apply /home/rvm/patches/rake-compiler-1.0.7/*.diff || true )
|
|
61
61
|
|
|
62
62
|
ENV XRUBIES 2.6.0 2.5.0 2.4.0 2.3.0 2.2.2
|
|
63
63
|
|
data/History.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
0.7.2 / 2019-03-18
|
|
2
|
+
------------------
|
|
3
|
+
* Fix missing libruby.a of cross rubies. Fixes #26
|
|
4
|
+
* Downgrade to Ubuntu-16.04 for MRI base image. Fixes #25
|
|
5
|
+
|
|
6
|
+
|
|
1
7
|
0.7.1 / 2019-01-27
|
|
2
8
|
------------------
|
|
3
9
|
* Add bundler-2.x to image and keep bundler-1.x for compatibility with projects using a `Gemfile.lock` generated by bundler-1.x .
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rake-compiler-dock
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lars Kanis
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -72,7 +72,7 @@ files:
|
|
|
72
72
|
- Rakefile
|
|
73
73
|
- bin/rake-compiler-dock
|
|
74
74
|
- build/mk_i686.rb
|
|
75
|
-
- build/patches/rake-compiler-1.0.
|
|
75
|
+
- build/patches/rake-compiler-1.0.7/enable-static.diff
|
|
76
76
|
- build/patches/ruby-2.5.3/no_sendfile.patch
|
|
77
77
|
- build/runas
|
|
78
78
|
- build/sigfw.c
|