beaker-hostgenerator 2.9.1 → 2.10.0
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/.github/workflows/test.yml +0 -2
- data/CHANGELOG.md +9 -0
- data/Gemfile +0 -5
- data/README.md +0 -1
- data/Rakefile +0 -7
- data/lib/beaker-hostgenerator/data.rb +10 -1
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +2 -3
- data/.simplecov +0 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15b42edff36b75bc80a8e58a87697219996c8681c69e5d30caadc35098416553
|
|
4
|
+
data.tar.gz: ee6f0c949b1af8a4c315b1005b1f6f769507a2526d65eeb345b129ef85ed1821
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d0eadb54ab5b40285348c9f2614ce289f2ea95661ba9a3185a0d4e19e00b43fdf4c2bbec9be61d639cd9e86f9ea2f0d591977c4ae17c93f5ab073c41be09cf37
|
|
7
|
+
data.tar.gz: 7d7ff2fbb20be3e57574b35b9c1007034162b37c5bfe6cb20fce8a53181869384102be726c9cd9028c842f439bf56d85da7da7cd1fbb45b90f9acf67c29fe794
|
data/.github/workflows/test.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.10.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.10.0) (2024-02-13)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.9.1...2.10.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- Add Ubuntu 24.04 support [\#357](https://github.com/voxpupuli/beaker-hostgenerator/pull/357) ([h0tw1r3](https://github.com/h0tw1r3))
|
|
12
|
+
- Add beaker-hostgenerator support for redhatfips-9-x86\_64 [\#355](https://github.com/voxpupuli/beaker-hostgenerator/pull/355) ([rhegde0722](https://github.com/rhegde0722))
|
|
13
|
+
|
|
5
14
|
## [2.9.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.9.1) (2024-01-24)
|
|
6
15
|
|
|
7
16
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.9.0...2.9.1)
|
data/Gemfile
CHANGED
|
@@ -9,11 +9,6 @@ group :release do
|
|
|
9
9
|
gem 'github_changelog_generator', require: false
|
|
10
10
|
end
|
|
11
11
|
|
|
12
|
-
group :coverage, optional: ENV['COVERAGE'] != 'yes' do
|
|
13
|
-
gem 'codecov', require: false
|
|
14
|
-
gem 'simplecov-console', require: false
|
|
15
|
-
end
|
|
16
|
-
|
|
17
12
|
group :rubocop do
|
|
18
13
|
gem 'voxpupuli-rubocop', '~> 2.0'
|
|
19
14
|
end
|
data/README.md
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/voxpupuli/beaker-hostgenerator/blob/master/LICENSE)
|
|
4
4
|
[](https://github.com/voxpupuli/beaker-hostgenerator/actions/workflows/test.yml)
|
|
5
|
-
[](https://codecov.io/gh/voxpupuli/beaker-hostgenerator)
|
|
6
5
|
[](https://github.com/voxpupuli/beaker-hostgenerator/actions/workflows/release.yml)
|
|
7
6
|
[](https://rubygems.org/gems/beaker-hostgenerator)
|
|
8
7
|
[](https://rubygems.org/gems/beaker-hostgenerator)
|
data/Rakefile
CHANGED
|
@@ -18,13 +18,6 @@ namespace :test do
|
|
|
18
18
|
t.pattern = 'spec/'
|
|
19
19
|
t.ruby_opts = '-Itest'
|
|
20
20
|
end
|
|
21
|
-
|
|
22
|
-
desc 'Run spec tests with coverage'
|
|
23
|
-
RSpec::Core::RakeTask.new(:coverage) do |t|
|
|
24
|
-
ENV['BEAKER_TEMPLATE_COVERAGE'] = 'y'
|
|
25
|
-
t.rspec_opts = ['--color']
|
|
26
|
-
t.pattern = 'spec/'
|
|
27
|
-
end
|
|
28
21
|
end
|
|
29
22
|
end
|
|
30
23
|
|
|
@@ -371,6 +371,15 @@ module BeakerHostGenerator
|
|
|
371
371
|
'platform' => 'el-9-x86_64',
|
|
372
372
|
},
|
|
373
373
|
},
|
|
374
|
+
'redhatfips9-64' => {
|
|
375
|
+
general: {
|
|
376
|
+
'platform' => 'el-9-x86_64',
|
|
377
|
+
'packaging_platform' => 'redhatfips-9-x86_64',
|
|
378
|
+
},
|
|
379
|
+
vmpooler: {
|
|
380
|
+
'template' => 'redhat-fips-9-x86_64',
|
|
381
|
+
},
|
|
382
|
+
},
|
|
374
383
|
'redhat9-AARCH64' => {
|
|
375
384
|
general: {
|
|
376
385
|
'platform' => 'el-9-aarch64',
|
|
@@ -1088,7 +1097,7 @@ module BeakerHostGenerator
|
|
|
1088
1097
|
# Ubuntu
|
|
1089
1098
|
#
|
|
1090
1099
|
# Generate LTS platforms
|
|
1091
|
-
(18..
|
|
1100
|
+
(18..24).select(&:even?).each do |release|
|
|
1092
1101
|
yield ["ubuntu#{release}04-64", "ubuntu-#{release}.04-amd64"]
|
|
1093
1102
|
|
|
1094
1103
|
yield ["ubuntu#{release}04-POWER", "ubuntu-#{release}.04-ppc64el"]
|
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: 2.
|
|
4
|
+
version: 2.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Branan Purvine-Riley
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2024-
|
|
14
|
+
date: 2024-02-13 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: fakefs
|
|
@@ -135,7 +135,6 @@ files:
|
|
|
135
135
|
- ".rspec"
|
|
136
136
|
- ".rubocop.yml"
|
|
137
137
|
- ".rubocop_todo.yml"
|
|
138
|
-
- ".simplecov"
|
|
139
138
|
- CHANGELOG.md
|
|
140
139
|
- CODEOWNERS
|
|
141
140
|
- CONTRIBUTING.md
|