beaker-hostgenerator 1.1.25 → 1.1.26
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/CHANGELOG.md +13 -0
- data/lib/beaker-hostgenerator/data.rb +20 -2
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b6f9b4f553aa292c47c135e0241c29b2f772e79
|
|
4
|
+
data.tar.gz: eba589a31936ecf62890da7badd4481af4da932b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1cb6d7ae9b8e6fe164da4224492d82a9e0c46ef0f330bff19dc04f3bb2edf248ffd432e1d3ba1f3df23e9938466d0a1f9bbc8bd45ee11ed97a806f15a74821aa
|
|
7
|
+
data.tar.gz: 4e2c833f9e3f0ada85f5ec66005900d692f11e4b549179bdc45c64f87f75d8457bd50fffa34a04b30d93db362629b502dfc1a4ad4647615014dd59cdf041c520
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ 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.26] - 2019-02-19
|
|
8
|
+
- Add platform
|
|
9
|
+
- debian10-64
|
|
10
|
+
- debian10-32
|
|
11
|
+
- Change amazon7-ARM64 to use el-7-aarch64 platform
|
|
12
|
+
|
|
13
|
+
## [1.1.25] - 2019-01-07
|
|
14
|
+
- Fix --hypervisor vagrant_libvirt
|
|
15
|
+
|
|
16
|
+
## [1.1.24] - 2019-01-03
|
|
17
|
+
- Add platform:
|
|
18
|
+
- amazon7-ARM64
|
|
19
|
+
|
|
7
20
|
## [1.1.23] - 2018-12-13
|
|
8
21
|
- Add platforms:
|
|
9
22
|
- redhat8-64
|
|
@@ -128,8 +128,8 @@ module BeakerHostGenerator
|
|
|
128
128
|
},
|
|
129
129
|
'amazon7-ARM64' => {
|
|
130
130
|
:general => {
|
|
131
|
-
'platform' => 'el-7-
|
|
132
|
-
'packaging_platform' => 'el-7-
|
|
131
|
+
'platform' => 'el-7-aarch64',
|
|
132
|
+
'packaging_platform' => 'el-7-aarch64'
|
|
133
133
|
},
|
|
134
134
|
:abs => {
|
|
135
135
|
'template' => 'amazon-7-arm64'
|
|
@@ -376,6 +376,24 @@ module BeakerHostGenerator
|
|
|
376
376
|
'template' => 'debian-9-x86_64'
|
|
377
377
|
}
|
|
378
378
|
},
|
|
379
|
+
'debian10-64' => {
|
|
380
|
+
:general => {
|
|
381
|
+
'platform' => 'debian-10-amd64',
|
|
382
|
+
'packaging_platform' => 'debian-10-amd64'
|
|
383
|
+
},
|
|
384
|
+
:vmpooler => {
|
|
385
|
+
'template' => 'debian-10-x86_64'
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
'debian10-32' => {
|
|
389
|
+
:general => {
|
|
390
|
+
'platform' => 'debian-10-i386',
|
|
391
|
+
'packaging_platform' => 'debian-10-i386'
|
|
392
|
+
},
|
|
393
|
+
:vmpooler => {
|
|
394
|
+
'template' => 'debian-10-i386'
|
|
395
|
+
}
|
|
396
|
+
},
|
|
379
397
|
'fedora14-32' => {
|
|
380
398
|
:general => {
|
|
381
399
|
'platform' => 'fedora-14-i386'
|
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.26
|
|
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: 2019-
|
|
13
|
+
date: 2019-02-19 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: minitest
|