simp-rake-helpers 5.19.0 → 5.19.2

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: 712ebbbef14960ebc9864f75b77caf59b8729b7693a367e64ffe49275371cb28
4
- data.tar.gz: 711c3270485ce9ff0f3466ab8303b012d68b6f55474e7009d9895587fb81321c
3
+ metadata.gz: 8ac10a3909fa53721a58abc43425a87b19e05f39c708b708c72f05156daab6f8
4
+ data.tar.gz: 149664e7aedb68668912e8541ac7b664d0041f7ebcb5e0b423d370588295fde2
5
5
  SHA512:
6
- metadata.gz: f79902f1dd6719f03790d72cea4e4439d672eb1406e2006fd30c4739823cb20dcaa203fe129d7e64eca582861128aecc0590c9db7db53b778b29e07a386742e7
7
- data.tar.gz: bdd2c8bb2c50f0a680ca2e9c41b9184f60525332ec83b2cf4516f67cea0e791ae7f9a36d980f499a1812142c1f6839a9d6285662f69269a48e00f739a8e3b989
6
+ metadata.gz: 918d9a55db0c5f9b6b7dd4128a19ddbb8a94f63b923da0c57f9193954cee9380cc0844ac0f9a8e459f0f95b83b7d2339b97808c0aae39461ef332d4a6b0300f9
7
+ data.tar.gz: 27f663a9423e24ac41009ffe539be6c450c8c6ab00326bc8d6217cb2060d3c4ac136ec3a78df60a66a3885696e17d151fdb2d15c3132026931ab7530255c0700
data/.gitignore CHANGED
@@ -8,3 +8,4 @@ Gemfile.lock
8
8
  *.swp
9
9
  *.sw[pnoqst]
10
10
  .vagrant
11
+ .vendor
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ### 5.19.2 /2023-05-09
2
+ - Fixed
3
+ - Bumped required puppet version to < 9.0
4
+ - The base repo for the el7 ISO was unusable because the repodata for it
5
+ was being excluded on the unpack of the distribution ISO; In the case
6
+ of building an el7 iso, we now ensure the repodata directory exists.
7
+
8
+ ### 5.19.1 /2023-03-27
9
+ - Added
10
+ - Allow `SIMP_BUILD_PKG_require_rebuild` to be case-insensitive to
11
+ accommodate GHA
12
+
1
13
  ### 5.19.0 /2023-03-20
2
14
  - Added
3
15
  - `pkg:single` will skip the `require_rebuild?` logic
@@ -754,7 +754,10 @@ module Simp::Rake::Build
754
754
  check_git: false,
755
755
  prefix: ''
756
756
  })
757
- return true if ENV['SIMP_BUILD_PKG_require_rebuild'] =~ /\A(yes|always)\Z/i
757
+ always_require_rebuild = ENV.select{|x| x =~ /SIMP_BUILD_PKG_require_rebuild/i }
758
+ unless always_require_rebuild.empty?
759
+ return true if always_require_rebuild =~ /\A(yes|always)\Z/i
760
+ end
758
761
  result = false
759
762
  rpm_metadata = File.exist?(@rpm_dependency_file) ? YAML.load(File.read(@rpm_dependency_file)) : {}
760
763
  dir_relpath = Pathname.new(dir).relative_path_from(Pathname.new(Dir.pwd)).to_path
@@ -118,6 +118,9 @@ module Simp::Rake::Build
118
118
  print "#"
119
119
  end
120
120
  end
121
+
122
+ # The repodata directory needs to exist (but not be copied) for el7 distros
123
+ FileUtils.mkdir("#{out_dir}/repodata") if version.start_with?('7')
121
124
  end
122
125
  end
123
126
  end
@@ -2,5 +2,5 @@ module Simp; end
2
2
  module Simp::Rake; end
3
3
 
4
4
  class Simp::Rake::Helpers
5
- VERSION = '5.19.0'
5
+ VERSION = '5.19.2'
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.19.0
4
+ version: 5.19.2
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-03-27 00:00:00.000000000 Z
12
+ date: 2023-05-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: simp-beaker-helpers
@@ -74,7 +74,7 @@ dependencies:
74
74
  version: '3.0'
75
75
  - - "<"
76
76
  - !ruby/object:Gem::Version
77
- version: '8.0'
77
+ version: '9.0'
78
78
  type: :runtime
79
79
  prerelease: false
80
80
  version_requirements: !ruby/object:Gem::Requirement
@@ -84,7 +84,7 @@ dependencies:
84
84
  version: '3.0'
85
85
  - - "<"
86
86
  - !ruby/object:Gem::Version
87
- version: '8.0'
87
+ version: '9.0'
88
88
  - !ruby/object:Gem::Dependency
89
89
  name: puppet-lint
90
90
  requirement: !ruby/object:Gem::Requirement
@@ -612,8 +612,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
612
612
  - !ruby/object:Gem::Version
613
613
  version: '0'
614
614
  requirements: []
615
- rubyforge_project:
616
- rubygems_version: 2.7.6.3
615
+ rubygems_version: 3.1.6
617
616
  signing_key:
618
617
  specification_version: 4
619
618
  summary: SIMP rake helpers