Update a bunch of modules

This commit is contained in:
Will Farrington 2013-10-22 15:55:18 -07:00
parent e2e184f80d
commit 9ed5f33bb6
10 changed files with 55 additions and 18 deletions

View file

@ -4,11 +4,27 @@
# default. This ensures at least the ability to construct a basic # default. This ensures at least the ability to construct a basic
# environment. # environment.
def github(name, version, options = nil) # Shortcut for a module from GitHub's boxen organization
options ||= {} def github(name, *args)
options ||= if args.last.is_a? Hash
args.last
else
{}
end
if path = options.delete(:path)
mod name, :path => path
else
version = args.first
options[:repo] ||= "boxen/puppet-#{name}" options[:repo] ||= "boxen/puppet-#{name}"
mod name, version, :github_tarball => options[:repo] mod name, version, :github_tarball => options[:repo]
end end
end
# Shortcut for a module under development
def dev(name, *args)
mod name, :path => "#{ENV['HOME']}/src/boxen/puppet-#{name}"
end
# Includes many of our custom types and providers, as well as global # Includes many of our custom types and providers, as well as global
# config. Required. # config. Required.
@ -18,18 +34,21 @@ github "boxen", "3.0.2"
# Core modules for a basic development environment. You can replace # Core modules for a basic development environment. You can replace
# some/most of these if you want, but it's not recommended. # some/most of these if you want, but it's not recommended.
github "autoconf", "1.0.0"
github "dnsmasq", "1.0.0" github "dnsmasq", "1.0.0"
github "foreman", "1.0.0"
github "gcc", "2.0.1" github "gcc", "2.0.1"
github "git", "1.2.5" github "git", "1.2.5"
github "go", "1.0.0"
github "homebrew", "1.4.1" github "homebrew", "1.4.1"
github "hub", "1.0.3" github "hub", "1.0.3"
github "inifile", "1.0.0", :repo => "puppetlabs/puppetlabs-inifile" github "inifile", "1.0.0", :repo => "puppetlabs/puppetlabs-inifile"
github "nginx", "1.4.2" github "nginx", "1.4.2"
github "nodejs", "3.2.9" github "nodejs", "3.3.0"
github "openssl", "1.0.0" github "openssl", "1.0.0"
github "phantomjs", "2.0.2"
github "pkgconfig", "1.0.0"
github "repository", "2.2.0" github "repository", "2.2.0"
github "ruby", "6.3.4" github "ruby", "6.5.0"
github "stdlib", "4.1.0", :repo => "puppetlabs/puppetlabs-stdlib" github "stdlib", "4.1.0", :repo => "puppetlabs/puppetlabs-stdlib"
github "sudo", "1.0.0" github "sudo", "1.0.0"
github "xquartz", "1.1.0" github "xquartz", "1.1.0"

View file

@ -1,8 +1,3 @@
GITHUBTARBALL
remote: boxen/puppet-autoconf
specs:
autoconf (1.0.0)
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-boxen remote: boxen/puppet-boxen
specs: specs:
@ -13,6 +8,11 @@ GITHUBTARBALL
specs: specs:
dnsmasq (1.0.0) dnsmasq (1.0.0)
GITHUBTARBALL
remote: boxen/puppet-foreman
specs:
foreman (1.0.0)
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-gcc remote: boxen/puppet-gcc
specs: specs:
@ -23,6 +23,11 @@ GITHUBTARBALL
specs: specs:
git (1.2.5) git (1.2.5)
GITHUBTARBALL
remote: boxen/puppet-go
specs:
go (1.0.0)
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-homebrew remote: boxen/puppet-homebrew
specs: specs:
@ -41,13 +46,23 @@ GITHUBTARBALL
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-nodejs remote: boxen/puppet-nodejs
specs: specs:
nodejs (3.2.9) nodejs (3.3.0)
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-openssl remote: boxen/puppet-openssl
specs: specs:
openssl (1.0.0) openssl (1.0.0)
GITHUBTARBALL
remote: boxen/puppet-phantomjs
specs:
phantomjs (2.0.2)
GITHUBTARBALL
remote: boxen/puppet-pkgconfig
specs:
pkgconfig (1.0.0)
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-repository remote: boxen/puppet-repository
specs: specs:
@ -56,7 +71,7 @@ GITHUBTARBALL
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-ruby remote: boxen/puppet-ruby
specs: specs:
ruby (6.3.4) ruby (6.5.0)
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-sudo remote: boxen/puppet-sudo
@ -79,19 +94,22 @@ GITHUBTARBALL
stdlib (4.1.0) stdlib (4.1.0)
DEPENDENCIES DEPENDENCIES
autoconf (= 1.0.0)
boxen (= 3.0.2) boxen (= 3.0.2)
dnsmasq (= 1.0.0) dnsmasq (= 1.0.0)
foreman (= 1.0.0)
gcc (= 2.0.1) gcc (= 2.0.1)
git (= 1.2.5) git (= 1.2.5)
go (= 1.0.0)
homebrew (= 1.4.1) homebrew (= 1.4.1)
hub (= 1.0.3) hub (= 1.0.3)
inifile (= 1.0.0) inifile (= 1.0.0)
nginx (= 1.4.2) nginx (= 1.4.2)
nodejs (= 3.2.9) nodejs (= 3.3.0)
openssl (= 1.0.0) openssl (= 1.0.0)
phantomjs (= 2.0.2)
pkgconfig (= 1.0.0)
repository (= 2.2.0) repository (= 2.2.0)
ruby (= 6.3.4) ruby (= 6.5.0)
stdlib (= 4.1.0) stdlib (= 4.1.0)
sudo (= 1.0.0) sudo (= 1.0.0)
xquartz (= 1.1.0) xquartz (= 1.1.0)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.