packaging 0.99.19 → 0.99.20

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: 559ae5201da363b356098cf0884c3b2c1e69ebd4f5f4edf7529e1b391b7ecf37
4
- data.tar.gz: fae096697adf12c6c86e050b4961ecd34f299b82d11811050a135ab651a81e07
3
+ metadata.gz: 804655457090e137a8f4566d13c77e4d4e792666939db68d790eb88d7ed63a9a
4
+ data.tar.gz: 0140bb84f7b2913dd0b20a8c73bf4f0ad62b6f6c133cb75d3cda1fd5dbbb52be
5
5
  SHA512:
6
- metadata.gz: 9b43f59c1c6e45acc756fad1d3955a3b22bf8519f647c74cdb58076c41030ef02ffd78bbf96d131ea37499a2bcf0d60934321d36693fee8fcaacb2c73edce990
7
- data.tar.gz: aeb1a442ae717e07996f92248338edd408fcd62797f6e9f65156f765884dd1c424c6a55aa5ae3aafa9f1d2ede47544456d3e3ae5ff1f4042a05f9c9f012cb663
6
+ metadata.gz: fd0c5cb26659c58f2ed3bad60ab46a2d1f4445cc59059994a3b41de175625ba5a97b11bd5e7fd09bb4a30bdf71667ed8570eb00d6fb03754444604f9098055da
7
+ data.tar.gz: da1e8c55b4efeb18bb9cef07fe0a540eecbfa34921ae56da0c04cb45c2868b8a84dd23b29437f424e7f9a8b2ca5cf557c770b4bbb64e9308ad7d44a914788207
@@ -118,6 +118,14 @@ module Pkg
118
118
  signature_format: 'v4',
119
119
  repo: true,
120
120
  },
121
+ '8' => {
122
+ architectures: ['x86_64'],
123
+ source_architecture: 'SRPMS',
124
+ package_format: 'rpm',
125
+ source_package_formats: ['src.rpm'],
126
+ signature_format: 'v4',
127
+ repo: true,
128
+ }
121
129
  },
122
130
 
123
131
  'eos' => {
@@ -224,6 +232,11 @@ module Pkg
224
232
  package_format: 'dmg',
225
233
  repo: false,
226
234
  },
235
+ '10.14' => {
236
+ architectures: ['x86_64'],
237
+ package_format: 'dmg',
238
+ repo: false,
239
+ },
227
240
  },
228
241
 
229
242
  'redhatfips' => {
@@ -26,7 +26,7 @@ describe 'Pkg::Platforms' do
26
26
 
27
27
  describe '#versions_for_platform' do
28
28
  it 'should return all supported versions for a given platform' do
29
- expect(Pkg::Platforms.versions_for_platform('el')).to match_array(['5', '6', '7'])
29
+ expect(Pkg::Platforms.versions_for_platform('el')).to match_array(['5', '6', '7', '8'])
30
30
  end
31
31
 
32
32
  it 'should raise an error if given a nonexistent platform' do
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.99.19
4
+ version: 0.99.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet Labs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-13 00:00:00.000000000 Z
11
+ date: 2018-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -228,27 +228,27 @@ signing_key:
228
228
  specification_version: 4
229
229
  summary: Puppet Labs' packaging automation
230
230
  test_files:
231
- - spec/lib/packaging/artifactory_spec.rb
232
- - spec/lib/packaging/config_spec.rb
233
- - spec/lib/packaging/deb/repo_spec.rb
234
- - spec/lib/packaging/deb_spec.rb
235
231
  - spec/lib/packaging/paths_spec.rb
236
- - spec/lib/packaging/platforms_spec.rb
237
- - spec/lib/packaging/repo_spec.rb
238
- - spec/lib/packaging/retrieve_spec.rb
239
- - spec/lib/packaging/rpm/repo_spec.rb
240
232
  - spec/lib/packaging/sign_spec.rb
241
- - spec/lib/packaging/tar_spec.rb
233
+ - spec/lib/packaging/config_spec.rb
242
234
  - spec/lib/packaging/util/execution_spec.rb
243
- - spec/lib/packaging/util/file_spec.rb
235
+ - spec/lib/packaging/util/os_spec.rb
236
+ - spec/lib/packaging/util/version_spec.rb
244
237
  - spec/lib/packaging/util/git_spec.rb
245
- - spec/lib/packaging/util/git_tag_spec.rb
246
- - spec/lib/packaging/util/gpg_spec.rb
247
238
  - spec/lib/packaging/util/jenkins_spec.rb
248
- - spec/lib/packaging/util/misc_spec.rb
249
- - spec/lib/packaging/util/net_spec.rb
250
- - spec/lib/packaging/util/os_spec.rb
251
239
  - spec/lib/packaging/util/rake_utils_spec.rb
240
+ - spec/lib/packaging/util/gpg_spec.rb
241
+ - spec/lib/packaging/util/git_tag_spec.rb
242
+ - spec/lib/packaging/util/file_spec.rb
243
+ - spec/lib/packaging/util/net_spec.rb
244
+ - spec/lib/packaging/util/misc_spec.rb
252
245
  - spec/lib/packaging/util/ship_spec.rb
253
- - spec/lib/packaging/util/version_spec.rb
246
+ - spec/lib/packaging/repo_spec.rb
247
+ - spec/lib/packaging/tar_spec.rb
248
+ - spec/lib/packaging/retrieve_spec.rb
249
+ - spec/lib/packaging/platforms_spec.rb
250
+ - spec/lib/packaging/deb_spec.rb
251
+ - spec/lib/packaging/deb/repo_spec.rb
252
+ - spec/lib/packaging/rpm/repo_spec.rb
253
+ - spec/lib/packaging/artifactory_spec.rb
254
254
  - spec/lib/packaging_spec.rb