Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Wiltschko committed May 12, 2016
1 parent 7d92b4e commit a779bcc
Show file tree
Hide file tree
Showing 23 changed files with 85 additions and 39 deletions.
5 changes: 3 additions & 2 deletions lua-5.1.5/build.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
if [ `uname` == Darwin ]; then
make macosx INSTALL_TOP=$PREFIX
fi
if [ `uname` == Linux ]; then
make macosx test
elif [ `uname` == Linux ]; then
make linux INSTALL_TOP=$PREFIX MYCFLAGS="-I$PREFIX/include -L$PREFIX/lib -DLUA_USE_LINUX -DLUA_USER_DEFAULT_PATH='\"$PREFIX/\"'" MYLDFLAGS="-L$PREFIX/lib -Wl,-rpath=$PREFIX/lib" # "
make linux test
fi
make install INSTALL_TOP=$PREFIX

Expand Down
7 changes: 4 additions & 3 deletions lua-5.2.4/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
if [ `uname` == Darwin ]; then
make macosx INSTALL_TOP=$PREFIX
fi
if [ `uname` == Linux ]; then
make macosx INSTALL_TOP=$PREFIX MYCFLAGS="-I$PREFIX/include -L$PREFIX/lib -DLUA_USER_DEFAULT_PATH='\"$PREFIX/\"'" MYLDFLAGS="-L$PREFIX/lib"
make macosx test
elif [ `uname` == Linux ]; then
make linux INSTALL_TOP=$PREFIX MYCFLAGS="-I$PREFIX/include -L$PREFIX/lib -DLUA_USE_LINUX -DLUA_USER_DEFAULT_PATH='\"$PREFIX/\"'" MYLDFLAGS="-L$PREFIX/lib -Wl,-rpath=$PREFIX/lib" # "
make linux test
fi
make install INSTALL_TOP=$PREFIX
11 changes: 9 additions & 2 deletions lua-5.2.4/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@ source:
url: http://www.lua.org/ftp/lua-5.2.4.tar.gz
md5: 913fdb32207046b273fdb17aad70be13
patches:
# Enables Lua to look for packages on a relative path
- luaconf.patch
# Enables readline on linux
- Makefile.patch

build:
number: 1
number: 0
detect_binary_files_with_prefix: true
skip: True # [win]

requirements:
build:
Expand All @@ -30,4 +33,8 @@ test:
about:
home: http://www.lua.org/
summary: Lua is a powerful, fast, lightweight, embeddable scripting language
license: MIT
license: MIT

extra:
recipe-maintainers:
- alexbw
2 changes: 2 additions & 0 deletions lua-5.3.2/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
if [ `uname` == Darwin ]; then
make macosx INSTALL_TOP=$PREFIX
make macosx test
fi
if [ `uname` == Linux ]; then
make linux INSTALL_TOP=$PREFIX MYCFLAGS="-I$PREFIX/include -L$PREFIX/lib -DLUA_USE_LINUX -DLUA_USER_DEFAULT_PATH='\"$PREFIX/\"'" MYLDFLAGS="-L$PREFIX/lib -lreadline -lhistory -lncursesw -Wl,-rpath=$PREFIX/lib" # "
make macosx test
fi
make install INSTALL_TOP=$PREFIX
4 changes: 2 additions & 2 deletions lua-argcheck/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-argcheck
version: 1.0
version: 1.0.1

source:
git_url: https://github.com/torch/argcheck.git
git_rev: 623c12f0ffec61501962ee3a9312a9f7551f3ee3
git_rev: 91344af

build:
number: 1
Expand Down
4 changes: 2 additions & 2 deletions lua-audio/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-audio
version: 0.1
version: 0.1.1

source:
git_url: https://github.com/soumith/lua---audio.git
git_rev: b9f922a64b2e94c053b10e57c1312ee7ca9a4a3c
git_rev: e71fce7

build:
number: 1
Expand Down
7 changes: 3 additions & 4 deletions lua-cunn/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
package:
name: lua-cunn
version: 0.1
version: 0.1.1

source:
git_url: https://github.com/alexbw/cunn.git
git_tag: master
# git_rev: 71ca338
git_url: https://github.com/torch/cunn.git
git_rev: 7c6cdf0

build:
number: 0
Expand Down
4 changes: 2 additions & 2 deletions lua-cutorch/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-cutorch
version: 7
version: 7.0.1

