simp-rake-helpers 5.21.0 → 5.22.1
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 +8 -0
- data/lib/simp/rake/build/iso.rb +14 -2
- data/lib/simp/rake/helpers/version.rb +1 -1
- metadata +12 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b65e3219d2e120b04c1b4744dc020c9661f517f63e4bed58fef18c1dacc8abb4
|
|
4
|
+
data.tar.gz: bf78a87883e3db8f9165e340c01059cf8474415d60888f4e5e021861a913485a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85dcb50e2b61692995af6e7b7ebd5a4eb4edcbf01b497b00f1b7670ef140aa75507c55cd71754e25109088ba7ff1647a53ea373fee6f5f53138623807fb9da97
|
|
7
|
+
data.tar.gz: e97cbbf9439653df5e4b1953427686aa606f7548fef9f7b16c7d76e9921d3976eecfad63f422d00884f87e8a02f866467058ce3d3a0941cff0bb8086c6bfbaae
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
### 5.22.1 / 2024-09-10
|
|
2
|
+
- Fixed
|
|
3
|
+
- Update gem dependencies to allow puppetlabs_spec_helper 7.x
|
|
4
|
+
|
|
5
|
+
### 5.22.0 / 2023-08-24
|
|
6
|
+
- Added
|
|
7
|
+
- `iso:build` now skips repoclosure unless `SIMP_BUILD_repoclosure=yes`
|
|
8
|
+
|
|
1
9
|
### 5.21.0 / 2023-08-24
|
|
2
10
|
- Fixed
|
|
3
11
|
- Support for Ruby 3 and Puppet 8
|
data/lib/simp/rake/build/iso.rb
CHANGED
|
@@ -410,8 +410,20 @@ module Simp::Rake::Build
|
|
|
410
410
|
end
|
|
411
411
|
end
|
|
412
412
|
|
|
413
|
-
|
|
414
|
-
|
|
413
|
+
|
|
414
|
+
# NOTE: repoclosure doesn't work with modular repos, and probably
|
|
415
|
+
# never can:
|
|
416
|
+
#
|
|
417
|
+
# https://bugzilla.redhat.com/show_bug.cgi?id=1547041
|
|
418
|
+
#
|
|
419
|
+
# If an ISO somehow has *NO* modular repos/packages, than running
|
|
420
|
+
# with SIMP_BUILD_repoclosure=yes is safe. Otherwise, it will
|
|
421
|
+
# probably fail even if all the packages depsolve cleanly in real
|
|
422
|
+
# life
|
|
423
|
+
if ENV.fetch('SIMP_BUILD_repoclosure', 'no') == 'yes'
|
|
424
|
+
# Make sure we have all of the necessary RPMs!
|
|
425
|
+
Rake::Task['pkg:repoclosure'].invoke(File.expand_path(dir))
|
|
426
|
+
end
|
|
415
427
|
|
|
416
428
|
# Do some sane chmod'ing and build ISO
|
|
417
429
|
system("chmod -fR u+rwX,g+rX,o=g #{dir}")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simp-rake-helpers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.
|
|
4
|
+
version: 5.22.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Tessmer
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2024-09-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: simp-beaker-helpers
|
|
@@ -149,16 +149,22 @@ dependencies:
|
|
|
149
149
|
name: puppetlabs_spec_helper
|
|
150
150
|
requirement: !ruby/object:Gem::Requirement
|
|
151
151
|
requirements:
|
|
152
|
-
- - "
|
|
152
|
+
- - ">="
|
|
153
153
|
- !ruby/object:Gem::Version
|
|
154
154
|
version: '6.0'
|
|
155
|
+
- - "<"
|
|
156
|
+
- !ruby/object:Gem::Version
|
|
157
|
+
version: '8.0'
|
|
155
158
|
type: :runtime
|
|
156
159
|
prerelease: false
|
|
157
160
|
version_requirements: !ruby/object:Gem::Requirement
|
|
158
161
|
requirements:
|
|
159
|
-
- - "
|
|
162
|
+
- - ">="
|
|
160
163
|
- !ruby/object:Gem::Version
|
|
161
164
|
version: '6.0'
|
|
165
|
+
- - "<"
|
|
166
|
+
- !ruby/object:Gem::Version
|
|
167
|
+
version: '8.0'
|
|
162
168
|
- !ruby/object:Gem::Dependency
|
|
163
169
|
name: metadata-json-lint
|
|
164
170
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -168,7 +174,7 @@ dependencies:
|
|
|
168
174
|
version: '1.2'
|
|
169
175
|
- - "<"
|
|
170
176
|
- !ruby/object:Gem::Version
|
|
171
|
-
version: '
|
|
177
|
+
version: '5.0'
|
|
172
178
|
type: :runtime
|
|
173
179
|
prerelease: false
|
|
174
180
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -178,7 +184,7 @@ dependencies:
|
|
|
178
184
|
version: '1.2'
|
|
179
185
|
- - "<"
|
|
180
186
|
- !ruby/object:Gem::Version
|
|
181
|
-
version: '
|
|
187
|
+
version: '5.0'
|
|
182
188
|
- !ruby/object:Gem::Dependency
|
|
183
189
|
name: parallel
|
|
184
190
|
requirement: !ruby/object:Gem::Requirement
|