From f15f9f70b488d1c9cc1d4da30f343374c4e43ff3 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 25 Jul 2014 16:03:36 +0100 Subject: Chef imported into Baserock, prototype #2 Taking advantage of the new work in Morph 'master' allowing chunk morphs to go in definitions, we can now treat each Gem as a chunk, and with a bit of hackery, make fetching and compiling+installing the Gem from http://rubygems.org/ look like a normal Morph build. To avoid the hackery we need to introduce a separate build-mode, probably, but this is a start! --- chef-system-x86_32-container.morph | 2 +- chef.morph | 12 -- chef/activesupport-3.2.19.morph | 15 ++ chef/builder-3.2.2.morph | 15 ++ chef/bundler-1.6.3.morph | 15 ++ chef/chef-12.0.0.alpha.0.morph | 15 ++ chef/chef-zero-2.2.morph | 15 ++ chef/chef.morph | 365 +++++++++++++++++++++++++++++++++ chef/coderay-1.1.0.morph | 15 ++ chef/diff-lcs-1.2.5.morph | 15 ++ chef/docile-1.1.5.morph | 15 ++ chef/erubis-2.7.0.morph | 15 ++ chef/ffi-1.9.3.morph | 15 ++ chef/ffi-yajl-1.0.1.morph | 15 ++ chef/hashie-2.1.2.morph | 15 ++ chef/highline-1.6.21.morph | 15 ++ chef/i18n-0.6.11.morph | 15 ++ chef/ipaddress-0.8.0.morph | 15 ++ chef/json-1.8.1.morph | 15 ++ chef/libyajl2-1.0.1.morph | 15 ++ chef/method_source-0.8.2.morph | 15 ++ chef/mime-types-1.25.1.morph | 15 ++ chef/mixlib-authentication-1.3.0.morph | 15 ++ chef/mixlib-cli-1.5.0.morph | 15 ++ chef/mixlib-config-2.1.0.morph | 15 ++ chef/mixlib-log-1.6.0.morph | 15 ++ chef/mixlib-shellout-1.4.0.morph | 15 ++ chef/multi_json-1.10.1.morph | 15 ++ chef/net-ssh-2.9.1.morph | 15 ++ chef/net-ssh-gateway-1.2.0.morph | 15 ++ chef/net-ssh-multi-1.2.0.morph | 15 ++ chef/ohai-7.2.0.rc.1.morph | 15 ++ chef/pry-0.10.0.morph | 15 ++ chef/rack-1.5.2.morph | 15 ++ chef/rake-10.1.1.morph | 15 ++ chef/rspec-2.14.1.morph | 15 ++ chef/rspec-core-2.14.8.morph | 15 ++ chef/rspec-expectations-2.14.5.morph | 15 ++ chef/rspec-mocks-2.14.6.morph | 15 ++ chef/rspec_junit_formatter-0.1.6.morph | 15 ++ chef/ruby-shadow-2.3.4.morph | 15 ++ chef/simplecov-0.9.0.morph | 15 ++ chef/simplecov-html-0.8.0.morph | 15 ++ chef/slop-3.6.0.morph | 15 ++ chef/systemu-2.6.4.morph | 15 ++ chef/wmi-lite-1.0.0.morph | 15 ++ chef/yard-0.8.7.4.morph | 15 ++ 47 files changed, 1026 insertions(+), 13 deletions(-) delete mode 100644 chef.morph create mode 100644 chef/activesupport-3.2.19.morph create mode 100644 chef/builder-3.2.2.morph create mode 100644 chef/bundler-1.6.3.morph create mode 100644 chef/chef-12.0.0.alpha.0.morph create mode 100644 chef/chef-zero-2.2.morph create mode 100644 chef/chef.morph create mode 100644 chef/coderay-1.1.0.morph create mode 100644 chef/diff-lcs-1.2.5.morph create mode 100644 chef/docile-1.1.5.morph create mode 100644 chef/erubis-2.7.0.morph create mode 100644 chef/ffi-1.9.3.morph create mode 100644 chef/ffi-yajl-1.0.1.morph create mode 100644 chef/hashie-2.1.2.morph create mode 100644 chef/highline-1.6.21.morph create mode 100644 chef/i18n-0.6.11.morph create mode 100644 chef/ipaddress-0.8.0.morph create mode 100644 chef/json-1.8.1.morph create mode 100644 chef/libyajl2-1.0.1.morph create mode 100644 chef/method_source-0.8.2.morph create mode 100644 chef/mime-types-1.25.1.morph create mode 100644 chef/mixlib-authentication-1.3.0.morph create mode 100644 chef/mixlib-cli-1.5.0.morph create mode 100644 chef/mixlib-config-2.1.0.morph create mode 100644 chef/mixlib-log-1.6.0.morph create mode 100644 chef/mixlib-shellout-1.4.0.morph create mode 100644 chef/multi_json-1.10.1.morph create mode 100644 chef/net-ssh-2.9.1.morph create mode 100644 chef/net-ssh-gateway-1.2.0.morph create mode 100644 chef/net-ssh-multi-1.2.0.morph create mode 100644 chef/ohai-7.2.0.rc.1.morph create mode 100644 chef/pry-0.10.0.morph create mode 100644 chef/rack-1.5.2.morph create mode 100644 chef/rake-10.1.1.morph create mode 100644 chef/rspec-2.14.1.morph create mode 100644 chef/rspec-core-2.14.8.morph create mode 100644 chef/rspec-expectations-2.14.5.morph create mode 100644 chef/rspec-mocks-2.14.6.morph create mode 100644 chef/rspec_junit_formatter-0.1.6.morph create mode 100644 chef/ruby-shadow-2.3.4.morph create mode 100644 chef/simplecov-0.9.0.morph create mode 100644 chef/simplecov-html-0.8.0.morph create mode 100644 chef/slop-3.6.0.morph create mode 100644 chef/systemu-2.6.4.morph create mode 100644 chef/wmi-lite-1.0.0.morph create mode 100644 chef/yard-0.8.7.4.morph diff --git a/chef-system-x86_32-container.morph b/chef-system-x86_32-container.morph index 4abc7d64..8d0d1443 100644 --- a/chef-system-x86_32-container.morph +++ b/chef-system-x86_32-container.morph @@ -19,6 +19,6 @@ strata: - morph: ruby artifacts: - ruby-runtime -- morph: chef +- morph: chef/chef.morph artifacts: - chef-runtime diff --git a/chef.morph b/chef.morph deleted file mode 100644 index cd76fbc2..00000000 --- a/chef.morph +++ /dev/null @@ -1,12 +0,0 @@ -name: chef -kind: stratum -description: - Chef stratum with all Gems committed to a Git repo and installed at - build time using 'gem install'. -build-depends: - - morph: ruby -chunks: - - name: chef-hack-1 - repo: file:///src/chef-hack-1 - ref: master - build-depends: [] diff --git a/chef/activesupport-3.2.19.morph b/chef/activesupport-3.2.19.morph new file mode 100644 index 00000000..21ea0308 --- /dev/null +++ b/chef/activesupport-3.2.19.morph @@ -0,0 +1,15 @@ +--- +name: activesupport-3.2.19 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: activesupport-3.2.19-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies activesupport-3.2.19 diff --git a/chef/builder-3.2.2.morph b/chef/builder-3.2.2.morph new file mode 100644 index 00000000..824ed380 --- /dev/null +++ b/chef/builder-3.2.2.morph @@ -0,0 +1,15 @@ +--- +name: builder-3.2.2 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: builder-3.2.2-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies builder-3.2.2 diff --git a/chef/bundler-1.6.3.morph b/chef/bundler-1.6.3.morph new file mode 100644 index 00000000..3b622657 --- /dev/null +++ b/chef/bundler-1.6.3.morph @@ -0,0 +1,15 @@ +--- +name: bundler-1.6.3 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: bundler-1.6.3-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies bundler-1.6.3 diff --git a/chef/chef-12.0.0.alpha.0.morph b/chef/chef-12.0.0.alpha.0.morph new file mode 100644 index 00000000..65b56ce5 --- /dev/null +++ b/chef/chef-12.0.0.alpha.0.morph @@ -0,0 +1,15 @@ +--- +name: chef-12.0.0.alpha.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: chef-12.0.0.alpha.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies chef-12.0.0.alpha.0 diff --git a/chef/chef-zero-2.2.morph b/chef/chef-zero-2.2.morph new file mode 100644 index 00000000..26d2f586 --- /dev/null +++ b/chef/chef-zero-2.2.morph @@ -0,0 +1,15 @@ +--- +name: chef-zero-2.2 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: chef-zero-2.2-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies chef-zero-2.2 diff --git a/chef/chef.morph b/chef/chef.morph new file mode 100644 index 00000000..a6e7601f --- /dev/null +++ b/chef/chef.morph @@ -0,0 +1,365 @@ +--- +name: chef +kind: stratum +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-depends: +- morph: ruby +chunks: +- name: rake-10.1.1 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 10.1.1 + morph: chef/rake-10.1.1.morph + build-depends: [] +- name: i18n-0.6.11 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 0.6.11 + morph: chef/i18n-0.6.11.morph + build-depends: [] +- name: multi_json-1.10.1 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.10.1 + morph: chef/multi_json-1.10.1.morph + build-depends: [] +- name: activesupport-3.2.19 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 3.2.19 + morph: chef/activesupport-3.2.19.morph + build-depends: + - i18n-0.6.11 + - multi_json-1.10.1 +- name: builder-3.2.2 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 3.2.2 + morph: chef/builder-3.2.2.morph + build-depends: [] +- name: hashie-2.1.2 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 2.1.2 + morph: chef/hashie-2.1.2.morph + build-depends: [] +- name: json-1.8.1 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.8.1 + morph: chef/json-1.8.1.morph + build-depends: [] +- name: mixlib-log-1.6.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.6.0 + morph: chef/mixlib-log-1.6.0.morph + build-depends: [] +- name: rack-1.5.2 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.5.2 + morph: chef/rack-1.5.2.morph + build-depends: [] +- name: chef-zero-2.2 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: '2.2' + morph: chef/chef-zero-2.2.morph + build-depends: + - mixlib-log-1.6.0 + - hashie-2.1.2 + - json-1.8.1 + - rack-1.5.2 +- name: diff-lcs-1.2.5 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.2.5 + morph: chef/diff-lcs-1.2.5.morph + build-depends: [] +- name: erubis-2.7.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 2.7.0 + morph: chef/erubis-2.7.0.morph + build-depends: [] +- name: ffi-1.9.3 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.9.3 + morph: chef/ffi-1.9.3.morph + build-depends: [] +- name: libyajl2-1.0.1 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.0.1 + morph: chef/libyajl2-1.0.1.morph + build-depends: [] +- name: ffi-yajl-1.0.1 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.0.1 + morph: chef/ffi-yajl-1.0.1.morph + build-depends: + - ffi-1.9.3 + - libyajl2-1.0.1 +- name: highline-1.6.21 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.6.21 + morph: chef/highline-1.6.21.morph + build-depends: [] +- name: mixlib-authentication-1.3.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.3.0 + morph: chef/mixlib-authentication-1.3.0.morph + build-depends: + - mixlib-log-1.6.0 +- name: mixlib-cli-1.5.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.5.0 + morph: chef/mixlib-cli-1.5.0.morph + build-depends: [] +- name: mixlib-config-2.1.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 2.1.0 + morph: chef/mixlib-config-2.1.0.morph + build-depends: [] +- name: mixlib-shellout-1.4.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.4.0 + morph: chef/mixlib-shellout-1.4.0.morph + build-depends: [] +- name: net-ssh-2.9.1 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 2.9.1 + morph: chef/net-ssh-2.9.1.morph + build-depends: [] +- name: net-ssh-gateway-1.2.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.2.0 + morph: chef/net-ssh-gateway-1.2.0.morph + build-depends: + - net-ssh-2.9.1 +- name: net-ssh-multi-1.2.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.2.0 + morph: chef/net-ssh-multi-1.2.0.morph + build-depends: + - net-ssh-2.9.1 + - net-ssh-gateway-1.2.0 +- name: ipaddress-0.8.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 0.8.0 + morph: chef/ipaddress-0.8.0.morph + build-depends: [] +- name: mime-types-1.25.1 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.25.1 + morph: chef/mime-types-1.25.1.morph + build-depends: [] +- name: systemu-2.6.4 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 2.6.4 + morph: chef/systemu-2.6.4.morph + build-depends: [] +- name: wmi-lite-1.0.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.0.0 + morph: chef/wmi-lite-1.0.0.morph + build-depends: [] +- name: ohai-7.2.0.rc.1 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 7.2.0.rc.1 + morph: chef/ohai-7.2.0.rc.1.morph + build-depends: + - mime-types-1.25.1 + - systemu-2.6.4 + - ffi-yajl-1.0.1 + - mixlib-cli-1.5.0 + - mixlib-config-2.1.0 + - mixlib-log-1.6.0 + - mixlib-shellout-1.4.0 + - ipaddress-0.8.0 + - wmi-lite-1.0.0 + - ffi-1.9.3 +- name: coderay-1.1.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.1.0 + morph: chef/coderay-1.1.0.morph + build-depends: [] +- name: method_source-0.8.2 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 0.8.2 + morph: chef/method_source-0.8.2.morph + build-depends: [] +- name: slop-3.6.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 3.6.0 + morph: chef/slop-3.6.0.morph + build-depends: [] +- name: pry-0.10.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 0.10.0 + morph: chef/pry-0.10.0.morph + build-depends: + - coderay-1.1.0 + - slop-3.6.0 + - method_source-0.8.2 +- name: chef-12.0.0.alpha.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 12.0.0.alpha.0 + morph: chef/chef-12.0.0.alpha.0.morph + build-depends: + - mixlib-config-2.1.0 + - mixlib-cli-1.5.0 + - mixlib-log-1.6.0 + - mixlib-authentication-1.3.0 + - mixlib-shellout-1.4.0 + - ohai-7.2.0.rc.1 + - ffi-yajl-1.0.1 + - net-ssh-2.9.1 + - net-ssh-multi-1.2.0 + - highline-1.6.21 + - erubis-2.7.0 + - diff-lcs-1.2.5 + - chef-zero-2.2 + - pry-0.10.0 +- name: docile-1.1.5 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.1.5 + morph: chef/docile-1.1.5.morph + build-depends: [] +- name: rspec-core-2.14.8 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 2.14.8 + morph: chef/rspec-core-2.14.8.morph + build-depends: [] +- name: rspec-expectations-2.14.5 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 2.14.5 + morph: chef/rspec-expectations-2.14.5.morph + build-depends: + - diff-lcs-1.2.5 +- name: rspec-mocks-2.14.6 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 2.14.6 + morph: chef/rspec-mocks-2.14.6.morph + build-depends: [] +- name: rspec-2.14.1 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 2.14.1 + morph: chef/rspec-2.14.1.morph + build-depends: + - rspec-core-2.14.8 + - rspec-expectations-2.14.5 + - rspec-mocks-2.14.6 +- name: rspec_junit_formatter-0.1.6 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 0.1.6 + morph: chef/rspec_junit_formatter-0.1.6.morph + build-depends: + - rspec-2.14.1 + - rspec-core-2.14.8 + - builder-3.2.2 +- name: ruby-shadow-2.3.4 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 2.3.4 + morph: chef/ruby-shadow-2.3.4.morph + build-depends: [] +- name: simplecov-html-0.8.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 0.8.0 + morph: chef/simplecov-html-0.8.0.morph + build-depends: [] +- name: simplecov-0.9.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 0.9.0 + morph: chef/simplecov-0.9.0.morph + build-depends: + - multi_json-1.10.1 + - simplecov-html-0.8.0 + - docile-1.1.5 +- name: yard-0.8.7.4 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 0.8.7.4 + morph: chef/yard-0.8.7.4.morph + build-depends: [] +- name: bundler-1.6.3 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: 1.6.3 + morph: chef/bundler-1.6.3.morph + build-depends: [] diff --git a/chef/coderay-1.1.0.morph b/chef/coderay-1.1.0.morph new file mode 100644 index 00000000..427f7eaf --- /dev/null +++ b/chef/coderay-1.1.0.morph @@ -0,0 +1,15 @@ +--- +name: coderay-1.1.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: coderay-1.1.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies coderay-1.1.0 diff --git a/chef/diff-lcs-1.2.5.morph b/chef/diff-lcs-1.2.5.morph new file mode 100644 index 00000000..e0c4471c --- /dev/null +++ b/chef/diff-lcs-1.2.5.morph @@ -0,0 +1,15 @@ +--- +name: diff-lcs-1.2.5 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: diff-lcs-1.2.5-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies diff-lcs-1.2.5 diff --git a/chef/docile-1.1.5.morph b/chef/docile-1.1.5.morph new file mode 100644 index 00000000..ea81b709 --- /dev/null +++ b/chef/docile-1.1.5.morph @@ -0,0 +1,15 @@ +--- +name: docile-1.1.5 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: docile-1.1.5-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies docile-1.1.5 diff --git a/chef/erubis-2.7.0.morph b/chef/erubis-2.7.0.morph new file mode 100644 index 00000000..42ac59da --- /dev/null +++ b/chef/erubis-2.7.0.morph @@ -0,0 +1,15 @@ +--- +name: erubis-2.7.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: erubis-2.7.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies erubis-2.7.0 diff --git a/chef/ffi-1.9.3.morph b/chef/ffi-1.9.3.morph new file mode 100644 index 00000000..f244a5b7 --- /dev/null +++ b/chef/ffi-1.9.3.morph @@ -0,0 +1,15 @@ +--- +name: ffi-1.9.3 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: ffi-1.9.3-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies ffi-1.9.3 diff --git a/chef/ffi-yajl-1.0.1.morph b/chef/ffi-yajl-1.0.1.morph new file mode 100644 index 00000000..daf5f37c --- /dev/null +++ b/chef/ffi-yajl-1.0.1.morph @@ -0,0 +1,15 @@ +--- +name: ffi-yajl-1.0.1 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: ffi-yajl-1.0.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies ffi-yajl-1.0.1 diff --git a/chef/hashie-2.1.2.morph b/chef/hashie-2.1.2.morph new file mode 100644 index 00000000..4a8ffcdf --- /dev/null +++ b/chef/hashie-2.1.2.morph @@ -0,0 +1,15 @@ +--- +name: hashie-2.1.2 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: hashie-2.1.2-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies hashie-2.1.2 diff --git a/chef/highline-1.6.21.morph b/chef/highline-1.6.21.morph new file mode 100644 index 00000000..be308e67 --- /dev/null +++ b/chef/highline-1.6.21.morph @@ -0,0 +1,15 @@ +--- +name: highline-1.6.21 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: highline-1.6.21-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies highline-1.6.21 diff --git a/chef/i18n-0.6.11.morph b/chef/i18n-0.6.11.morph new file mode 100644 index 00000000..721aeebb --- /dev/null +++ b/chef/i18n-0.6.11.morph @@ -0,0 +1,15 @@ +--- +name: i18n-0.6.11 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: i18n-0.6.11-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies i18n-0.6.11 diff --git a/chef/ipaddress-0.8.0.morph b/chef/ipaddress-0.8.0.morph new file mode 100644 index 00000000..02f5bd07 --- /dev/null +++ b/chef/ipaddress-0.8.0.morph @@ -0,0 +1,15 @@ +--- +name: ipaddress-0.8.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: ipaddress-0.8.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies ipaddress-0.8.0 diff --git a/chef/json-1.8.1.morph b/chef/json-1.8.1.morph new file mode 100644 index 00000000..ecb13bcb --- /dev/null +++ b/chef/json-1.8.1.morph @@ -0,0 +1,15 @@ +--- +name: json-1.8.1 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: json-1.8.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies json-1.8.1 diff --git a/chef/libyajl2-1.0.1.morph b/chef/libyajl2-1.0.1.morph new file mode 100644 index 00000000..7491ca36 --- /dev/null +++ b/chef/libyajl2-1.0.1.morph @@ -0,0 +1,15 @@ +--- +name: libyajl2-1.0.1 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: libyajl2-1.0.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies libyajl2-1.0.1 diff --git a/chef/method_source-0.8.2.morph b/chef/method_source-0.8.2.morph new file mode 100644 index 00000000..515cbbd7 --- /dev/null +++ b/chef/method_source-0.8.2.morph @@ -0,0 +1,15 @@ +--- +name: method_source-0.8.2 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: method_source-0.8.2-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies method_source-0.8.2 diff --git a/chef/mime-types-1.25.1.morph b/chef/mime-types-1.25.1.morph new file mode 100644 index 00000000..83a728c8 --- /dev/null +++ b/chef/mime-types-1.25.1.morph @@ -0,0 +1,15 @@ +--- +name: mime-types-1.25.1 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: mime-types-1.25.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies mime-types-1.25.1 diff --git a/chef/mixlib-authentication-1.3.0.morph b/chef/mixlib-authentication-1.3.0.morph new file mode 100644 index 00000000..da7182a4 --- /dev/null +++ b/chef/mixlib-authentication-1.3.0.morph @@ -0,0 +1,15 @@ +--- +name: mixlib-authentication-1.3.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: mixlib-authentication-1.3.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies mixlib-authentication-1.3.0 diff --git a/chef/mixlib-cli-1.5.0.morph b/chef/mixlib-cli-1.5.0.morph new file mode 100644 index 00000000..37cafb39 --- /dev/null +++ b/chef/mixlib-cli-1.5.0.morph @@ -0,0 +1,15 @@ +--- +name: mixlib-cli-1.5.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: mixlib-cli-1.5.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies mixlib-cli-1.5.0 diff --git a/chef/mixlib-config-2.1.0.morph b/chef/mixlib-config-2.1.0.morph new file mode 100644 index 00000000..36cc092a --- /dev/null +++ b/chef/mixlib-config-2.1.0.morph @@ -0,0 +1,15 @@ +--- +name: mixlib-config-2.1.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: mixlib-config-2.1.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies mixlib-config-2.1.0 diff --git a/chef/mixlib-log-1.6.0.morph b/chef/mixlib-log-1.6.0.morph new file mode 100644 index 00000000..bcc4ab3d --- /dev/null +++ b/chef/mixlib-log-1.6.0.morph @@ -0,0 +1,15 @@ +--- +name: mixlib-log-1.6.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: mixlib-log-1.6.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies mixlib-log-1.6.0 diff --git a/chef/mixlib-shellout-1.4.0.morph b/chef/mixlib-shellout-1.4.0.morph new file mode 100644 index 00000000..af5c398c --- /dev/null +++ b/chef/mixlib-shellout-1.4.0.morph @@ -0,0 +1,15 @@ +--- +name: mixlib-shellout-1.4.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: mixlib-shellout-1.4.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies mixlib-shellout-1.4.0 diff --git a/chef/multi_json-1.10.1.morph b/chef/multi_json-1.10.1.morph new file mode 100644 index 00000000..6e0cd41d --- /dev/null +++ b/chef/multi_json-1.10.1.morph @@ -0,0 +1,15 @@ +--- +name: multi_json-1.10.1 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: multi_json-1.10.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies multi_json-1.10.1 diff --git a/chef/net-ssh-2.9.1.morph b/chef/net-ssh-2.9.1.morph new file mode 100644 index 00000000..f31c7c7a --- /dev/null +++ b/chef/net-ssh-2.9.1.morph @@ -0,0 +1,15 @@ +--- +name: net-ssh-2.9.1 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: net-ssh-2.9.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies net-ssh-2.9.1 diff --git a/chef/net-ssh-gateway-1.2.0.morph b/chef/net-ssh-gateway-1.2.0.morph new file mode 100644 index 00000000..7ea468b9 --- /dev/null +++ b/chef/net-ssh-gateway-1.2.0.morph @@ -0,0 +1,15 @@ +--- +name: net-ssh-gateway-1.2.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: net-ssh-gateway-1.2.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies net-ssh-gateway-1.2.0 diff --git a/chef/net-ssh-multi-1.2.0.morph b/chef/net-ssh-multi-1.2.0.morph new file mode 100644 index 00000000..d22a258b --- /dev/null +++ b/chef/net-ssh-multi-1.2.0.morph @@ -0,0 +1,15 @@ +--- +name: net-ssh-multi-1.2.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: net-ssh-multi-1.2.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies net-ssh-multi-1.2.0 diff --git a/chef/ohai-7.2.0.rc.1.morph b/chef/ohai-7.2.0.rc.1.morph new file mode 100644 index 00000000..0fe796ae --- /dev/null +++ b/chef/ohai-7.2.0.rc.1.morph @@ -0,0 +1,15 @@ +--- +name: ohai-7.2.0.rc.1 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: ohai-7.2.0.rc.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies ohai-7.2.0.rc.1 diff --git a/chef/pry-0.10.0.morph b/chef/pry-0.10.0.morph new file mode 100644 index 00000000..aaba5756 --- /dev/null +++ b/chef/pry-0.10.0.morph @@ -0,0 +1,15 @@ +--- +name: pry-0.10.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: pry-0.10.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies pry-0.10.0 diff --git a/chef/rack-1.5.2.morph b/chef/rack-1.5.2.morph new file mode 100644 index 00000000..d6ab28c1 --- /dev/null +++ b/chef/rack-1.5.2.morph @@ -0,0 +1,15 @@ +--- +name: rack-1.5.2 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: rack-1.5.2-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies rack-1.5.2 diff --git a/chef/rake-10.1.1.morph b/chef/rake-10.1.1.morph new file mode 100644 index 00000000..9c536148 --- /dev/null +++ b/chef/rake-10.1.1.morph @@ -0,0 +1,15 @@ +--- +name: rake-10.1.1 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: rake-10.1.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies rake-10.1.1 diff --git a/chef/rspec-2.14.1.morph b/chef/rspec-2.14.1.morph new file mode 100644 index 00000000..fb3086fc --- /dev/null +++ b/chef/rspec-2.14.1.morph @@ -0,0 +1,15 @@ +--- +name: rspec-2.14.1 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: rspec-2.14.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies rspec-2.14.1 diff --git a/chef/rspec-core-2.14.8.morph b/chef/rspec-core-2.14.8.morph new file mode 100644 index 00000000..7b6b26f3 --- /dev/null +++ b/chef/rspec-core-2.14.8.morph @@ -0,0 +1,15 @@ +--- +name: rspec-core-2.14.8 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: rspec-core-2.14.8-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies rspec-core-2.14.8 diff --git a/chef/rspec-expectations-2.14.5.morph b/chef/rspec-expectations-2.14.5.morph new file mode 100644 index 00000000..79c148ff --- /dev/null +++ b/chef/rspec-expectations-2.14.5.morph @@ -0,0 +1,15 @@ +--- +name: rspec-expectations-2.14.5 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: rspec-expectations-2.14.5-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies rspec-expectations-2.14.5 diff --git a/chef/rspec-mocks-2.14.6.morph b/chef/rspec-mocks-2.14.6.morph new file mode 100644 index 00000000..e566a46c --- /dev/null +++ b/chef/rspec-mocks-2.14.6.morph @@ -0,0 +1,15 @@ +--- +name: rspec-mocks-2.14.6 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: rspec-mocks-2.14.6-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies rspec-mocks-2.14.6 diff --git a/chef/rspec_junit_formatter-0.1.6.morph b/chef/rspec_junit_formatter-0.1.6.morph new file mode 100644 index 00000000..73fbd0b2 --- /dev/null +++ b/chef/rspec_junit_formatter-0.1.6.morph @@ -0,0 +1,15 @@ +--- +name: rspec_junit_formatter-0.1.6 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: rspec_junit_formatter-0.1.6-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies rspec_junit_formatter-0.1.6 diff --git a/chef/ruby-shadow-2.3.4.morph b/chef/ruby-shadow-2.3.4.morph new file mode 100644 index 00000000..32c050b8 --- /dev/null +++ b/chef/ruby-shadow-2.3.4.morph @@ -0,0 +1,15 @@ +--- +name: ruby-shadow-2.3.4 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: ruby-shadow-2.3.4-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies ruby-shadow-2.3.4 diff --git a/chef/simplecov-0.9.0.morph b/chef/simplecov-0.9.0.morph new file mode 100644 index 00000000..52400572 --- /dev/null +++ b/chef/simplecov-0.9.0.morph @@ -0,0 +1,15 @@ +--- +name: simplecov-0.9.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: simplecov-0.9.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies simplecov-0.9.0 diff --git a/chef/simplecov-html-0.8.0.morph b/chef/simplecov-html-0.8.0.morph new file mode 100644 index 00000000..482da04a --- /dev/null +++ b/chef/simplecov-html-0.8.0.morph @@ -0,0 +1,15 @@ +--- +name: simplecov-html-0.8.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: simplecov-html-0.8.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies simplecov-html-0.8.0 diff --git a/chef/slop-3.6.0.morph b/chef/slop-3.6.0.morph new file mode 100644 index 00000000..1954c3fb --- /dev/null +++ b/chef/slop-3.6.0.morph @@ -0,0 +1,15 @@ +--- +name: slop-3.6.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: slop-3.6.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies slop-3.6.0 diff --git a/chef/systemu-2.6.4.morph b/chef/systemu-2.6.4.morph new file mode 100644 index 00000000..2564e33a --- /dev/null +++ b/chef/systemu-2.6.4.morph @@ -0,0 +1,15 @@ +--- +name: systemu-2.6.4 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: systemu-2.6.4-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies systemu-2.6.4 diff --git a/chef/wmi-lite-1.0.0.morph b/chef/wmi-lite-1.0.0.morph new file mode 100644 index 00000000..9be1ea23 --- /dev/null +++ b/chef/wmi-lite-1.0.0.morph @@ -0,0 +1,15 @@ +--- +name: wmi-lite-1.0.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: wmi-lite-1.0.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies wmi-lite-1.0.0 diff --git a/chef/yard-0.8.7.4.morph b/chef/yard-0.8.7.4.morph new file mode 100644 index 00000000..dcaf4bf3 --- /dev/null +++ b/chef/yard-0.8.7.4.morph @@ -0,0 +1,15 @@ +--- +name: yard-0.8.7.4 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +products: +- artifact: yard-0.8.7.4-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 'echo '':sources: [ "http://54.186.104.15/" ]'' >> ~/.gemrc' +- mkdir -p "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" +- gem install --install-dir "$DESTDIR/$PREFIX/lib/ruby/gems/2.0.0" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies yard-0.8.7.4 -- cgit v1.2.1