source:
git_url: https://github.com/torch/cutorch.git
git_rev: 8f01efe
git_rev: 644d73d

build:
number: 1
Expand Down
4 changes: 2 additions & 2 deletions lua-gnuplot/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-gnuplot
version: 1.0
version: 1.0.1

source:
git_url: https://github.com/torch/gnuplot.git
git_rev: 3230b41
git_rev: 1955fb2

build:
number: 1
Expand Down
4 changes: 2 additions & 2 deletions lua-graph/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-graph
version: 0.1
version: 0.2

source:
git_url: https://github.com/torch/graph.git
git_rev: d2f14f7
git_rev: 34d7128

build:
number: 1
Expand Down
4 changes: 2 additions & 2 deletions lua-image/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-image
version: 1.1.0
version: 1.1.1

source:
git_url: https://github.com/torch/image.git
git_rev: 134f8590d768df47d0a5345e88b9de8e28715c82
git_rev: 95a7b55

build:
number: 1
Expand Down
3 changes: 3 additions & 0 deletions lua-ipc/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Make sure luarocks can see all dependencies
$PREFIX/bin/luarocks-admin make_manifest --local-tree
$PREFIX/bin/luarocks make ipc-scm-1.rockspec --local-tree
30 changes: 30 additions & 0 deletions lua-ipc/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package:
name: lua-ipc
version: 0.1

source:
git_url: https://github.com/twitter/torch-ipc.git
git_rev: 3836f0c

build:
number: 0
detect_binary_files_with_prefix: true

requirements:
build:
- lua
- luarocks
- lua-torch
run:
- lua
- luarocks
- lua-torch

test:
commands:
- lua -e "require 'ipc'"

about:
home: https://github.com/twitter/torch-autograd
license: MIT
summary: Automatic differentiation for Torch
2 changes: 2 additions & 0 deletions lua-ipc/post-link.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Let luarocks know that we've installed a new project
$PREFIX/bin/luarocks-admin make_manifest --local-tree
1 change: 1 addition & 0 deletions lua-ipc/pre-unlink.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
$PREFIX/bin/luarocks remove ipc
4 changes: 2 additions & 2 deletions lua-nn/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-nn
version: 0.1
version: 0.1.1

source:
git_url: https://github.com/torch/nn.git
git_rev: e82d8cb
git_rev: 0e545aa

build:
number: 1
Expand Down
4 changes: 2 additions & 2 deletions lua-optim/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-optim
version: 1.0.5
version: 1.0.6

source:
git_url: https://github.com/torch/optim.git
git_rev: e963a69
git_rev: e9af33b

build:
number: 1
Expand Down
4 changes: 2 additions & 2 deletions lua-sundown/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-sundown
version: 0.1
version: 0.1.1

source:
git_url: https://github.com/torch/sundown-ffi.git
git_rev: 743faf433ff69086f88b70ac98fcb0d9297b4cb1
git_rev: ab92c0c

build:
number: 1
Expand Down
4 changes: 2 additions & 2 deletions lua-sys/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-sys
version: 1.1
version: 1.1.1

source:
git_url: https://github.com/torch/sys.git
git_rev: 77f10a2
git_rev: 8d2b8fa

build:
number: 1
Expand Down
4 changes: 2 additions & 2 deletions lua-threads/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-threads
version: 0.1
version: 0.1.1

source:
git_url: https://github.com/torch/threads-ffi.git
git_rev: 9e31123db00c8c8c437a3cba744576456de38731
git_rev: 628ab68

build:
number: 1
Expand Down
4 changes: 2 additions & 2 deletions lua-torch/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-torch
version: 7.0
version: 7.0.2

source:
git_url: https://github.com/torch/torch7.git
git_rev: f056171b5187d6b8228af60ff8d840ff45ad0e93
git_rev: 02fb5bd

build:
number: 1
Expand Down
4 changes: 2 additions & 2 deletions lua-trepl/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-trepl
version: 0.1
version: 0.1.1

source:
git_url: https://github.com/torch/trepl.git
git_rev: 1ae1458
git_rev: f2d2f1a

build:
number: 1
Expand Down
4 changes: 2 additions & 2 deletions lua-xlua/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: lua-xlua
version: 1.1
version: 1.1.1

source:
git_url: https://github.com/torch/xlua.git
git_rev: 3c1d3c9
git_rev: 98c11ca

build:
number: 1
Expand Down

0 comments on commit a779bcc

Please sign in to comment.