vagrant-pe_build 0.9.6 → 0.9.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +18 -0
- data/CHANGELOG +11 -0
- data/Gemfile +4 -4
- data/README.markdown +2 -0
- data/lib/pe_build/release/3_7.rb +52 -0
- data/lib/pe_build/release.rb +2 -1
- data/lib/pe_build/version.rb +1 -1
- data/templates/answers/master-3.x.txt.erb +1 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1763e34973eeb35cad669532a020c3c15514e3fb
|
4
|
+
data.tar.gz: c93b5c85986753724b951fd6784878099faede40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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 :
|
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
|
25
|
-
gem 'vagrant-spec', :github => 'mitchellh/vagrant-spec', :ref => '
|
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
@@ -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
|
+
|
data/lib/pe_build/release.rb
CHANGED
data/lib/pe_build/version.rb
CHANGED
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.
|
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:
|
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
|