simp-rake-helpers 5.21.0 → 5.22.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/CHANGELOG.md +4 -0
- data/lib/simp/rake/build/iso.rb +14 -2
- data/lib/simp/rake/helpers/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bb00914b7586ad098304d0803a4629fe99ec071964a5143e2a7d77af3c0a5ebb
|
|
4
|
+
data.tar.gz: fd0112ed52b9bc1dc3224ac70c850bc00d61d201dcd2d7874c54a81078f8d310
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 48eeaa374da1746fa10f716566c275d4fac0171281c8a636ed01b02e415b2fd6ca255f4c18d3c6fb2fc4afd54c973158e8be7570673cdd3f65b678c4f6712569
|
|
7
|
+
data.tar.gz: a73bc8b5b19a417ce77185e993d76cf75c6e26e35c2b277b27cb227b540427d3a7813eb420c703cec0119260f3ec6f14b326c7e7a7a73330b8af9c1761c00d09
|
data/CHANGELOG.md
CHANGED
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.0
|
|
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-08-09 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: simp-beaker-helpers
|