File tree 6 files changed +13
-34
lines changed
6 files changed +13
-34
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- [ ![ Build Status] ( https://travis-ci.org/zeromq/mruby-zmq.svg?branch=master )] ( https://travis-ci.org/zeromq/mruby-zmq )
2
-
3
1
# mruby-zmq
4
2
mruby bindings for https://github.com/zeromq/libzmq (v4)
5
3
Original file line number Diff line number Diff line change 1
1
MRUBY_CONFIG = File . expand_path ( ENV [ "MRUBY_CONFIG" ] || "build_config.rb" )
2
2
3
3
file :mruby do
4
- sh "git clone --depth=1 git://github.com/mruby/mruby.git"
4
+ sh "git clone --recurse-submodules --depth=1 https://github.com/mruby/mruby.git"
5
+ sh "git submodule update --init --recursive"
5
6
end
6
7
7
8
desc "test"
Original file line number Diff line number Diff line change 1
1
---
2
2
mruby:
3
- version: 3.0 .0
4
- release_no: 30000
5
- git_commit: eaaa9148b532a60daf92dfde1c37530194f2060d
3
+ version: 3.3 .0
4
+ release_no: 30300
5
+ git_commit: 9257a61b39d7825ba40efd693e3fa3d588f407d8
6
6
builds:
7
7
host:
8
- https://github.com/iij/mruby-errno.git:
9
- url: https://github.com/iij/mruby-errno.git
10
- branch: HEAD
11
- commit: b4415207ff6ea62360619c89a1cff83259dc4db0
12
- version: 0.0.0
13
8
https://github.com/Asmod4n/mruby-proc-irep-ext.git:
14
9
url: https://github.com/Asmod4n/mruby-proc-irep-ext.git
15
- branch: HEAD
16
- commit: 66ec9ed10982ff03e998b51a8652c9bb2b75ec44
10
+ branch: master
11
+ commit: d52907a347c3ab63faa1592cd240bb9e5836dee8
17
12
version: 0.0.0
18
13
https://github.com/Asmod4n/mruby-simplemsgpack.git:
19
14
url: https://github.com/Asmod4n/mruby-simplemsgpack.git
20
- branch: HEAD
21
- commit: 293a0c58c77b0b8fff0a5eef176ac9deb0d9cdc0
22
- version: '2.0 '
15
+ branch: master
16
+ commit: b07b6b56839f1358a45909e15a31b54863aaf040
17
+ version: '2.1 '
23
18
https://github.com/iij/mruby-env.git:
24
19
url: https://github.com/iij/mruby-env.git
25
- branch: HEAD
20
+ branch: master
26
21
commit: 056ae324451ef16a50c7887e117f0ea30921b71b
27
22
version: 0.0.0
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ MRuby::Gem::Specification.new('mruby-zmq') do |spec|
19
19
def build_libzmq ( spec , build )
20
20
unless File . exists? ( "#{ spec . build_dir } /build/lib/libzmq.a" )
21
21
warn "mruby-zmq: cannot find libzmq, building it"
22
- sh "mkdir -p #{ spec . build_dir } /build && cd #{ spec . build_dir } /build && cmake -DCMAKE_INSTALL_PREFIX=\" #{ spec . build_dir } \" -DWITH_LIBBSD=OFF - DWITH_LIBSODIUM=OFF -DWITH_TLS=OFF -DENABLE_DRAFTS=ON #{ spec . dir } /deps/libzmq/ && cmake --build . -j4 --target libzmq-static"
22
+ sh "mkdir -p #{ spec . build_dir } /build && cd #{ spec . build_dir } /build && cmake -DCMAKE_INSTALL_PREFIX=\" #{ spec . build_dir } \" -DWITH_LIBSODIUM=OFF -DENABLE_CURVE=ON -DENABLE_DRAFTS=ON #{ spec . dir } /deps/libzmq/ && cmake --build . -j4 --target libzmq-static"
23
23
end
24
24
spec . linker . flags_before_libraries << "\" #{ spec . build_dir } /build/lib/libzmq.a\" "
25
25
`pkg-config --cflags \" #{ spec . build_dir } /build/libzmq.pc\" ` . split ( "\s " ) . each do |cflag |
You can’t perform that action at this time.
0 commit comments