From 91e454f3fa22f86b8c08612cb7a79118103328dd Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Thu, 3 Jul 2014 14:07:05 +0000 Subject: Initial chef system Installs chef by running 'gem' at deploy time. Sorry. --- chef-system-x86_32-container.morph | 16 +++++++ install-chef.configure | 86 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 102 insertions(+) create mode 100644 chef-system-x86_32-container.morph create mode 100644 install-chef.configure diff --git a/chef-system-x86_32-container.morph b/chef-system-x86_32-container.morph new file mode 100644 index 00000000..a6f37dbf --- /dev/null +++ b/chef-system-x86_32-container.morph @@ -0,0 +1,16 @@ +name: chef-system-x86_32-container +kind: system +arch: x86_32 +description: Minimal chef system suitable for running in a container +configuration-extensions: +- set-hostname +- simple-network +- nfsboot +- install-files +- busybox-init +- install-chef +strata: +- morph: build-essential + artifacts: + - build-essential-minimal +- morph: ruby diff --git a/install-chef.configure b/install-chef.configure new file mode 100644 index 00000000..ce3806de --- /dev/null +++ b/install-chef.configure @@ -0,0 +1,86 @@ +# Install chef and all dependencies as Gems + +# Created with: ./stratum-from-rubygems.py create-install-script --log-level=debug --log=/dev/stderr chef + +# Source: chef +# Depends on: mixlib-cli, mixlib-authentication, mixlib-config, erubis, mixlib-log, net-ssh-multi, mime-types, highline, mixlib-shellout, ohai, pry, rest-client, yajl-ruby, diff-lcs, chef-zero, net-ssh +gem install --ignore-dependencies chef + +# Source: chef-zero +# Depends on: hashie, rack, mixlib-log +gem install --ignore-dependencies chef-zero + +# Source: coderay +gem install --ignore-dependencies coderay + +# Source: diff-lcs +gem install --ignore-dependencies diff-lcs + +# Source: erubis +gem install --ignore-dependencies erubis + +# Source: hashie +gem install --ignore-dependencies hashie + +# Source: highline +gem install --ignore-dependencies highline + +# Source: ipaddress +gem install --ignore-dependencies ipaddress + +# Source: method_source +gem install --ignore-dependencies method_source + +# Source: mime-types +gem install --ignore-dependencies mime-types + +# Source: mixlib-authentication +# Depends on: mixlib-log +gem install --ignore-dependencies mixlib-authentication + +# Source: mixlib-cli +gem install --ignore-dependencies mixlib-cli + +# Source: mixlib-config +gem install --ignore-dependencies mixlib-config + +# Source: mixlib-log +gem install --ignore-dependencies mixlib-log + +# Source: mixlib-shellout +gem install --ignore-dependencies mixlib-shellout + +# Source: net-sftp-gateway +# Depends on: net-ssh +gem install --ignore-dependencies net-ssh-gateway + +# Source: net-ssh +gem install --ignore-dependencies net-ssh + +# Source: net-ssh-multi +# Depends on: net-ssh-gateway, net-ssh +gem install --ignore-dependencies net-ssh-multi + +# Source: ohai +# Depends on: mixlib-cli, mixlib-shellout, mime-types, systemu, mixlib-log, mixlib-config, ipaddress, yajl-ruby +gem install --ignore-dependencies ohai + +# Source: pry +# Depends on: slop, method_source, coderay +gem install --ignore-dependencies pry + +# Source: rack +gem install --ignore-dependencies rack + +# Source: rest-client +# Depends on: mime-types +gem install --ignore-dependencies rest-client + +# Source: slop +gem install --ignore-dependencies slop + +# Source: systemu +gem install --ignore-dependencies systemu + +# Source: yajl-ruby +gem install --ignore-dependencies yajl-ruby -- cgit v1.2.1 From 6dfbff4984ff1e27f0eb3fd1d08a4c461816013a Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 4 Jul 2014 08:28:37 +0000 Subject: Add Chef hack attempt #1 This uses a local repo with all the required Gems committed in advance and a script that runs 'gem install' as the build tool. --- chef-system-x86_32-container.morph | 2 +- chef.morph | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 chef.morph diff --git a/chef-system-x86_32-container.morph b/chef-system-x86_32-container.morph index a6f37dbf..04ba0f24 100644 --- a/chef-system-x86_32-container.morph +++ b/chef-system-x86_32-container.morph @@ -8,9 +8,9 @@ configuration-extensions: - nfsboot - install-files - busybox-init -- install-chef strata: - morph: build-essential artifacts: - build-essential-minimal - morph: ruby +- morph: chef diff --git a/chef.morph b/chef.morph new file mode 100644 index 00000000..cd76fbc2 --- /dev/null +++ b/chef.morph @@ -0,0 +1,12 @@ +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: [] -- cgit v1.2.1 From 1ba36d409eddd40f0a84962bcd4a226685ed8a98 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 4 Jul 2014 09:40:22 +0000 Subject: chef-system: OpenSSL libraries are needed at runtime. --- chef-system-x86_32-container.morph | 3 +++ core.morph | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/chef-system-x86_32-container.morph b/chef-system-x86_32-container.morph index 04ba0f24..6335de97 100644 --- a/chef-system-x86_32-container.morph +++ b/chef-system-x86_32-container.morph @@ -12,5 +12,8 @@ strata: - morph: build-essential artifacts: - build-essential-minimal +- morph: core + artifacts: + - core-runtime - morph: ruby - morph: chef diff --git a/core.morph b/core.morph index 16d874a7..9234886d 100644 --- a/core.morph +++ b/core.morph @@ -4,6 +4,10 @@ description: Core components of a Baserock base system that are build tools requ for the BSP and Foundation strata, but a step above build-essential build-depends: - morph: build-essential +products: +- artifact: core-runtime + include: + - openssl-new-libs chunks: - name: sqlite3 repo: upstream:sqlite3 -- cgit v1.2.1 From 9bfa7c7eef9ad5d878e777de13f7b2b94d068c15 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 4 Jul 2014 09:55:31 +0000 Subject: Remove fluff --- install-chef.configure | 86 -------------------------------------------------- 1 file changed, 86 deletions(-) delete mode 100644 install-chef.configure diff --git a/install-chef.configure b/install-chef.configure deleted file mode 100644 index ce3806de..00000000 --- a/install-chef.configure +++ /dev/null @@ -1,86 +0,0 @@ -# Install chef and all dependencies as Gems - -# Created with: ./stratum-from-rubygems.py create-install-script --log-level=debug --log=/dev/stderr chef - -# Source: chef -# Depends on: mixlib-cli, mixlib-authentication, mixlib-config, erubis, mixlib-log, net-ssh-multi, mime-types, highline, mixlib-shellout, ohai, pry, rest-client, yajl-ruby, diff-lcs, chef-zero, net-ssh -gem install --ignore-dependencies chef - -# Source: chef-zero -# Depends on: hashie, rack, mixlib-log -gem install --ignore-dependencies chef-zero - -# Source: coderay -gem install --ignore-dependencies coderay - -# Source: diff-lcs -gem install --ignore-dependencies diff-lcs - -# Source: erubis -gem install --ignore-dependencies erubis - -# Source: hashie -gem install --ignore-dependencies hashie - -# Source: highline -gem install --ignore-dependencies highline - -# Source: ipaddress -gem install --ignore-dependencies ipaddress - -# Source: method_source -gem install --ignore-dependencies method_source - -# Source: mime-types -gem install --ignore-dependencies mime-types - -# Source: mixlib-authentication -# Depends on: mixlib-log -gem install --ignore-dependencies mixlib-authentication - -# Source: mixlib-cli -gem install --ignore-dependencies mixlib-cli - -# Source: mixlib-config -gem install --ignore-dependencies mixlib-config - -# Source: mixlib-log -gem install --ignore-dependencies mixlib-log - -# Source: mixlib-shellout -gem install --ignore-dependencies mixlib-shellout - -# Source: net-sftp-gateway -# Depends on: net-ssh -gem install --ignore-dependencies net-ssh-gateway - -# Source: net-ssh -gem install --ignore-dependencies net-ssh - -# Source: net-ssh-multi -# Depends on: net-ssh-gateway, net-ssh -gem install --ignore-dependencies net-ssh-multi - -# Source: ohai -# Depends on: mixlib-cli, mixlib-shellout, mime-types, systemu, mixlib-log, mixlib-config, ipaddress, yajl-ruby -gem install --ignore-dependencies ohai - -# Source: pry -# Depends on: slop, method_source, coderay -gem install --ignore-dependencies pry - -# Source: rack -gem install --ignore-dependencies rack - -# Source: rest-client -# Depends on: mime-types -gem install --ignore-dependencies rest-client - -# Source: slop -gem install --ignore-dependencies slop - -# Source: systemu -gem install --ignore-dependencies systemu - -# Source: yajl-ruby -gem install --ignore-dependencies yajl-ruby -- cgit v1.2.1 From 6dc89c090c4c316e0ac4a2dc71f3955c9e32e900 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 4 Jul 2014 10:29:04 +0000 Subject: No need to redefine core-runtime --- core.morph | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core.morph b/core.morph index 9234886d..16d874a7 100644 --- a/core.morph +++ b/core.morph @@ -4,10 +4,6 @@ description: Core components of a Baserock base system that are build tools requ for the BSP and Foundation strata, but a step above build-essential build-depends: - morph: build-essential -products: -- artifact: core-runtime - include: - - openssl-new-libs chunks: - name: sqlite3 repo: upstream:sqlite3 -- cgit v1.2.1 From 4898e0d90d15690d04de2ec4cf616d77745bac8d Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 4 Jul 2014 10:37:06 +0000 Subject: Don't include core-runtime, try pulling in just the OpenSSL libs The chef system is about 667MB with core-runtime included which seems excessive for a container! --- chef-system-x86_32-container.morph | 2 +- core.morph | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/chef-system-x86_32-container.morph b/chef-system-x86_32-container.morph index 6335de97..be3f2948 100644 --- a/chef-system-x86_32-container.morph +++ b/chef-system-x86_32-container.morph @@ -14,6 +14,6 @@ strata: - build-essential-minimal - morph: core artifacts: - - core-runtime + - core-openssl - morph: ruby - morph: chef diff --git a/core.morph b/core.morph index 16d874a7..051ce0b4 100644 --- a/core.morph +++ b/core.morph @@ -4,6 +4,10 @@ description: Core components of a Baserock base system that are build tools requ for the BSP and Foundation strata, but a step above build-essential build-depends: - morph: build-essential +products: +- artifact: core-openssl + include: + - openssl-new-libs chunks: - name: sqlite3 repo: upstream:sqlite3 -- cgit v1.2.1 From 2ecfb54531b6a722b9ed44b87ffb1ad16f1773c8 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 4 Jul 2014 16:21:47 +0000 Subject: Strip out ruby documentation from the chef system It's about 70MB, and not needed in a container. --- chef-system-x86_32-container.morph | 4 ++++ ruby.morph | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/chef-system-x86_32-container.morph b/chef-system-x86_32-container.morph index be3f2948..40a41e90 100644 --- a/chef-system-x86_32-container.morph +++ b/chef-system-x86_32-container.morph @@ -16,4 +16,8 @@ strata: artifacts: - core-openssl - morph: ruby + artifacts: + - ruby-runtime - morph: chef + artifacts: + - chef-runtime diff --git a/ruby.morph b/ruby.morph index c9eccd89..c60a0848 100644 --- a/ruby.morph +++ b/ruby.morph @@ -16,14 +16,14 @@ chunks: build-depends: [] - name: ruby repo: upstream:ruby - ref: 05604af5a6da635b8bca51269db8b433972e82c0 - unpetrify-ref: baserock/ruby_2_0_0 + ref: ct-mcr-1/sam/chef + unpetrify-ref: 05604af5a6da635b8bca51269db8b433972e82c0 build-depends: - ruby-1.8 - libyaml - name: bundler repo: upstream:bundler - ref: 0708fbe62617a63300e1cc3b9869cc1280c57ef6 - unpetrify_ref: baserock/v1.6.2 + ref: 0708fbe62617a63300e1cc3b9869cc1280c57ef6 build-depends: - ruby + unpetrify_ref: baserock/v1.6.2 -- cgit v1.2.1 From 0a3be548f9b817c8258d3e8bc029a3fee66a568d Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 4 Jul 2014 16:25:03 +0000 Subject: REmove GCC binaries in the chef system manually Nasty hack, but saves 200MB or about 50% of the total size of the system. --- chef-demo.morph | 13 +++++++++++++ chef-system-x86_32-container.morph | 1 + remove-gcc.configure | 8 ++++++++ 3 files changed, 22 insertions(+) create mode 100644 chef-demo.morph create mode 100644 remove-gcc.configure diff --git a/chef-demo.morph b/chef-demo.morph new file mode 100644 index 00000000..606fad5e --- /dev/null +++ b/chef-demo.morph @@ -0,0 +1,13 @@ +name: chef-demo +kind: cluster +description: | + Deploy a demo Chef system. +systems: +- morph: chef-system-x86_32-container + deploy: + chef-demo: + type: tar + location: chef-demo.tar + # If you put 'yes' without the quotes yaml converts it to True. Thanks yaml. + REMOVE_GCC: "yes" + INIT_SYSTEM: busybox diff --git a/chef-system-x86_32-container.morph b/chef-system-x86_32-container.morph index 40a41e90..4abc7d64 100644 --- a/chef-system-x86_32-container.morph +++ b/chef-system-x86_32-container.morph @@ -8,6 +8,7 @@ configuration-extensions: - nfsboot - install-files - busybox-init +- remove-gcc strata: - morph: build-essential artifacts: diff --git a/remove-gcc.configure b/remove-gcc.configure new file mode 100644 index 00000000..67474af1 --- /dev/null +++ b/remove-gcc.configure @@ -0,0 +1,8 @@ +#!/bin/sh +# This configure extension is a total hack to work around the fact that +# the GCC chunk isn't split properly. I'll leave fixing that to Richard +# Maw for now. This removes about 200MB from the resulting system. + +if [ "$REMOVE_GCC" = "yes" ]; then + rm -Rf "$1"/usr/libexec/gcc/ +fi -- cgit v1.2.1 From 524562e30d6dca5ed458308b772b503b7c7b37fc 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 From 1255d733d6bf901121bc3dc594177f834aaee7b6 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 25 Jul 2014 16:11:08 +0100 Subject: Use a ref that actually exists in the dummy repo --- chef/chef.morph | 88 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/chef/chef.morph b/chef/chef.morph index a6e7601f..0a23bb2a 100644 --- a/chef/chef.morph +++ b/chef/chef.morph @@ -10,28 +10,28 @@ chunks: 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 + ref: master 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 + ref: master 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 + ref: master 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 + ref: master morph: chef/activesupport-3.2.19.morph build-depends: - i18n-0.6.11 @@ -40,42 +40,42 @@ chunks: 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 + ref: master 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 + ref: master 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 + ref: master 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 + ref: master 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 + ref: master 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' + ref: master morph: chef/chef-zero-2.2.morph build-depends: - mixlib-log-1.6.0 @@ -86,35 +86,35 @@ chunks: 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 + ref: master 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 + ref: master 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 + ref: master 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 + ref: master 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 + ref: master morph: chef/ffi-yajl-1.0.1.morph build-depends: - ffi-1.9.3 @@ -123,14 +123,14 @@ chunks: 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 + ref: master 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 + ref: master morph: chef/mixlib-authentication-1.3.0.morph build-depends: - mixlib-log-1.6.0 @@ -138,35 +138,35 @@ chunks: 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 + ref: master 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 + ref: master 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 + ref: master 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 + ref: master 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 + ref: master morph: chef/net-ssh-gateway-1.2.0.morph build-depends: - net-ssh-2.9.1 @@ -174,7 +174,7 @@ chunks: 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 + ref: master morph: chef/net-ssh-multi-1.2.0.morph build-depends: - net-ssh-2.9.1 @@ -183,35 +183,35 @@ chunks: 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 + ref: master 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 + ref: master 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 + ref: master 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 + ref: master 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 + ref: master morph: chef/ohai-7.2.0.rc.1.morph build-depends: - mime-types-1.25.1 @@ -228,28 +228,28 @@ chunks: 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 + ref: master 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 + ref: master 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 + ref: master 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 + ref: master morph: chef/pry-0.10.0.morph build-depends: - coderay-1.1.0 @@ -259,7 +259,7 @@ chunks: 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 + ref: master morph: chef/chef-12.0.0.alpha.0.morph build-depends: - mixlib-config-2.1.0 @@ -280,21 +280,21 @@ chunks: 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 + ref: master 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 + ref: master 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 + ref: master morph: chef/rspec-expectations-2.14.5.morph build-depends: - diff-lcs-1.2.5 @@ -302,14 +302,14 @@ chunks: 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 + ref: master 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 + ref: master morph: chef/rspec-2.14.1.morph build-depends: - rspec-core-2.14.8 @@ -319,7 +319,7 @@ chunks: 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 + ref: master morph: chef/rspec_junit_formatter-0.1.6.morph build-depends: - rspec-2.14.1 @@ -329,21 +329,21 @@ chunks: 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 + ref: master 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 + ref: master 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 + ref: master morph: chef/simplecov-0.9.0.morph build-depends: - multi_json-1.10.1 @@ -353,13 +353,13 @@ chunks: 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 + ref: master 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 + ref: master morph: chef/bundler-1.6.3.morph build-depends: [] -- cgit v1.2.1 From 71bac7757cd8929743442324566be59af6d5aab5 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 1 Aug 2014 11:20:18 +0000 Subject: ADD NAME FIELD BECAUSE THE STRATUM IS IGNORED OTHERWISE --- chef-system-x86_32-container.morph | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chef-system-x86_32-container.morph b/chef-system-x86_32-container.morph index 8d0d1443..310470ae 100644 --- a/chef-system-x86_32-container.morph +++ b/chef-system-x86_32-container.morph @@ -19,6 +19,7 @@ strata: - morph: ruby artifacts: - ruby-runtime -- morph: chef/chef.morph +- name: chef + morph: chef/chef.morph artifacts: - chef-runtime -- cgit v1.2.1 From 62aa16922cd68ad023f4c645a8ba361ab546b41d Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 1 Aug 2014 11:23:26 +0000 Subject: Update chef morphs for new build-mode: rubygem approach --- chef/activesupport-3.2.19.morph | 4 ++-- chef/builder-3.2.2.morph | 4 ++-- chef/bundler-1.6.3.morph | 4 ++-- chef/chef-12.0.0.alpha.0.morph | 4 ++-- chef/chef-zero-2.2.morph | 4 ++-- chef/chef.morph | 44 ++++++++++++++++++++++++++++++++++ chef/coderay-1.1.0.morph | 4 ++-- chef/diff-lcs-1.2.5.morph | 4 ++-- chef/docile-1.1.5.morph | 4 ++-- chef/erubis-2.7.0.morph | 4 ++-- chef/ffi-1.9.3.morph | 4 ++-- chef/ffi-yajl-1.0.1.morph | 4 ++-- chef/hashie-2.1.2.morph | 4 ++-- chef/highline-1.6.21.morph | 4 ++-- chef/i18n-0.6.11.morph | 4 ++-- chef/ipaddress-0.8.0.morph | 4 ++-- chef/json-1.8.1.morph | 4 ++-- chef/libyajl2-1.0.1.morph | 4 ++-- chef/method_source-0.8.2.morph | 4 ++-- chef/mime-types-1.25.1.morph | 4 ++-- chef/mixlib-authentication-1.3.0.morph | 4 ++-- chef/mixlib-cli-1.5.0.morph | 4 ++-- chef/mixlib-config-2.1.0.morph | 4 ++-- chef/mixlib-log-1.6.0.morph | 4 ++-- chef/mixlib-shellout-1.4.0.morph | 4 ++-- chef/multi_json-1.10.1.morph | 4 ++-- chef/net-ssh-2.9.1.morph | 4 ++-- chef/net-ssh-gateway-1.2.0.morph | 4 ++-- chef/net-ssh-multi-1.2.0.morph | 4 ++-- chef/ohai-7.2.0.rc.1.morph | 4 ++-- chef/pry-0.10.0.morph | 4 ++-- chef/rack-1.5.2.morph | 4 ++-- chef/rake-10.1.1.morph | 4 ++-- chef/rspec-2.14.1.morph | 4 ++-- chef/rspec-core-2.14.8.morph | 4 ++-- chef/rspec-expectations-2.14.5.morph | 4 ++-- chef/rspec-mocks-2.14.6.morph | 4 ++-- chef/rspec_junit_formatter-0.1.6.morph | 4 ++-- chef/ruby-shadow-2.3.4.morph | 4 ++-- chef/simplecov-0.9.0.morph | 4 ++-- chef/simplecov-html-0.8.0.morph | 4 ++-- chef/slop-3.6.0.morph | 4 ++-- chef/systemu-2.6.4.morph | 4 ++-- chef/wmi-lite-1.0.0.morph | 4 ++-- chef/yard-0.8.7.4.morph | 4 ++-- 45 files changed, 132 insertions(+), 88 deletions(-) diff --git a/chef/activesupport-3.2.19.morph b/chef/activesupport-3.2.19.morph index 21ea0308..5ef52441 100644 --- a/chef/activesupport-3.2.19.morph +++ b/chef/activesupport-3.2.19.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/activesupport-3.2.19.gem 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 + --ignore-dependencies --local activesupport-3.2.19.gem diff --git a/chef/builder-3.2.2.morph b/chef/builder-3.2.2.morph index 824ed380..ab9bfbad 100644 --- a/chef/builder-3.2.2.morph +++ b/chef/builder-3.2.2.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/builder-3.2.2.gem 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 + --ignore-dependencies --local builder-3.2.2.gem diff --git a/chef/bundler-1.6.3.morph b/chef/bundler-1.6.3.morph index 3b622657..8812db22 100644 --- a/chef/bundler-1.6.3.morph +++ b/chef/bundler-1.6.3.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/bundler-1.6.3.gem 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 + --ignore-dependencies --local bundler-1.6.3.gem diff --git a/chef/chef-12.0.0.alpha.0.morph b/chef/chef-12.0.0.alpha.0.morph index 65b56ce5..0f9989ac 100644 --- a/chef/chef-12.0.0.alpha.0.morph +++ b/chef/chef-12.0.0.alpha.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/chef-12.0.0.alpha.0.gem 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 + --ignore-dependencies --local chef-12.0.0.alpha.0.gem diff --git a/chef/chef-zero-2.2.morph b/chef/chef-zero-2.2.morph index 26d2f586..6d553532 100644 --- a/chef/chef-zero-2.2.morph +++ b/chef/chef-zero-2.2.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/chef-zero-2.2.gem 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 + --ignore-dependencies --local chef-zero-2.2.gem diff --git a/chef/chef.morph b/chef/chef.morph index 0a23bb2a..113e090e 100644 --- a/chef/chef.morph +++ b/chef/chef.morph @@ -13,6 +13,7 @@ chunks: ref: master morph: chef/rake-10.1.1.morph build-depends: [] + build-mode: rubygem - name: i18n-0.6.11 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -20,6 +21,7 @@ chunks: ref: master morph: chef/i18n-0.6.11.morph build-depends: [] + build-mode: rubygem - name: multi_json-1.10.1 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -27,6 +29,7 @@ chunks: ref: master morph: chef/multi_json-1.10.1.morph build-depends: [] + build-mode: rubygem - name: activesupport-3.2.19 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -36,6 +39,7 @@ chunks: build-depends: - i18n-0.6.11 - multi_json-1.10.1 + build-mode: rubygem - name: builder-3.2.2 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -43,6 +47,7 @@ chunks: ref: master morph: chef/builder-3.2.2.morph build-depends: [] + build-mode: rubygem - name: hashie-2.1.2 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -50,6 +55,7 @@ chunks: ref: master morph: chef/hashie-2.1.2.morph build-depends: [] + build-mode: rubygem - name: json-1.8.1 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -57,6 +63,7 @@ chunks: ref: master morph: chef/json-1.8.1.morph build-depends: [] + build-mode: rubygem - name: mixlib-log-1.6.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -64,6 +71,7 @@ chunks: ref: master morph: chef/mixlib-log-1.6.0.morph build-depends: [] + build-mode: rubygem - name: rack-1.5.2 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -71,6 +79,7 @@ chunks: ref: master morph: chef/rack-1.5.2.morph build-depends: [] + build-mode: rubygem - name: chef-zero-2.2 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -82,6 +91,7 @@ chunks: - hashie-2.1.2 - json-1.8.1 - rack-1.5.2 + build-mode: rubygem - name: diff-lcs-1.2.5 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -89,6 +99,7 @@ chunks: ref: master morph: chef/diff-lcs-1.2.5.morph build-depends: [] + build-mode: rubygem - name: erubis-2.7.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -96,6 +107,7 @@ chunks: ref: master morph: chef/erubis-2.7.0.morph build-depends: [] + build-mode: rubygem - name: ffi-1.9.3 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -103,6 +115,7 @@ chunks: ref: master morph: chef/ffi-1.9.3.morph build-depends: [] + build-mode: rubygem - name: libyajl2-1.0.1 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -110,6 +123,7 @@ chunks: ref: master morph: chef/libyajl2-1.0.1.morph build-depends: [] + build-mode: rubygem - name: ffi-yajl-1.0.1 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -119,6 +133,7 @@ chunks: build-depends: - ffi-1.9.3 - libyajl2-1.0.1 + build-mode: rubygem - name: highline-1.6.21 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -126,6 +141,7 @@ chunks: ref: master morph: chef/highline-1.6.21.morph build-depends: [] + build-mode: rubygem - name: mixlib-authentication-1.3.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -134,6 +150,7 @@ chunks: morph: chef/mixlib-authentication-1.3.0.morph build-depends: - mixlib-log-1.6.0 + build-mode: rubygem - name: mixlib-cli-1.5.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -141,6 +158,7 @@ chunks: ref: master morph: chef/mixlib-cli-1.5.0.morph build-depends: [] + build-mode: rubygem - name: mixlib-config-2.1.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -148,6 +166,7 @@ chunks: ref: master morph: chef/mixlib-config-2.1.0.morph build-depends: [] + build-mode: rubygem - name: mixlib-shellout-1.4.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -155,6 +174,7 @@ chunks: ref: master morph: chef/mixlib-shellout-1.4.0.morph build-depends: [] + build-mode: rubygem - name: net-ssh-2.9.1 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -162,6 +182,7 @@ chunks: ref: master morph: chef/net-ssh-2.9.1.morph build-depends: [] + build-mode: rubygem - 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. @@ -170,6 +191,7 @@ chunks: morph: chef/net-ssh-gateway-1.2.0.morph build-depends: - net-ssh-2.9.1 + build-mode: rubygem - 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. @@ -179,6 +201,7 @@ chunks: build-depends: - net-ssh-2.9.1 - net-ssh-gateway-1.2.0 + build-mode: rubygem - name: ipaddress-0.8.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -186,6 +209,7 @@ chunks: ref: master morph: chef/ipaddress-0.8.0.morph build-depends: [] + build-mode: rubygem - name: mime-types-1.25.1 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -193,6 +217,7 @@ chunks: ref: master morph: chef/mime-types-1.25.1.morph build-depends: [] + build-mode: rubygem - name: systemu-2.6.4 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -200,6 +225,7 @@ chunks: ref: master morph: chef/systemu-2.6.4.morph build-depends: [] + build-mode: rubygem - name: wmi-lite-1.0.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -207,6 +233,7 @@ chunks: ref: master morph: chef/wmi-lite-1.0.0.morph build-depends: [] + build-mode: rubygem - 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. @@ -224,6 +251,7 @@ chunks: - ipaddress-0.8.0 - wmi-lite-1.0.0 - ffi-1.9.3 + build-mode: rubygem - name: coderay-1.1.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -231,6 +259,7 @@ chunks: ref: master morph: chef/coderay-1.1.0.morph build-depends: [] + build-mode: rubygem - name: method_source-0.8.2 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -238,6 +267,7 @@ chunks: ref: master morph: chef/method_source-0.8.2.morph build-depends: [] + build-mode: rubygem - name: slop-3.6.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -245,6 +275,7 @@ chunks: ref: master morph: chef/slop-3.6.0.morph build-depends: [] + build-mode: rubygem - name: pry-0.10.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -255,6 +286,7 @@ chunks: - coderay-1.1.0 - slop-3.6.0 - method_source-0.8.2 + build-mode: rubygem - 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. @@ -276,6 +308,7 @@ chunks: - diff-lcs-1.2.5 - chef-zero-2.2 - pry-0.10.0 + build-mode: rubygem - name: docile-1.1.5 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -283,6 +316,7 @@ chunks: ref: master morph: chef/docile-1.1.5.morph build-depends: [] + build-mode: rubygem - name: rspec-core-2.14.8 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -290,6 +324,7 @@ chunks: ref: master morph: chef/rspec-core-2.14.8.morph build-depends: [] + build-mode: rubygem - name: rspec-expectations-2.14.5 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -298,6 +333,7 @@ chunks: morph: chef/rspec-expectations-2.14.5.morph build-depends: - diff-lcs-1.2.5 + build-mode: rubygem - name: rspec-mocks-2.14.6 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -305,6 +341,7 @@ chunks: ref: master morph: chef/rspec-mocks-2.14.6.morph build-depends: [] + build-mode: rubygem - name: rspec-2.14.1 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -315,6 +352,7 @@ chunks: - rspec-core-2.14.8 - rspec-expectations-2.14.5 - rspec-mocks-2.14.6 + build-mode: rubygem - 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. @@ -325,6 +363,7 @@ chunks: - rspec-2.14.1 - rspec-core-2.14.8 - builder-3.2.2 + build-mode: rubygem - name: ruby-shadow-2.3.4 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -332,6 +371,7 @@ chunks: ref: master morph: chef/ruby-shadow-2.3.4.morph build-depends: [] + build-mode: rubygem - name: simplecov-html-0.8.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -339,6 +379,7 @@ chunks: ref: master morph: chef/simplecov-html-0.8.0.morph build-depends: [] + build-mode: rubygem - name: simplecov-0.9.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -349,6 +390,7 @@ chunks: - multi_json-1.10.1 - simplecov-html-0.8.0 - docile-1.1.5 + build-mode: rubygem - name: yard-0.8.7.4 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -356,6 +398,7 @@ chunks: ref: master morph: chef/yard-0.8.7.4.morph build-depends: [] + build-mode: rubygem - name: bundler-1.6.3 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -363,3 +406,4 @@ chunks: ref: master morph: chef/bundler-1.6.3.morph build-depends: [] + build-mode: rubygem diff --git a/chef/coderay-1.1.0.morph b/chef/coderay-1.1.0.morph index 427f7eaf..f03ddd06 100644 --- a/chef/coderay-1.1.0.morph +++ b/chef/coderay-1.1.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/coderay-1.1.0.gem 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 + --ignore-dependencies --local coderay-1.1.0.gem diff --git a/chef/diff-lcs-1.2.5.morph b/chef/diff-lcs-1.2.5.morph index e0c4471c..0589cb10 100644 --- a/chef/diff-lcs-1.2.5.morph +++ b/chef/diff-lcs-1.2.5.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/diff-lcs-1.2.5.gem 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 + --ignore-dependencies --local diff-lcs-1.2.5.gem diff --git a/chef/docile-1.1.5.morph b/chef/docile-1.1.5.morph index ea81b709..8126627d 100644 --- a/chef/docile-1.1.5.morph +++ b/chef/docile-1.1.5.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/docile-1.1.5.gem 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 + --ignore-dependencies --local docile-1.1.5.gem diff --git a/chef/erubis-2.7.0.morph b/chef/erubis-2.7.0.morph index 42ac59da..fb0776cb 100644 --- a/chef/erubis-2.7.0.morph +++ b/chef/erubis-2.7.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/erubis-2.7.0.gem 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 + --ignore-dependencies --local erubis-2.7.0.gem diff --git a/chef/ffi-1.9.3.morph b/chef/ffi-1.9.3.morph index f244a5b7..85bd9a57 100644 --- a/chef/ffi-1.9.3.morph +++ b/chef/ffi-1.9.3.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/ffi-1.9.3.gem 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 + --ignore-dependencies --local ffi-1.9.3.gem diff --git a/chef/ffi-yajl-1.0.1.morph b/chef/ffi-yajl-1.0.1.morph index daf5f37c..30fc003d 100644 --- a/chef/ffi-yajl-1.0.1.morph +++ b/chef/ffi-yajl-1.0.1.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/ffi-yajl-1.0.1.gem 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 + --ignore-dependencies --local ffi-yajl-1.0.1.gem diff --git a/chef/hashie-2.1.2.morph b/chef/hashie-2.1.2.morph index 4a8ffcdf..4c3ed158 100644 --- a/chef/hashie-2.1.2.morph +++ b/chef/hashie-2.1.2.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/hashie-2.1.2.gem 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 + --ignore-dependencies --local hashie-2.1.2.gem diff --git a/chef/highline-1.6.21.morph b/chef/highline-1.6.21.morph index be308e67..b6d9aa24 100644 --- a/chef/highline-1.6.21.morph +++ b/chef/highline-1.6.21.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/highline-1.6.21.gem 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 + --ignore-dependencies --local highline-1.6.21.gem diff --git a/chef/i18n-0.6.11.morph b/chef/i18n-0.6.11.morph index 721aeebb..0cc3a448 100644 --- a/chef/i18n-0.6.11.morph +++ b/chef/i18n-0.6.11.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/i18n-0.6.11.gem 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 + --ignore-dependencies --local i18n-0.6.11.gem diff --git a/chef/ipaddress-0.8.0.morph b/chef/ipaddress-0.8.0.morph index 02f5bd07..0081c82a 100644 --- a/chef/ipaddress-0.8.0.morph +++ b/chef/ipaddress-0.8.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/ipaddress-0.8.0.gem 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 + --ignore-dependencies --local ipaddress-0.8.0.gem diff --git a/chef/json-1.8.1.morph b/chef/json-1.8.1.morph index ecb13bcb..d2095010 100644 --- a/chef/json-1.8.1.morph +++ b/chef/json-1.8.1.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/json-1.8.1.gem 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 + --ignore-dependencies --local json-1.8.1.gem diff --git a/chef/libyajl2-1.0.1.morph b/chef/libyajl2-1.0.1.morph index 7491ca36..29101ba1 100644 --- a/chef/libyajl2-1.0.1.morph +++ b/chef/libyajl2-1.0.1.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/libyajl2-1.0.1.gem 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 + --ignore-dependencies --local libyajl2-1.0.1.gem diff --git a/chef/method_source-0.8.2.morph b/chef/method_source-0.8.2.morph index 515cbbd7..ff854e81 100644 --- a/chef/method_source-0.8.2.morph +++ b/chef/method_source-0.8.2.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/method_source-0.8.2.gem 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 + --ignore-dependencies --local method_source-0.8.2.gem diff --git a/chef/mime-types-1.25.1.morph b/chef/mime-types-1.25.1.morph index 83a728c8..7695cf2a 100644 --- a/chef/mime-types-1.25.1.morph +++ b/chef/mime-types-1.25.1.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/mime-types-1.25.1.gem 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 + --ignore-dependencies --local mime-types-1.25.1.gem diff --git a/chef/mixlib-authentication-1.3.0.morph b/chef/mixlib-authentication-1.3.0.morph index da7182a4..b878ad5f 100644 --- a/chef/mixlib-authentication-1.3.0.morph +++ b/chef/mixlib-authentication-1.3.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/mixlib-authentication-1.3.0.gem 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 + --ignore-dependencies --local mixlib-authentication-1.3.0.gem diff --git a/chef/mixlib-cli-1.5.0.morph b/chef/mixlib-cli-1.5.0.morph index 37cafb39..82785c67 100644 --- a/chef/mixlib-cli-1.5.0.morph +++ b/chef/mixlib-cli-1.5.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/mixlib-cli-1.5.0.gem 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 + --ignore-dependencies --local mixlib-cli-1.5.0.gem diff --git a/chef/mixlib-config-2.1.0.morph b/chef/mixlib-config-2.1.0.morph index 36cc092a..25e5fc37 100644 --- a/chef/mixlib-config-2.1.0.morph +++ b/chef/mixlib-config-2.1.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/mixlib-config-2.1.0.gem 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 + --ignore-dependencies --local mixlib-config-2.1.0.gem diff --git a/chef/mixlib-log-1.6.0.morph b/chef/mixlib-log-1.6.0.morph index bcc4ab3d..164eaf29 100644 --- a/chef/mixlib-log-1.6.0.morph +++ b/chef/mixlib-log-1.6.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/mixlib-log-1.6.0.gem 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 + --ignore-dependencies --local mixlib-log-1.6.0.gem diff --git a/chef/mixlib-shellout-1.4.0.morph b/chef/mixlib-shellout-1.4.0.morph index af5c398c..13648802 100644 --- a/chef/mixlib-shellout-1.4.0.morph +++ b/chef/mixlib-shellout-1.4.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/mixlib-shellout-1.4.0.gem 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 + --ignore-dependencies --local mixlib-shellout-1.4.0.gem diff --git a/chef/multi_json-1.10.1.morph b/chef/multi_json-1.10.1.morph index 6e0cd41d..bf663546 100644 --- a/chef/multi_json-1.10.1.morph +++ b/chef/multi_json-1.10.1.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/multi_json-1.10.1.gem 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 + --ignore-dependencies --local multi_json-1.10.1.gem diff --git a/chef/net-ssh-2.9.1.morph b/chef/net-ssh-2.9.1.morph index f31c7c7a..d15e6959 100644 --- a/chef/net-ssh-2.9.1.morph +++ b/chef/net-ssh-2.9.1.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/net-ssh-2.9.1.gem 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 + --ignore-dependencies --local net-ssh-2.9.1.gem diff --git a/chef/net-ssh-gateway-1.2.0.morph b/chef/net-ssh-gateway-1.2.0.morph index 7ea468b9..db1c93e4 100644 --- a/chef/net-ssh-gateway-1.2.0.morph +++ b/chef/net-ssh-gateway-1.2.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/net-ssh-gateway-1.2.0.gem 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 + --ignore-dependencies --local net-ssh-gateway-1.2.0.gem diff --git a/chef/net-ssh-multi-1.2.0.morph b/chef/net-ssh-multi-1.2.0.morph index d22a258b..9094bc75 100644 --- a/chef/net-ssh-multi-1.2.0.morph +++ b/chef/net-ssh-multi-1.2.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/net-ssh-multi-1.2.0.gem 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 + --ignore-dependencies --local net-ssh-multi-1.2.0.gem diff --git a/chef/ohai-7.2.0.rc.1.morph b/chef/ohai-7.2.0.rc.1.morph index 0fe796ae..44a434f2 100644 --- a/chef/ohai-7.2.0.rc.1.morph +++ b/chef/ohai-7.2.0.rc.1.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/ohai-7.2.0.rc.1.gem 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 + --ignore-dependencies --local ohai-7.2.0.rc.1.gem diff --git a/chef/pry-0.10.0.morph b/chef/pry-0.10.0.morph index aaba5756..ac192556 100644 --- a/chef/pry-0.10.0.morph +++ b/chef/pry-0.10.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/pry-0.10.0.gem 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 + --ignore-dependencies --local pry-0.10.0.gem diff --git a/chef/rack-1.5.2.morph b/chef/rack-1.5.2.morph index d6ab28c1..0fb8a857 100644 --- a/chef/rack-1.5.2.morph +++ b/chef/rack-1.5.2.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/rack-1.5.2.gem 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 + --ignore-dependencies --local rack-1.5.2.gem diff --git a/chef/rake-10.1.1.morph b/chef/rake-10.1.1.morph index 9c536148..b092c81a 100644 --- a/chef/rake-10.1.1.morph +++ b/chef/rake-10.1.1.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/rake-10.1.1.gem 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 + --ignore-dependencies --local rake-10.1.1.gem diff --git a/chef/rspec-2.14.1.morph b/chef/rspec-2.14.1.morph index fb3086fc..c3e65b2f 100644 --- a/chef/rspec-2.14.1.morph +++ b/chef/rspec-2.14.1.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/rspec-2.14.1.gem 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 + --ignore-dependencies --local rspec-2.14.1.gem diff --git a/chef/rspec-core-2.14.8.morph b/chef/rspec-core-2.14.8.morph index 7b6b26f3..fc12ed1b 100644 --- a/chef/rspec-core-2.14.8.morph +++ b/chef/rspec-core-2.14.8.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/rspec-core-2.14.8.gem 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 + --ignore-dependencies --local rspec-core-2.14.8.gem diff --git a/chef/rspec-expectations-2.14.5.morph b/chef/rspec-expectations-2.14.5.morph index 79c148ff..d72cf35f 100644 --- a/chef/rspec-expectations-2.14.5.morph +++ b/chef/rspec-expectations-2.14.5.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/rspec-expectations-2.14.5.gem 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 + --ignore-dependencies --local rspec-expectations-2.14.5.gem diff --git a/chef/rspec-mocks-2.14.6.morph b/chef/rspec-mocks-2.14.6.morph index e566a46c..7abf211e 100644 --- a/chef/rspec-mocks-2.14.6.morph +++ b/chef/rspec-mocks-2.14.6.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/rspec-mocks-2.14.6.gem 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 + --ignore-dependencies --local rspec-mocks-2.14.6.gem diff --git a/chef/rspec_junit_formatter-0.1.6.morph b/chef/rspec_junit_formatter-0.1.6.morph index 73fbd0b2..7fa3d936 100644 --- a/chef/rspec_junit_formatter-0.1.6.morph +++ b/chef/rspec_junit_formatter-0.1.6.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/rspec_junit_formatter-0.1.6.gem 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 + --ignore-dependencies --local rspec_junit_formatter-0.1.6.gem diff --git a/chef/ruby-shadow-2.3.4.morph b/chef/ruby-shadow-2.3.4.morph index 32c050b8..3fabef58 100644 --- a/chef/ruby-shadow-2.3.4.morph +++ b/chef/ruby-shadow-2.3.4.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/ruby-shadow-2.3.4.gem 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 + --ignore-dependencies --local ruby-shadow-2.3.4.gem diff --git a/chef/simplecov-0.9.0.morph b/chef/simplecov-0.9.0.morph index 52400572..94a49707 100644 --- a/chef/simplecov-0.9.0.morph +++ b/chef/simplecov-0.9.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/simplecov-0.9.0.gem 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 + --ignore-dependencies --local simplecov-0.9.0.gem diff --git a/chef/simplecov-html-0.8.0.morph b/chef/simplecov-html-0.8.0.morph index 482da04a..837b0742 100644 --- a/chef/simplecov-html-0.8.0.morph +++ b/chef/simplecov-html-0.8.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/simplecov-html-0.8.0.gem 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 + --ignore-dependencies --local simplecov-html-0.8.0.gem diff --git a/chef/slop-3.6.0.morph b/chef/slop-3.6.0.morph index 1954c3fb..e416ec69 100644 --- a/chef/slop-3.6.0.morph +++ b/chef/slop-3.6.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/slop-3.6.0.gem 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 + --ignore-dependencies --local slop-3.6.0.gem diff --git a/chef/systemu-2.6.4.morph b/chef/systemu-2.6.4.morph index 2564e33a..ed642aa2 100644 --- a/chef/systemu-2.6.4.morph +++ b/chef/systemu-2.6.4.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/systemu-2.6.4.gem 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 + --ignore-dependencies --local systemu-2.6.4.gem diff --git a/chef/wmi-lite-1.0.0.morph b/chef/wmi-lite-1.0.0.morph index 9be1ea23..f8e6cda7 100644 --- a/chef/wmi-lite-1.0.0.morph +++ b/chef/wmi-lite-1.0.0.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/wmi-lite-1.0.0.gem 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 + --ignore-dependencies --local wmi-lite-1.0.0.gem diff --git a/chef/yard-0.8.7.4.morph b/chef/yard-0.8.7.4.morph index dcaf4bf3..831ba60d 100644 --- a/chef/yard-0.8.7.4.morph +++ b/chef/yard-0.8.7.4.morph @@ -4,12 +4,12 @@ kind: chunk description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. build-system: manual +gem-url: http://rubygems.org/downloads/yard-0.8.7.4.gem 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 + --ignore-dependencies --local yard-0.8.7.4.gem -- cgit v1.2.1 From 5f04473f095664f1251b172f6b0abeffb5377008 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 1 Aug 2014 13:05:50 +0000 Subject: Include foundation in chef-system This increases the size to around 250MB, but it's required for libffi to work, and much other stuff no doubt. --- chef-system-x86_32-container.morph | 3 +++ 1 file changed, 3 insertions(+) diff --git a/chef-system-x86_32-container.morph b/chef-system-x86_32-container.morph index 310470ae..084d8f5a 100644 --- a/chef-system-x86_32-container.morph +++ b/chef-system-x86_32-container.morph @@ -16,6 +16,9 @@ strata: - morph: core artifacts: - core-openssl +- morph: foundation + artifacts: + - foundation-runtime - morph: ruby artifacts: - ruby-runtime -- cgit v1.2.1 From d94ffe65aa306858f1e951e0fb2f28d26160394f Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 1 Aug 2014 13:25:57 +0000 Subject: Update chef morphs to be generated from stable 11.8.4.ohai7.0 tag Using chef-12.0.0.alpha.0 results in the following error: # chef-client /usr/lib/ruby/2.0.0/rubygems/dependency.rb:296:in `to_specs': Could not find 'ohai' (~> 7.2) - did find: [ohai-7.2.0.rc.1] (Gem::LoadError) --- chef/chef-11.8.4.ohai7.0.morph | 15 +++ chef/chef-12.0.0.alpha.0.morph | 15 --- chef/chef-zero-1.7.3.morph | 15 +++ chef/chef-zero-2.2.morph | 15 --- chef/chef.morph | 198 +++++++++++++++++++++------------ chef/ffi-1.9.3.morph | 15 --- chef/ffi-yajl-1.0.1.morph | 15 --- chef/hpricot-0.8.6.morph | 15 +++ chef/json-1.7.7.morph | 15 +++ chef/json-1.8.1.morph | 15 --- chef/libyajl2-1.0.1.morph | 15 --- chef/moneta-0.6.0.morph | 15 +++ chef/mustache-0.99.6.morph | 15 +++ chef/net-ssh-multi-1.1.morph | 15 +++ chef/net-ssh-multi-1.2.0.morph | 15 --- chef/ohai-7.0.0.rc.0.morph | 15 +++ chef/ohai-7.2.0.rc.1.morph | 15 --- chef/puma-1.6.3.morph | 15 +++ chef/rake-10.1.1.morph | 15 --- chef/rake-10.3.2.morph | 15 +++ chef/rdiscount-2.1.7.1.morph | 15 +++ chef/rdoc-3.12.2.morph | 15 +++ chef/rest-client-1.6.8.morph | 15 +++ chef/ronn-0.7.3.morph | 15 +++ chef/rspec-2.13.0.morph | 15 +++ chef/rspec-2.14.1.morph | 15 --- chef/rspec-core-2.13.1.morph | 15 +++ chef/rspec-core-2.14.8.morph | 15 --- chef/rspec-expectations-2.13.0.morph | 15 +++ chef/rspec-expectations-2.14.5.morph | 15 --- chef/rspec-mocks-2.13.1.morph | 15 +++ chef/rspec-mocks-2.14.6.morph | 15 --- chef/rspec_junit_formatter-0.1.6.morph | 15 --- chef/rspec_junit_formatter-0.2.0.morph | 15 +++ chef/sdoc-0.3.20.morph | 15 +++ chef/systemu-2.5.2.morph | 15 +++ chef/systemu-2.6.4.morph | 15 --- chef/wmi-lite-1.0.0.morph | 15 --- chef/yajl-ruby-1.2.1.morph | 15 +++ 39 files changed, 458 insertions(+), 310 deletions(-) create mode 100644 chef/chef-11.8.4.ohai7.0.morph delete mode 100644 chef/chef-12.0.0.alpha.0.morph create mode 100644 chef/chef-zero-1.7.3.morph delete mode 100644 chef/chef-zero-2.2.morph delete mode 100644 chef/ffi-1.9.3.morph delete mode 100644 chef/ffi-yajl-1.0.1.morph create mode 100644 chef/hpricot-0.8.6.morph create mode 100644 chef/json-1.7.7.morph delete mode 100644 chef/json-1.8.1.morph delete mode 100644 chef/libyajl2-1.0.1.morph create mode 100644 chef/moneta-0.6.0.morph create mode 100644 chef/mustache-0.99.6.morph create mode 100644 chef/net-ssh-multi-1.1.morph delete mode 100644 chef/net-ssh-multi-1.2.0.morph create mode 100644 chef/ohai-7.0.0.rc.0.morph delete mode 100644 chef/ohai-7.2.0.rc.1.morph create mode 100644 chef/puma-1.6.3.morph delete mode 100644 chef/rake-10.1.1.morph create mode 100644 chef/rake-10.3.2.morph create mode 100644 chef/rdiscount-2.1.7.1.morph create mode 100644 chef/rdoc-3.12.2.morph create mode 100644 chef/rest-client-1.6.8.morph create mode 100644 chef/ronn-0.7.3.morph create mode 100644 chef/rspec-2.13.0.morph delete mode 100644 chef/rspec-2.14.1.morph create mode 100644 chef/rspec-core-2.13.1.morph delete mode 100644 chef/rspec-core-2.14.8.morph create mode 100644 chef/rspec-expectations-2.13.0.morph delete mode 100644 chef/rspec-expectations-2.14.5.morph create mode 100644 chef/rspec-mocks-2.13.1.morph delete mode 100644 chef/rspec-mocks-2.14.6.morph delete mode 100644 chef/rspec_junit_formatter-0.1.6.morph create mode 100644 chef/rspec_junit_formatter-0.2.0.morph create mode 100644 chef/sdoc-0.3.20.morph create mode 100644 chef/systemu-2.5.2.morph delete mode 100644 chef/systemu-2.6.4.morph delete mode 100644 chef/wmi-lite-1.0.0.morph create mode 100644 chef/yajl-ruby-1.2.1.morph diff --git a/chef/chef-11.8.4.ohai7.0.morph b/chef/chef-11.8.4.ohai7.0.morph new file mode 100644 index 00000000..55d1ed0a --- /dev/null +++ b/chef/chef-11.8.4.ohai7.0.morph @@ -0,0 +1,15 @@ +--- +name: chef-11.8.4.ohai7.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/chef-11.8.4.ohai7.0.gem +products: +- artifact: chef-11.8.4.ohai7.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local chef-11.8.4.ohai7.0.gem diff --git a/chef/chef-12.0.0.alpha.0.morph b/chef/chef-12.0.0.alpha.0.morph deleted file mode 100644 index 0f9989ac..00000000 --- a/chef/chef-12.0.0.alpha.0.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/chef-12.0.0.alpha.0.gem -products: -- artifact: chef-12.0.0.alpha.0-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local chef-12.0.0.alpha.0.gem diff --git a/chef/chef-zero-1.7.3.morph b/chef/chef-zero-1.7.3.morph new file mode 100644 index 00000000..37f831dc --- /dev/null +++ b/chef/chef-zero-1.7.3.morph @@ -0,0 +1,15 @@ +--- +name: chef-zero-1.7.3 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/chef-zero-1.7.3.gem +products: +- artifact: chef-zero-1.7.3-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local chef-zero-1.7.3.gem diff --git a/chef/chef-zero-2.2.morph b/chef/chef-zero-2.2.morph deleted file mode 100644 index 6d553532..00000000 --- a/chef/chef-zero-2.2.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/chef-zero-2.2.gem -products: -- artifact: chef-zero-2.2-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local chef-zero-2.2.gem diff --git a/chef/chef.morph b/chef/chef.morph index 113e090e..5c3543db 100644 --- a/chef/chef.morph +++ b/chef/chef.morph @@ -6,12 +6,12 @@ description: Automatically generated by import-ruby. This is a prototype of a me build-depends: - morph: ruby chunks: -- name: rake-10.1.1 +- name: rake-10.3.2 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. repo: baserock:baserock/definitions ref: master - morph: chef/rake-10.1.1.morph + morph: chef/rake-10.3.2.morph build-depends: [] build-mode: rubygem - name: i18n-0.6.11 @@ -56,12 +56,12 @@ chunks: morph: chef/hashie-2.1.2.morph build-depends: [] build-mode: rubygem -- name: json-1.8.1 +- name: json-1.7.7 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. repo: baserock:baserock/definitions ref: master - morph: chef/json-1.8.1.morph + morph: chef/json-1.7.7.morph build-depends: [] build-mode: rubygem - name: mixlib-log-1.6.0 @@ -72,6 +72,14 @@ chunks: morph: chef/mixlib-log-1.6.0.morph build-depends: [] build-mode: rubygem +- name: moneta-0.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: master + morph: chef/moneta-0.6.0.morph + build-depends: [] + build-mode: rubygem - name: rack-1.5.2 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. @@ -80,16 +88,17 @@ chunks: morph: chef/rack-1.5.2.morph build-depends: [] build-mode: rubygem -- name: chef-zero-2.2 +- name: chef-zero-1.7.3 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. repo: baserock:baserock/definitions ref: master - morph: chef/chef-zero-2.2.morph + morph: chef/chef-zero-1.7.3.morph build-depends: - mixlib-log-1.6.0 - hashie-2.1.2 - - json-1.8.1 + - moneta-0.6.0 + - json-1.7.7 - rack-1.5.2 build-mode: rubygem - name: diff-lcs-1.2.5 @@ -108,38 +117,20 @@ chunks: morph: chef/erubis-2.7.0.morph build-depends: [] build-mode: rubygem -- 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: master - morph: chef/ffi-1.9.3.morph - build-depends: [] - build-mode: rubygem -- name: 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: master - morph: chef/libyajl2-1.0.1.morph + morph: chef/highline-1.6.21.morph build-depends: [] build-mode: rubygem -- 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: master - morph: chef/ffi-yajl-1.0.1.morph - build-depends: - - ffi-1.9.3 - - libyajl2-1.0.1 - build-mode: rubygem -- name: highline-1.6.21 +- 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: master - morph: chef/highline-1.6.21.morph + morph: chef/mime-types-1.25.1.morph build-depends: [] build-mode: rubygem - name: mixlib-authentication-1.3.0 @@ -192,12 +183,12 @@ chunks: build-depends: - net-ssh-2.9.1 build-mode: rubygem -- name: net-ssh-multi-1.2.0 +- name: net-ssh-multi-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: master - morph: chef/net-ssh-multi-1.2.0.morph + morph: chef/net-ssh-multi-1.1.morph build-depends: - net-ssh-2.9.1 - net-ssh-gateway-1.2.0 @@ -210,47 +201,37 @@ chunks: morph: chef/ipaddress-0.8.0.morph build-depends: [] build-mode: rubygem -- 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: master - morph: chef/mime-types-1.25.1.morph - build-depends: [] - build-mode: rubygem -- name: systemu-2.6.4 +- name: systemu-2.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: master - morph: chef/systemu-2.6.4.morph + morph: chef/systemu-2.5.2.morph build-depends: [] build-mode: rubygem -- name: wmi-lite-1.0.0 +- name: yajl-ruby-1.2.1 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. repo: baserock:baserock/definitions ref: master - morph: chef/wmi-lite-1.0.0.morph + morph: chef/yajl-ruby-1.2.1.morph build-depends: [] build-mode: rubygem -- name: ohai-7.2.0.rc.1 +- name: ohai-7.0.0.rc.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. repo: baserock:baserock/definitions ref: master - morph: chef/ohai-7.2.0.rc.1.morph + morph: chef/ohai-7.0.0.rc.0.morph build-depends: - mime-types-1.25.1 - - systemu-2.6.4 - - ffi-yajl-1.0.1 + - systemu-2.5.2 + - yajl-ruby-1.2.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 build-mode: rubygem - name: coderay-1.1.0 description: Automatically generated by import-ruby. This is a prototype of a method @@ -287,26 +268,58 @@ chunks: - slop-3.6.0 - method_source-0.8.2 build-mode: rubygem -- name: chef-12.0.0.alpha.0 +- name: puma-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: master - morph: chef/chef-12.0.0.alpha.0.morph + morph: chef/puma-1.6.3.morph + build-depends: + - rack-1.5.2 + build-mode: rubygem +- name: rdoc-3.12.2 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: master + morph: chef/rdoc-3.12.2.morph + build-depends: + - json-1.7.7 + build-mode: rubygem +- name: rest-client-1.6.8 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: master + morph: chef/rest-client-1.6.8.morph + build-depends: + - mime-types-1.25.1 + - rdoc-3.12.2 + build-mode: rubygem +- name: chef-11.8.4.ohai7.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: master + morph: chef/chef-11.8.4.ohai7.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 + - ohai-7.0.0.rc.0 + - rest-client-1.6.8 + - mime-types-1.25.1 + - json-1.7.7 + - yajl-ruby-1.2.1 - net-ssh-2.9.1 - - net-ssh-multi-1.2.0 + - net-ssh-multi-1.1 - highline-1.6.21 - erubis-2.7.0 - diff-lcs-1.2.5 - - chef-zero-2.2 + - chef-zero-1.7.3 + - puma-1.6.3 - pry-0.10.0 build-mode: rubygem - name: docile-1.1.5 @@ -317,51 +330,86 @@ chunks: morph: chef/docile-1.1.5.morph build-depends: [] build-mode: rubygem -- name: rspec-core-2.14.8 +- name: hpricot-0.8.6 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. repo: baserock:baserock/definitions ref: master - morph: chef/rspec-core-2.14.8.morph + morph: chef/hpricot-0.8.6.morph build-depends: [] build-mode: rubygem -- name: rspec-expectations-2.14.5 +- name: mustache-0.99.6 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. repo: baserock:baserock/definitions ref: master - morph: chef/rspec-expectations-2.14.5.morph + morph: chef/mustache-0.99.6.morph + build-depends: [] + build-mode: rubygem +- name: rdiscount-2.1.7.1 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: master + morph: chef/rdiscount-2.1.7.1.morph + build-depends: [] + build-mode: rubygem +- name: ronn-0.7.3 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: master + morph: chef/ronn-0.7.3.morph + build-depends: + - hpricot-0.8.6 + - rdiscount-2.1.7.1 + - mustache-0.99.6 + build-mode: rubygem +- name: rspec-core-2.13.1 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: master + morph: chef/rspec-core-2.13.1.morph + build-depends: [] + build-mode: rubygem +- name: rspec-expectations-2.13.0 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: master + morph: chef/rspec-expectations-2.13.0.morph build-depends: - diff-lcs-1.2.5 build-mode: rubygem -- name: rspec-mocks-2.14.6 +- name: rspec-mocks-2.13.1 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. repo: baserock:baserock/definitions ref: master - morph: chef/rspec-mocks-2.14.6.morph + morph: chef/rspec-mocks-2.13.1.morph build-depends: [] build-mode: rubygem -- name: rspec-2.14.1 +- name: rspec-2.13.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. repo: baserock:baserock/definitions ref: master - morph: chef/rspec-2.14.1.morph + morph: chef/rspec-2.13.0.morph build-depends: - - rspec-core-2.14.8 - - rspec-expectations-2.14.5 - - rspec-mocks-2.14.6 + - rspec-core-2.13.1 + - rspec-expectations-2.13.0 + - rspec-mocks-2.13.1 build-mode: rubygem -- name: rspec_junit_formatter-0.1.6 +- name: rspec_junit_formatter-0.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: master - morph: chef/rspec_junit_formatter-0.1.6.morph + morph: chef/rspec_junit_formatter-0.2.0.morph build-depends: - - rspec-2.14.1 - - rspec-core-2.14.8 + - rspec-2.13.0 + - rspec-core-2.13.1 - builder-3.2.2 build-mode: rubygem - name: ruby-shadow-2.3.4 @@ -372,6 +420,16 @@ chunks: morph: chef/ruby-shadow-2.3.4.morph build-depends: [] build-mode: rubygem +- name: sdoc-0.3.20 + description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. + repo: baserock:baserock/definitions + ref: master + morph: chef/sdoc-0.3.20.morph + build-depends: + - rdoc-3.12.2 + - json-1.7.7 + build-mode: rubygem - name: simplecov-html-0.8.0 description: Automatically generated by import-ruby. This is a prototype of a method for integrating RubyGems into Baserock. diff --git a/chef/ffi-1.9.3.morph b/chef/ffi-1.9.3.morph deleted file mode 100644 index 85bd9a57..00000000 --- a/chef/ffi-1.9.3.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/ffi-1.9.3.gem -products: -- artifact: ffi-1.9.3-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local ffi-1.9.3.gem diff --git a/chef/ffi-yajl-1.0.1.morph b/chef/ffi-yajl-1.0.1.morph deleted file mode 100644 index 30fc003d..00000000 --- a/chef/ffi-yajl-1.0.1.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/ffi-yajl-1.0.1.gem -products: -- artifact: ffi-yajl-1.0.1-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local ffi-yajl-1.0.1.gem diff --git a/chef/hpricot-0.8.6.morph b/chef/hpricot-0.8.6.morph new file mode 100644 index 00000000..fdd0d4ce --- /dev/null +++ b/chef/hpricot-0.8.6.morph @@ -0,0 +1,15 @@ +--- +name: hpricot-0.8.6 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/hpricot-0.8.6.gem +products: +- artifact: hpricot-0.8.6-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local hpricot-0.8.6.gem diff --git a/chef/json-1.7.7.morph b/chef/json-1.7.7.morph new file mode 100644 index 00000000..1fd1addf --- /dev/null +++ b/chef/json-1.7.7.morph @@ -0,0 +1,15 @@ +--- +name: json-1.7.7 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/json-1.7.7.gem +products: +- artifact: json-1.7.7-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local json-1.7.7.gem diff --git a/chef/json-1.8.1.morph b/chef/json-1.8.1.morph deleted file mode 100644 index d2095010..00000000 --- a/chef/json-1.8.1.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/json-1.8.1.gem -products: -- artifact: json-1.8.1-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local json-1.8.1.gem diff --git a/chef/libyajl2-1.0.1.morph b/chef/libyajl2-1.0.1.morph deleted file mode 100644 index 29101ba1..00000000 --- a/chef/libyajl2-1.0.1.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/libyajl2-1.0.1.gem -products: -- artifact: libyajl2-1.0.1-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local libyajl2-1.0.1.gem diff --git a/chef/moneta-0.6.0.morph b/chef/moneta-0.6.0.morph new file mode 100644 index 00000000..0faecf68 --- /dev/null +++ b/chef/moneta-0.6.0.morph @@ -0,0 +1,15 @@ +--- +name: moneta-0.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 +gem-url: http://rubygems.org/downloads/moneta-0.6.0.gem +products: +- artifact: moneta-0.6.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local moneta-0.6.0.gem diff --git a/chef/mustache-0.99.6.morph b/chef/mustache-0.99.6.morph new file mode 100644 index 00000000..bc8e227d --- /dev/null +++ b/chef/mustache-0.99.6.morph @@ -0,0 +1,15 @@ +--- +name: mustache-0.99.6 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/mustache-0.99.6.gem +products: +- artifact: mustache-0.99.6-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local mustache-0.99.6.gem diff --git a/chef/net-ssh-multi-1.1.morph b/chef/net-ssh-multi-1.1.morph new file mode 100644 index 00000000..f01ec022 --- /dev/null +++ b/chef/net-ssh-multi-1.1.morph @@ -0,0 +1,15 @@ +--- +name: net-ssh-multi-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 +gem-url: http://rubygems.org/downloads/net-ssh-multi-1.1.gem +products: +- artifact: net-ssh-multi-1.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local net-ssh-multi-1.1.gem diff --git a/chef/net-ssh-multi-1.2.0.morph b/chef/net-ssh-multi-1.2.0.morph deleted file mode 100644 index 9094bc75..00000000 --- a/chef/net-ssh-multi-1.2.0.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/net-ssh-multi-1.2.0.gem -products: -- artifact: net-ssh-multi-1.2.0-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local net-ssh-multi-1.2.0.gem diff --git a/chef/ohai-7.0.0.rc.0.morph b/chef/ohai-7.0.0.rc.0.morph new file mode 100644 index 00000000..7d2ecce4 --- /dev/null +++ b/chef/ohai-7.0.0.rc.0.morph @@ -0,0 +1,15 @@ +--- +name: ohai-7.0.0.rc.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/ohai-7.0.0.rc.0.gem +products: +- artifact: ohai-7.0.0.rc.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local ohai-7.0.0.rc.0.gem diff --git a/chef/ohai-7.2.0.rc.1.morph b/chef/ohai-7.2.0.rc.1.morph deleted file mode 100644 index 44a434f2..00000000 --- a/chef/ohai-7.2.0.rc.1.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/ohai-7.2.0.rc.1.gem -products: -- artifact: ohai-7.2.0.rc.1-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local ohai-7.2.0.rc.1.gem diff --git a/chef/puma-1.6.3.morph b/chef/puma-1.6.3.morph new file mode 100644 index 00000000..d5ec4ab5 --- /dev/null +++ b/chef/puma-1.6.3.morph @@ -0,0 +1,15 @@ +--- +name: puma-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 +gem-url: http://rubygems.org/downloads/puma-1.6.3.gem +products: +- artifact: puma-1.6.3-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local puma-1.6.3.gem diff --git a/chef/rake-10.1.1.morph b/chef/rake-10.1.1.morph deleted file mode 100644 index b092c81a..00000000 --- a/chef/rake-10.1.1.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/rake-10.1.1.gem -products: -- artifact: rake-10.1.1-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local rake-10.1.1.gem diff --git a/chef/rake-10.3.2.morph b/chef/rake-10.3.2.morph new file mode 100644 index 00000000..c1b5b09e --- /dev/null +++ b/chef/rake-10.3.2.morph @@ -0,0 +1,15 @@ +--- +name: rake-10.3.2 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/rake-10.3.2.gem +products: +- artifact: rake-10.3.2-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local rake-10.3.2.gem diff --git a/chef/rdiscount-2.1.7.1.morph b/chef/rdiscount-2.1.7.1.morph new file mode 100644 index 00000000..70f43020 --- /dev/null +++ b/chef/rdiscount-2.1.7.1.morph @@ -0,0 +1,15 @@ +--- +name: rdiscount-2.1.7.1 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/rdiscount-2.1.7.1.gem +products: +- artifact: rdiscount-2.1.7.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local rdiscount-2.1.7.1.gem diff --git a/chef/rdoc-3.12.2.morph b/chef/rdoc-3.12.2.morph new file mode 100644 index 00000000..9dfba8fe --- /dev/null +++ b/chef/rdoc-3.12.2.morph @@ -0,0 +1,15 @@ +--- +name: rdoc-3.12.2 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/rdoc-3.12.2.gem +products: +- artifact: rdoc-3.12.2-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local rdoc-3.12.2.gem diff --git a/chef/rest-client-1.6.8.morph b/chef/rest-client-1.6.8.morph new file mode 100644 index 00000000..1d0dc755 --- /dev/null +++ b/chef/rest-client-1.6.8.morph @@ -0,0 +1,15 @@ +--- +name: rest-client-1.6.8 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/rest-client-1.6.8.gem +products: +- artifact: rest-client-1.6.8-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local rest-client-1.6.8.gem diff --git a/chef/ronn-0.7.3.morph b/chef/ronn-0.7.3.morph new file mode 100644 index 00000000..bb1a3793 --- /dev/null +++ b/chef/ronn-0.7.3.morph @@ -0,0 +1,15 @@ +--- +name: ronn-0.7.3 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/ronn-0.7.3.gem +products: +- artifact: ronn-0.7.3-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local ronn-0.7.3.gem diff --git a/chef/rspec-2.13.0.morph b/chef/rspec-2.13.0.morph new file mode 100644 index 00000000..e7bb4349 --- /dev/null +++ b/chef/rspec-2.13.0.morph @@ -0,0 +1,15 @@ +--- +name: rspec-2.13.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/rspec-2.13.0.gem +products: +- artifact: rspec-2.13.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local rspec-2.13.0.gem diff --git a/chef/rspec-2.14.1.morph b/chef/rspec-2.14.1.morph deleted file mode 100644 index c3e65b2f..00000000 --- a/chef/rspec-2.14.1.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/rspec-2.14.1.gem -products: -- artifact: rspec-2.14.1-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local rspec-2.14.1.gem diff --git a/chef/rspec-core-2.13.1.morph b/chef/rspec-core-2.13.1.morph new file mode 100644 index 00000000..9d705d3f --- /dev/null +++ b/chef/rspec-core-2.13.1.morph @@ -0,0 +1,15 @@ +--- +name: rspec-core-2.13.1 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/rspec-core-2.13.1.gem +products: +- artifact: rspec-core-2.13.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local rspec-core-2.13.1.gem diff --git a/chef/rspec-core-2.14.8.morph b/chef/rspec-core-2.14.8.morph deleted file mode 100644 index fc12ed1b..00000000 --- a/chef/rspec-core-2.14.8.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/rspec-core-2.14.8.gem -products: -- artifact: rspec-core-2.14.8-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local rspec-core-2.14.8.gem diff --git a/chef/rspec-expectations-2.13.0.morph b/chef/rspec-expectations-2.13.0.morph new file mode 100644 index 00000000..e805c82a --- /dev/null +++ b/chef/rspec-expectations-2.13.0.morph @@ -0,0 +1,15 @@ +--- +name: rspec-expectations-2.13.0 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/rspec-expectations-2.13.0.gem +products: +- artifact: rspec-expectations-2.13.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local rspec-expectations-2.13.0.gem diff --git a/chef/rspec-expectations-2.14.5.morph b/chef/rspec-expectations-2.14.5.morph deleted file mode 100644 index d72cf35f..00000000 --- a/chef/rspec-expectations-2.14.5.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/rspec-expectations-2.14.5.gem -products: -- artifact: rspec-expectations-2.14.5-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local rspec-expectations-2.14.5.gem diff --git a/chef/rspec-mocks-2.13.1.morph b/chef/rspec-mocks-2.13.1.morph new file mode 100644 index 00000000..ff32c812 --- /dev/null +++ b/chef/rspec-mocks-2.13.1.morph @@ -0,0 +1,15 @@ +--- +name: rspec-mocks-2.13.1 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/rspec-mocks-2.13.1.gem +products: +- artifact: rspec-mocks-2.13.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local rspec-mocks-2.13.1.gem diff --git a/chef/rspec-mocks-2.14.6.morph b/chef/rspec-mocks-2.14.6.morph deleted file mode 100644 index 7abf211e..00000000 --- a/chef/rspec-mocks-2.14.6.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/rspec-mocks-2.14.6.gem -products: -- artifact: rspec-mocks-2.14.6-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local rspec-mocks-2.14.6.gem diff --git a/chef/rspec_junit_formatter-0.1.6.morph b/chef/rspec_junit_formatter-0.1.6.morph deleted file mode 100644 index 7fa3d936..00000000 --- a/chef/rspec_junit_formatter-0.1.6.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/rspec_junit_formatter-0.1.6.gem -products: -- artifact: rspec_junit_formatter-0.1.6-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local rspec_junit_formatter-0.1.6.gem diff --git a/chef/rspec_junit_formatter-0.2.0.morph b/chef/rspec_junit_formatter-0.2.0.morph new file mode 100644 index 00000000..8d19dc82 --- /dev/null +++ b/chef/rspec_junit_formatter-0.2.0.morph @@ -0,0 +1,15 @@ +--- +name: rspec_junit_formatter-0.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 +gem-url: http://rubygems.org/downloads/rspec_junit_formatter-0.2.0.gem +products: +- artifact: rspec_junit_formatter-0.2.0-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local rspec_junit_formatter-0.2.0.gem diff --git a/chef/sdoc-0.3.20.morph b/chef/sdoc-0.3.20.morph new file mode 100644 index 00000000..768b0246 --- /dev/null +++ b/chef/sdoc-0.3.20.morph @@ -0,0 +1,15 @@ +--- +name: sdoc-0.3.20 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/sdoc-0.3.20.gem +products: +- artifact: sdoc-0.3.20-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local sdoc-0.3.20.gem diff --git a/chef/systemu-2.5.2.morph b/chef/systemu-2.5.2.morph new file mode 100644 index 00000000..b369a7c5 --- /dev/null +++ b/chef/systemu-2.5.2.morph @@ -0,0 +1,15 @@ +--- +name: systemu-2.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 +gem-url: http://rubygems.org/downloads/systemu-2.5.2.gem +products: +- artifact: systemu-2.5.2-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local systemu-2.5.2.gem diff --git a/chef/systemu-2.6.4.morph b/chef/systemu-2.6.4.morph deleted file mode 100644 index ed642aa2..00000000 --- a/chef/systemu-2.6.4.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/systemu-2.6.4.gem -products: -- artifact: systemu-2.6.4-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local systemu-2.6.4.gem diff --git a/chef/wmi-lite-1.0.0.morph b/chef/wmi-lite-1.0.0.morph deleted file mode 100644 index f8e6cda7..00000000 --- a/chef/wmi-lite-1.0.0.morph +++ /dev/null @@ -1,15 +0,0 @@ ---- -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 -gem-url: http://rubygems.org/downloads/wmi-lite-1.0.0.gem -products: -- artifact: wmi-lite-1.0.0-doc - include: - - usr/lib/ruby/gems/2.0.0/doc/.* -install-commands: -- 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 --local wmi-lite-1.0.0.gem diff --git a/chef/yajl-ruby-1.2.1.morph b/chef/yajl-ruby-1.2.1.morph new file mode 100644 index 00000000..4ded54b6 --- /dev/null +++ b/chef/yajl-ruby-1.2.1.morph @@ -0,0 +1,15 @@ +--- +name: yajl-ruby-1.2.1 +kind: chunk +description: Automatically generated by import-ruby. This is a prototype of a method + for integrating RubyGems into Baserock. +build-system: manual +gem-url: http://rubygems.org/downloads/yajl-ruby-1.2.1.gem +products: +- artifact: yajl-ruby-1.2.1-doc + include: + - usr/lib/ruby/gems/2.0.0/doc/.* +install-commands: +- 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 --local yajl-ruby-1.2.1.gem -- cgit v1.2.1