beaker-hostgenerator 1.1.2 → 1.1.3
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 +8 -8
- data/CHANGELOG.md +11 -0
- data/lib/beaker-hostgenerator/data.rb +63 -2
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NDBiNjA4N2UyMTMyZGFhOTk3YzNkOWQ1MTc2NjI0MjZmOWU1NmQyMw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZTEyZTY2ZjNlMjkxOGNhMmMwODRkOGE3MDhhZGYxMTI0YjNkMDUyYw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
Y2E5Yjk4MTZiZjFhYTE0N2I0NTdjNWYxNWUyOWY2ZWQ5ZWU3ZjI5NDJmMzVh
|
|
10
|
+
NjAxY2Y5ODMyNTM2OGI5MzQ4Yjg1NDkwYzM2MmI4ZjdjZDQ5NjU0YTEyYTk5
|
|
11
|
+
ODk0N2VmNWFiMTY0MDQzZTE4NzY3NzBjN2VkNjU1NzJkMzI5NzA=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MDVjZTk2NDg2NzdhOTE2MjM2MjA5OGRjZTI4YmU5ZDc4YWQwMTExZDA3OWFk
|
|
14
|
+
MGUzMTFmZDZiZDE3MmU3ZGViM2JmMGVjOTkyYzc0M2U1ZTM2NTRkZjFhOTI5
|
|
15
|
+
MTEwN2Y5YmMwNTc1NTE0NmJmMTMxZmQ4YWM3NGVlZDQ0MDlmYmI=
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
This project makes a strong effort to adhere to [Semantic
|
|
5
5
|
Versioning](http://semver.org).
|
|
6
6
|
|
|
7
|
+
## [1.1.3] - 2017-10-27
|
|
8
|
+
- Add platforms:
|
|
9
|
+
- osx1013-64
|
|
10
|
+
- redhat7-AARCH64
|
|
11
|
+
- windows2012r2_core-64
|
|
12
|
+
- windows2012r2_core-6432
|
|
13
|
+
- windows2016_core-64
|
|
14
|
+
- windows2016_core-6432
|
|
15
|
+
- Fix to platform:
|
|
16
|
+
- amazon6-64
|
|
17
|
+
|
|
7
18
|
## [1.1.2] - 2017-10-13
|
|
8
19
|
- Add platform:
|
|
9
20
|
- cisconxhw-64
|
|
@@ -110,8 +110,8 @@ module BeakerHostGenerator
|
|
|
110
110
|
},
|
|
111
111
|
'amazon6-64' => {
|
|
112
112
|
:general => {
|
|
113
|
-
'platform' => '
|
|
114
|
-
'packaging_platform' => '
|
|
113
|
+
'platform' => 'el-6-x86_64',
|
|
114
|
+
'packaging_platform' => 'el-6-x86_64'
|
|
115
115
|
},
|
|
116
116
|
:abs => {
|
|
117
117
|
'template' => 'amazon-6-x86_64'
|
|
@@ -538,6 +538,15 @@ module BeakerHostGenerator
|
|
|
538
538
|
'template' => 'osx-1012-x86_64'
|
|
539
539
|
}
|
|
540
540
|
},
|
|
541
|
+
'osx1013-64' => {
|
|
542
|
+
:general => {
|
|
543
|
+
'platform' => 'osx-10.13-x86_64',
|
|
544
|
+
'packaging_platform' => 'osx-10.13-x86_64'
|
|
545
|
+
},
|
|
546
|
+
:vmpooler => {
|
|
547
|
+
'template' => 'osx-1013-x86_64'
|
|
548
|
+
}
|
|
549
|
+
},
|
|
541
550
|
'redhat4-32' => {
|
|
542
551
|
:general => {
|
|
543
552
|
'platform' => 'el-4-i386'
|
|
@@ -620,6 +629,18 @@ module BeakerHostGenerator
|
|
|
620
629
|
'packaging_platform' => 'el-7-s390x'
|
|
621
630
|
},
|
|
622
631
|
},
|
|
632
|
+
'redhat7-AARCH64' => {
|
|
633
|
+
:general => {
|
|
634
|
+
'platform' => 'el-7-aarch64',
|
|
635
|
+
'packaging_platform' => 'el-7-aarch64'
|
|
636
|
+
},
|
|
637
|
+
:abs => {
|
|
638
|
+
'template' => 'el-7-arm64'
|
|
639
|
+
},
|
|
640
|
+
:vmpooler => {
|
|
641
|
+
'template' => 'redhat-7-x86_64'
|
|
642
|
+
}
|
|
643
|
+
},
|
|
623
644
|
'scientific5-32' => {
|
|
624
645
|
:general => {
|
|
625
646
|
'platform' => 'el-5-i386',
|
|
@@ -1104,6 +1125,26 @@ module BeakerHostGenerator
|
|
|
1104
1125
|
'template' => 'win-2012r2-ja-x86_64'
|
|
1105
1126
|
}
|
|
1106
1127
|
},
|
|
1128
|
+
'windows2012r2_core-64' => {
|
|
1129
|
+
:general => {
|
|
1130
|
+
'platform' => 'windows-2012r2-64',
|
|
1131
|
+
'packaging_platform' => 'windows-2012-x64',
|
|
1132
|
+
'ruby_arch' => 'x64'
|
|
1133
|
+
},
|
|
1134
|
+
:vmpooler => {
|
|
1135
|
+
'template' => 'win-2012r2-core-x86_64'
|
|
1136
|
+
}
|
|
1137
|
+
},
|
|
1138
|
+
'windows2012r2_core-6432' => {
|
|
1139
|
+
:general => {
|
|
1140
|
+
'platform' => 'windows-2012r2-64',
|
|
1141
|
+
'packaging_platform' => 'windows-2012-x64',
|
|
1142
|
+
'ruby_arch' => 'x86'
|
|
1143
|
+
},
|
|
1144
|
+
:vmpooler => {
|
|
1145
|
+
'template' => 'win-2012r2-core-x86_64'
|
|
1146
|
+
}
|
|
1147
|
+
},
|
|
1107
1148
|
'windows2016-64' => {
|
|
1108
1149
|
:general => {
|
|
1109
1150
|
'platform' => 'windows-2016-64',
|
|
@@ -1124,6 +1165,26 @@ module BeakerHostGenerator
|
|
|
1124
1165
|
'template' => 'win-2016-x86_64'
|
|
1125
1166
|
}
|
|
1126
1167
|
},
|
|
1168
|
+
'windows2016_core-64' => {
|
|
1169
|
+
:general => {
|
|
1170
|
+
'platform' => 'windows-2016-64',
|
|
1171
|
+
'packaging_platform' => 'windows-2012-x64',
|
|
1172
|
+
'ruby_arch' => 'x64'
|
|
1173
|
+
},
|
|
1174
|
+
:vmpooler => {
|
|
1175
|
+
'template' => 'win-2016-core-x86_64'
|
|
1176
|
+
}
|
|
1177
|
+
},
|
|
1178
|
+
'windows2016_core-6432' => {
|
|
1179
|
+
:general => {
|
|
1180
|
+
'platform' => 'windows-2016-64',
|
|
1181
|
+
'packaging_platform' => 'windows-2012-x64',
|
|
1182
|
+
'ruby_arch' => 'x86'
|
|
1183
|
+
},
|
|
1184
|
+
:vmpooler => {
|
|
1185
|
+
'template' => 'win-2016-core-x86_64'
|
|
1186
|
+
}
|
|
1187
|
+
},
|
|
1127
1188
|
'windows7-64' => {
|
|
1128
1189
|
:general => {
|
|
1129
1190
|
'platform' => 'windows-7-64',
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-hostgenerator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Branan Purvine-Riley
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2017-10-
|
|
13
|
+
date: 2017-10-27 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: minitest
|