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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 321387edbe99a15f34c2826cd1c822582f3f7654dd1a4acbd2e96ef0a133215d
4
- data.tar.gz: 541e7eb0edca9975c7a0bf8c0b33895413f9fde8b0a400274d0cd41ea5551cee
3
+ metadata.gz: bb00914b7586ad098304d0803a4629fe99ec071964a5143e2a7d77af3c0a5ebb
4
+ data.tar.gz: fd0112ed52b9bc1dc3224ac70c850bc00d61d201dcd2d7874c54a81078f8d310
5
5
  SHA512:
6
- metadata.gz: 4132a9ac29c5f264162551a8dfcef44bed5a287cca8f5fb18361b020c780b63ed0748a150bc0e2acab9f7384765656f281de553b5b205ca5ad553c5da4db3f7d
7
- data.tar.gz: a753b2d3d99eeab967aab912da8448a75ccd025376f6ac5d4e379d19821a79090031236fdf67d819827238903c86e2ffed498f1fcd19627fd89e38eb82fbe56e
6
+ metadata.gz: 48eeaa374da1746fa10f716566c275d4fac0171281c8a636ed01b02e415b2fd6ca255f4c18d3c6fb2fc4afd54c973158e8be7570673cdd3f65b678c4f6712569
7
+ data.tar.gz: a73bc8b5b19a417ce77185e993d76cf75c6e26e35c2b277b27cb227b540427d3a7813eb420c703cec0119260f3ec6f14b326c7e7a7a73330b8af9c1761c00d09
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 5.21.0 / 2023-08-24
2
+ - Added
3
+ - `iso:build` now skips repoclosure unless `SIMP_BUILD_repoclosure=yes`
4
+
1
5
  ### 5.21.0 / 2023-08-24
2
6
  - Fixed
3
7
  - Support for Ruby 3 and Puppet 8
@@ -410,8 +410,20 @@ module Simp::Rake::Build
410
410
  end
411
411
  end
412
412
 
413
- # Make sure we have all of the necessary RPMs!
414
- Rake::Task['pkg:repoclosure'].invoke(File.expand_path(dir))
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}")
@@ -2,5 +2,5 @@ module Simp; end
2
2
  module Simp::Rake; end
3
3
 
4
4
  class Simp::Rake::Helpers
5
- VERSION = '5.21.0'
5
+ VERSION = '5.22.0'
6
6
  end
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.21.0
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: 2023-08-24 00:00:00.000000000 Z
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