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
|
#end
|
||||||
|
|
||||||
package :mongodb, :provides => :database do
|
package :mongodb, :provides => :database do
|
||||||
description 'Mongodb debian package.'
|
description 'Mongodb binary.'
|
||||||
version '1.4.3'
|
version '1.6.3'
|
||||||
|
binary "http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-static-legacy-#{version}.tgz" do
|
||||||
binary "http://downloads.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"
|
post :install, "ln -s -f /usr/local/bin/mongodb-linux-x86_64-static-#{version}/bin/mongod /usr/bin/mongod"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,9 @@
|
||||||
|
|
||||||
package :ruby do
|
package :ruby do
|
||||||
description 'Ruby Virtual Machine'
|
description 'Ruby Virtual Machine'
|
||||||
version '1.8.7'
|
version '1.9.2'
|
||||||
patchlevel '249'
|
patchlevel '0'
|
||||||
source "ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-#{version}-p#{patchlevel}.tar.gz" # implicit :style => :gnu
|
source "ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-#{version}-p#{patchlevel}.tar.gz"
|
||||||
requires :ruby_dependencies
|
requires :ruby_dependencies
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
@ -23,21 +23,21 @@ package :rubygems do
|
||||||
source "http://production.cf.rubygems.org/rubygems/rubygems-#{version}.tgz" do
|
source "http://production.cf.rubygems.org/rubygems/rubygems-#{version}.tgz" do
|
||||||
custom_install 'ruby setup.rb'
|
custom_install 'ruby setup.rb'
|
||||||
end
|
end
|
||||||
run( "PATH=$PATH:/var/lib/gems/1.8/bin")
|
run( "PATH=$PATH:/var/lib/gems/1.9/bin")
|
||||||
run( "export PATH")
|
run( "export PATH")
|
||||||
requires :ruby
|
requires :ruby
|
||||||
end
|
end
|
||||||
|
|
||||||
package :bundler do
|
package :bundler do
|
||||||
description 'bundler'
|
description 'bundler'
|
||||||
version '0.9.26'
|
version '1.0.0'
|
||||||
gem 'bundler'
|
gem 'bundler'
|
||||||
requires :rubygems
|
requires :rubygems
|
||||||
end
|
end
|
||||||
|
|
||||||
package :diaspora_dependencies do
|
package :diaspora_dependencies do
|
||||||
description 'random dependencies'
|
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
|
end
|
||||||
#package :diaspora do
|
#package :diaspora do
|
||||||
# description 'Diaspora'
|
# description 'Diaspora'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue