vagrant-pe_build 0.9.6 → 0.9.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5e27655716615d6252319daefc518687147f7643
4
- data.tar.gz: b68a2d806efa44df9c62181792680611b8cccfe7
3
+ metadata.gz: 1763e34973eeb35cad669532a020c3c15514e3fb
4
+ data.tar.gz: c93b5c85986753724b951fd6784878099faede40
5
5
  SHA512:
6
- metadata.gz: cd24802e08a6a556f1d0e43194e0de9f0e3db836bd3a4835e1e4e64875b08756d83c7c17d3db9ed536460c558acc4d42b1a1345cf3df38badd96c99f6d8ab9c3
7
- data.tar.gz: 983ee818ee632b974b53bf2cac87bee85f472cdf393203bd5eb922bd8565c292753635e135f587cce2eee039ae5bd015f05983740ce8da71777034f7f034a05a
6
+ metadata.gz: a2abde23051fb1004de4f22efe64df5d7993a1e45046a28233fca8cd6006ff57fd67b70cc12fe104a00b80b6891bab71b3310848923c3e25419d6af104dacf39
7
+ data.tar.gz: b595d9791820b164680bcf06f610f84222ac4bbd91cd865ea3974cb33116342a0c5711ac08307c43bdb39dfb7219fa6fc8f5ef3e96a1504d8d44aff346b4a44f
data/.travis.yml ADDED
@@ -0,0 +1,18 @@
1
+ ---
2
+ language: ruby
3
+ before_install:
4
+ - gem install bundler --version $BUNDLER_VERSION
5
+ install: bundle _${BUNDLER_VERSION}_ install --without development
6
+ script: bundle _${BUNDLER_VERSION}_ exec rspec --color --format documentation
7
+ notifications:
8
+ email: false
9
+ rvm:
10
+ - 2.0.0
11
+ env:
12
+ global:
13
+ - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
14
+ matrix:
15
+ - TEST_VAGRANT_VERSION=v1.5.4 BUNDLER_VERSION=1.5.3
16
+ - TEST_VAGRANT_VERSION=v1.6.5 BUNDLER_VERSION=1.6.9
17
+ - TEST_VAGRANT_VERSION=v1.7.2 BUNDLER_VERSION=1.7.9
18
+ - TEST_VAGRANT_VERSION=HEAD BUNDLER_VERSION=1.7.9
data/CHANGELOG CHANGED
@@ -1,6 +1,17 @@
1
1
  vagrant-pe_build
2
2
  ================
3
3
 
4
+ 0.9.7
5
+ -----
6
+
7
+ 2015-03-26
8
+
9
+ This is a backwards compatible patch release.
10
+
11
+ * Add support for 3.7.x patch releases.
12
+
13
+ * (GH-81) Add support for upcoming future parser settings.
14
+
4
15
  0.9.6
5
16
  -----
6
17
 
data/Gemfile CHANGED
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
  ruby '2.0.0' # Required by Vagrant 1.4 and newer.
3
3
 
4
- ENV['TEST_VAGRANT_VERSION'] ||= 'v1.6.5'
4
+ ENV['TEST_VAGRANT_VERSION'] ||= 'v1.7.2'
5
5
 
6
6
  # Wrapping gemspec in the :plugins group causes Vagrant 1.5 and newer to
7
7
  # automagically load this plugin during acceptance tests.
@@ -9,7 +9,7 @@ group :plugins do
9
9
  gemspec
10
10
  end
11
11
 
12
- group :doc do
12
+ group :development do
13
13
  gem 'yard', '~> 0.8.7'
14
14
  gem 'redcarpet'
15
15
  end
@@ -21,8 +21,8 @@ group :test do
21
21
  gem 'vagrant', :github => 'mitchellh/vagrant', :tag => ENV['TEST_VAGRANT_VERSION']
22
22
  end
23
23
 
24
- # Pinned on 05/05/2014. Compatible with Vagrant 1.5.x and 1.6.x.
25
- gem 'vagrant-spec', :github => 'mitchellh/vagrant-spec', :ref => 'aae28ee'
24
+ # Pinned on 12/10/2014. Compatible with Vagrant 1.5.x, 1.6.x and 1.7.x.
25
+ gem 'vagrant-spec', :github => 'mitchellh/vagrant-spec', :ref => '1df5a3a'
26
26
  end
