packaging 0.113.0 → 0.114.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/packaging/platforms.rb +16 -0
  3. metadata +21 -21
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 38a695c2a203545ed683903f02ae7fa8c5061c4cc2f9df51b51421527e479873
4
- data.tar.gz: 9efef213c86d137b864401c7bc51d96c242c4bba6f8086652b727f325588ecd1
3
+ metadata.gz: 872132e3dcf2718b739c196a7c91f520592fb6888139d95ac69ff851de817d3c
4
+ data.tar.gz: fcc2351b89fb1c6bce455cb3ae93d8b3b372d3e70875eeda8d442e485d8332b5
5
5
  SHA512:
6
- metadata.gz: f1ecea7327e7f846700180f7f80a3f07baad08ae1b432261ba3b500438fd8232af5b676b6593905f6dc8117b4e6c84d7523fec06a915128297b1bb60b992d98e
7
- data.tar.gz: b078ed636dbd2b8aa327c1a1784fa463d5c9aebf3ea5bc48c0fa9aafc015bfdee698d64544bbe7974b745219972224444f0413feb6cfcf59aadcd8f534216073
6
+ metadata.gz: 15fd7bc9ac1134f59a6c28c0e6ce1a151b56ab3f9e35b971d847b3eed1f9f9e80b1dbe35c0de03e2e2919d06b4e7a5dc03817db5783aa482aa7439a17b8ba449
7
+ data.tar.gz: 8edaf1970e42b5ed438b3c999b8f2fd57b9a6aae183e722cdb3670c6ec69bb3ae89a1a8cd2fd8bde4812be80441ed16d205f670337fa5ccd22a2010166f50117
@@ -109,6 +109,14 @@ module Pkg
109
109
  signature_format: 'v4',
110
110
  repo: true,
111
111
  },
112
+ '38' => {
113
+ architectures: ['x86_64'],
114
+ source_architecture: 'SRPMS',
115
+ package_format: 'rpm',
116
+ source_package_formats: ['src.rpm'],
117
+ signature_format: 'v4',
118
+ repo: true,
119
+ },
112
120
  },
113
121
 
114
122
  'osx' => {
@@ -154,6 +162,14 @@ module Pkg
154
162
  },
155
163
 
156
164
  'sles' => {
165
+ '11' => {
166
+ architectures: ['x86_64'],
167
+ source_architecture: 'SRPMS',
168
+ package_format: 'rpm',
169
+ source_package_formats: ['src.rpm'],
170
+ signature_format: 'v3',
171
+ repo: true,
172
+ },
157
173
  '12' => {
158
174
  architectures: ['x86_64', 'ppc64le'],
159
175
  source_architecture: 'SRPMS',
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: packaging
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.113.0
4
+ version: 0.114.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet By Perforce
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-08 00:00:00.000000000 Z
11
+ date: 2024-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: debug
@@ -307,28 +307,28 @@ signing_key:
307
307
  specification_version: 4
308
308
  summary: Puppet by Perforce packaging automation
309
309
  test_files:
310
- - spec/lib/packaging_spec.rb
311
- - spec/lib/packaging/sign_spec.rb
312
- - spec/lib/packaging/gem_spec.rb
313
- - spec/lib/packaging/deb/repo_spec.rb
314
- - spec/lib/packaging/artifactory_spec.rb
315
- - spec/lib/packaging/tar_spec.rb
316
- - spec/lib/packaging/deb_spec.rb
317
- - spec/lib/packaging/retrieve_spec.rb
318
310
  - spec/lib/packaging/config_spec.rb
319
- - spec/lib/packaging/platforms_spec.rb
320
- - spec/lib/packaging/paths_spec.rb
321
- - spec/lib/packaging/rpm/repo_spec.rb
322
311
  - spec/lib/packaging/repo_spec.rb
323
- - spec/lib/packaging/util/execution_spec.rb
324
- - spec/lib/packaging/util/rake_utils_spec.rb
325
- - spec/lib/packaging/util/jenkins_spec.rb
312
+ - spec/lib/packaging/deb_spec.rb
313
+ - spec/lib/packaging/util/gpg_spec.rb
314
+ - spec/lib/packaging/util/ship_spec.rb
326
315
  - spec/lib/packaging/util/os_spec.rb
327
- - spec/lib/packaging/util/misc_spec.rb
328
- - spec/lib/packaging/util/net_spec.rb
329
316
  - spec/lib/packaging/util/git_spec.rb
330
- - spec/lib/packaging/util/ship_spec.rb
317
+ - spec/lib/packaging/util/git_tag_spec.rb
318
+ - spec/lib/packaging/util/jenkins_spec.rb
319
+ - spec/lib/packaging/util/net_spec.rb
320
+ - spec/lib/packaging/util/rake_utils_spec.rb
321
+ - spec/lib/packaging/util/execution_spec.rb
322
+ - spec/lib/packaging/util/misc_spec.rb
331
323
  - spec/lib/packaging/util/file_spec.rb
332
324
  - spec/lib/packaging/util/version_spec.rb
333
- - spec/lib/packaging/util/git_tag_spec.rb
334
- - spec/lib/packaging/util/gpg_spec.rb
325
+ - spec/lib/packaging/gem_spec.rb
326
+ - spec/lib/packaging/deb/repo_spec.rb
327
+ - spec/lib/packaging/retrieve_spec.rb
328
+ - spec/lib/packaging/paths_spec.rb
329
+ - spec/lib/packaging/platforms_spec.rb
330
+ - spec/lib/packaging/tar_spec.rb
331
+ - spec/lib/packaging/sign_spec.rb
332
+ - spec/lib/packaging/artifactory_spec.rb
333
+ - spec/lib/packaging/rpm/repo_spec.rb
334
+ - spec/lib/packaging_spec.rb