Update sprinkle script
This commit is contained in:
parent
bb88a6fb8c
commit
1fa732498b
2 changed files with 9 additions and 10 deletions
|
|
@ -9,10 +9,9 @@
|
|||
#end
|
||||
|
||||
package :mongodb, :provides => :database do
|
||||
description 'Mongodb debian package.'
|
||||
version '1.4.3'
|
||||
|
||||
binary "http://downloads.mongodb.org/linux/mongodb-linux-x86_64-static-legacy-#{version}.tgz" do
|
||||
description 'Mongodb binary.'
|
||||
version '1.6.3'
|
||||
binary "http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-static-legacy-#{version}.tgz" do
|
||||
post :install, "ln -s -f /usr/local/bin/mongodb-linux-x86_64-static-#{version}/bin/mongod /usr/bin/mongod"
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@
|
|||
|
||||
package :ruby do
|
||||
description 'Ruby Virtual Machine'
|
||||
version '1.8.7'
|
||||
patchlevel '249'
|
||||
source "ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-#{version}-p#{patchlevel}.tar.gz" # implicit :style => :gnu
|
||||
version '1.9.2'
|
||||
patchlevel '0'
|
||||
source "ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-#{version}-p#{patchlevel}.tar.gz"
|
||||
requires :ruby_dependencies
|
||||
end
|
||||
|
||||
|
|
@ -23,21 +23,21 @@ package :rubygems do
|
|||
source "http://production.cf.rubygems.org/rubygems/rubygems-#{version}.tgz" do
|
||||
custom_install 'ruby setup.rb'
|
||||
end
|
||||
run( "PATH=$PATH:/var/lib/gems/1.8/bin")
|
||||
run( "PATH=$PATH:/var/lib/gems/1.9/bin")
|
||||
run( "export PATH")
|
||||
requires :ruby
|
||||
end
|
||||
|
||||
package :bundler do
|
||||
description 'bundler'
|
||||
version '0.9.26'
|
||||
version '1.0.0'
|
||||
gem 'bundler'
|
||||
requires :rubygems
|
||||
end
|
||||
|
||||
package :diaspora_dependencies do
|
||||
description 'random dependencies'
|
||||
apt %w(libxslt1.1 libxslt1-dev libxml2 libgpgme11-dev imagemagick libmagick9-dev)
|
||||
apt %w(libxslt1.1 libxslt1-dev libxml2 imagemagick libmagick9-dev)
|
||||
end
|
||||
#package :diaspora do
|
||||
# description 'Diaspora'
|
||||
|
|
|
|||
Loading…
Reference in a new issue