27
27
 
28
28
  eval_gemfile "#{__FILE__}.local" if File.exists? "#{__FILE__}.local"
data/README.markdown CHANGED
@@ -3,6 +3,8 @@ Vagrant PE build
3
3
 
4
4
  Download and install Puppet Enterprise with Vagrant.
5
5
 
6
+ [![Build Status](https://travis-ci.org/adrienthebo/vagrant-pe_build.svg?branch=master)](https://travis-ci.org/adrienthebo/vagrant-pe_build)
7
+
6
8
  Synopsis
7
9
  --------
8
10
 
@@ -0,0 +1,52 @@
1
+ require 'pe_build/release'
2
+
3
+ module PEBuild::Release
4
+
5
+ three_seven_x = newrelease do
6
+
7
+ add_release :debian, '6'
8
+ add_release :debian, '7'
9
+
10
+ add_release :el, '4'
11
+ add_release :el, '5'
12
+ add_release :el, '6'
13
+ add_release :el, '7'
14
+
15
+ add_release :sles, '10'
16
+ add_release :sles, '11'
17
+
18
+ add_release :solaris, '10'
19
+ add_release :solaris, '11'
20
+
21
+ add_release :ubuntu, '10.04'
22
+ add_release :ubuntu, '12.04'
23
+ add_release :ubuntu, '14.04'
24
+
25
+ add_release :windows, '2003'
26
+ add_release :windows, '2008R2'
27
+ add_release :windows, '7'
28
+ add_release :windows, '2012'
29
+ add_release :windows, '8'
30
+
31
+ # TODO: PE 3.3 and newer have support for OS X, but we weed to add some
32
+ # capabilities to make this functional.
33
+ #
34
+ # add_release :osx, '10.9'
35
+
36
+ # PE 3.x has support for AIX, but as of 2013-08-12 Vagrant has nothing
37
+ # remotely resembling support for AIX WPARs or LPARs. Since it's meaningless
38
+ # to try to add support for AIX, we just leave this commented out.
39
+ #
40
+ # add_release :aix, '5.3'
41
+ # add_release :aix, '6.1'
42
+ # add_release :aix, '7.1'
43
+
44
+ set_answer_file :master, File.join(PEBuild.template_dir, 'answers', 'master-3.x.txt.erb')
45
+ set_answer_file :agent, File.join(PEBuild.template_dir, 'answers', 'agent-3.x.txt.erb')
46
+ end
47
+
48
+ @releases['3.7.0'] = three_seven_x
49
+ @releases['3.7.1'] = three_seven_x
50
+ @releases['3.7.2'] = three_seven_x
51
+ end
52
+
@@ -35,7 +35,8 @@ module PEBuild
35
35
  require 'pe_build/release/3_1'
36
36
  require 'pe_build/release/3_2'
37
37
  require 'pe_build/release/3_3'
38
+ require 'pe_build/release/3_7'
38
39
 
39
- LATEST_VERSION = '3.3.2'
40
+ LATEST_VERSION = '3.7.2'
40
41
  end
41
42
  end
@@ -1,3 +1,3 @@
1
1
  module PEBuild
2
- VERSION = '0.9.6'
2
+ VERSION = '0.9.7'
3
3
  end
@@ -42,3 +42,4 @@ q_puppetmaster_install=y
42
42
  q_run_updtvpkg=n
43
43
  q_vendor_packages_install=y
44
44
  q_verify_packages=y
45
+ q_enable_future_parser=n
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-pe_build
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.6
4
+ version: 0.9.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrien Thebo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-17 00:00:00.000000000 Z
11
+ date: 2015-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: progressbar
@@ -74,6 +74,7 @@ extra_rdoc_files: []
74
74
  files:
75
75
  - .gitignore
76
76
  - .rspec
77
+ - .travis.yml
77
78
  - .yardopts
78
79
  - CHANGELOG
79
80
  - Gemfile
@@ -134,6 +135,7 @@ files:
134
135
  - lib/pe_build/release/3_1.rb
135
136
  - lib/pe_build/release/3_2.rb
136
137
  - lib/pe_build/release/3_3.rb
138
+ - lib/pe_build/release/3_7.rb
137
139
  - lib/pe_build/release/instance.rb
138
140
  - lib/pe_build/transfer.rb
139
141
  - lib/pe_build/transfer/file.rb