beaker-hostgenerator 1.3.0 → 1.4.0

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
  SHA256:
3
- metadata.gz: 3d7fbf823a00d608b392540e4eceb7239951cbffe6a7e066098de301dccbd1a6
4
- data.tar.gz: c0b1c9a1977e21a2ecc0afcc52ac48429af6fb4a9c946a7e9256eb56bc79cafc
3
+ metadata.gz: 989df830d08bfb7726aaf9ec65529668898cda03efe855b1627f31185c66680a
4
+ data.tar.gz: 274abeb00d5230dd22125fd8bfc4a50901a76dbd2cec5b2c646c1eae60aa28a3
5
5
  SHA512:
6
- metadata.gz: 6b8a4a19950b3f12e8dc21e53b8cc44dc66120f9510f98f4b4963c8d700cfe45d3bc7af058c25008395a8e6602a65342f88b54dc2d06a2be926c6b1e92f38eb1
7
- data.tar.gz: a8f69d25bd171c07232a2985ba92028bfbfbd77911f1e8479f4fa320589cc831d0aba280c0093a0e7ec689dba342433d5e37201a4822bf0fb3bd8922a9125bea
6
+ metadata.gz: b1edd1be82dfc67db26c277b95880df4da410cb90083f80d0a146e39b5104b4c3d62e0e4dd974d2fa333d78871bec3baa1c3128c3c4e9d1a4da1d14730f6d6db
7
+ data.tar.gz: 8768bc0e4ddbac23d5fe918943b4560d605f4dc6386ef100d07af508340b5f5052e849b55d1e1c4fafa0a28686770f5a56973ff0c003c8df7c94e92f3a97364c
data/CHANGELOG.md CHANGED
@@ -2,6 +2,19 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [1.4.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.4.0) (2021-05-11)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.3.0...1.4.0)
8
+
9
+ **Implemented enhancements:**
10
+
11
+ - \(IMAGES-1273\) add support for Debian 11 amd64 [\#210](https://github.com/voxpupuli/beaker-hostgenerator/pull/210) ([ciprianbadescu](https://github.com/ciprianbadescu))
12
+ - Add support for redhat8-POWER \(el-8-ppc64le\) [\#208](https://github.com/voxpupuli/beaker-hostgenerator/pull/208) ([GabrielNagy](https://github.com/GabrielNagy))
13
+
14
+ **Merged pull requests:**
15
+
16
+ - Deal with nil when merging [\#209](https://github.com/voxpupuli/beaker-hostgenerator/pull/209) ([ekohl](https://github.com/ekohl))
17
+
5
18
  ## [1.3.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.3.0) (2021-04-15)
6
19
 
7
20
  [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.2.10...1.3.0)
@@ -587,6 +587,18 @@ module BeakerHostGenerator
587
587
  'template' => 'debian-10-i386'
588
588
  }
589
589
  },
590
+ 'debian11-64' => {
591
+ :general => {
592
+ 'platform' => 'debian-11-amd64',
593
+ 'packaging_platform' => 'debian-11-amd64'
594
+ },
595
+ :vagrant => {
596
+ 'box' => 'debian/bullseye64',
597
+ },
598
+ :vmpooler => {
599
+ 'template' => 'debian-11-x86_64'
600
+ }
601
+ },
590
602
  'fedora14-32' => {
591
603
  :general => {
592
604
  'platform' => 'fedora-14-i386'
@@ -936,6 +948,15 @@ module BeakerHostGenerator
936
948
  'template' => 'redhat-8-x86_64'
937
949
  }
938
950
  },
951
+ 'redhat8-POWER' => {
952
+ :general => {
953
+ 'platform' => 'el-8-ppc64le',
954
+ 'packaging_platform' => 'el-8-ppc64le'
955
+ },
956
+ :abs => {
957
+ 'template' => 'redhat-8-power8'
958
+ }
959
+ },
939
960
  'scientific5-32' => {
940
961
  :general => {
941
962
  'platform' => 'el-5-i386',
@@ -1949,7 +1970,10 @@ module BeakerHostGenerator
1949
1970
  # }
1950
1971
  def get_platform_info(bhg_version, platform, hypervisor)
1951
1972
  info = get_osinfo(bhg_version)[platform]
1952
- {}.deep_merge!(info[:general]).deep_merge!(info[hypervisor])
1973
+ result = {}
1974
+ result.deep_merge!(info[:general]) if info[:general]
1975
+ result.deep_merge!(info[hypervisor]) if info[hypervisor]
1976
+ result
1953
1977
  end
1954
1978
 
1955
1979
  # Perform any adjustments or modifications necessary to the given node
@@ -1,5 +1,5 @@
1
1
  module BeakerHostGenerator
2
2
  module Version
3
- STRING = '1.3.0'
3
+ STRING = '1.4.0'
4
4
  end
5
5
  end
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.3.0
4
+ version: 1.4.0
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: 2021-04-15 00:00:00.000000000 Z
13
+ date: 2021-05-11 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest