packaging 0.110.1 → 0.111.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: f531bbfb5a05625e55cdf14b09928314d13999addf12b7c77ddb8ed954c187e1
4
- data.tar.gz: f7fc4ca10a227835456ac481b71b14adc916d55e218dc975bcb0c3e6ebd92859
3
+ metadata.gz: 01e3abcf9109fae9fabcc93a8082ae3a727c03becd65a6d3a1e7041af76fa973
4
+ data.tar.gz: da4340d6b746e1a64b31a7f68cfcc9defe4e2a7e49db36e807882b30b2557d9c
5
5
  SHA512:
6
- metadata.gz: 98aa70e3f509f803d1e0e2d65d2121ab81197b9d412ea57ab8c3e8750d68374e87b81a89d10d2597b5b4b58f01873985c21a47047c9df70c63cafae7d9e3d855
7
- data.tar.gz: 60d5a3851e2765a421327cb7ac105e4f132b1d96d91731eef10da0e39a44976c940360f6ae5effe9869cc230924d1b1d09dce8162cbd0a762826a7ef06a02a0c
6
+ metadata.gz: 44b48908200408e26343eebea44211327a2e379da6e0a0aca4411c8657ba9ceb281060fdbed29ace8c9180fe56b712dea6e173c50391e3e7409d58aea20fe841
7
+ data.tar.gz: 1d2ee26b44d9ddbd50c92c56289763206aed7ac7bfda0fe74800bda0eacf9f5cdbb90de73846dfb28b540878c9ff3c3989f98f4b61f54d1656046a778e8bf975
@@ -365,7 +365,7 @@ module Pkg::Paths
365
365
 
366
366
  #for ubuntu-20.04-aarch64, debian package architecture is arm64
367
367
  def package_arch(platform, arch)
368
- if platform == 'ubuntu' && arch == 'aarch64'
368
+ if %w[debian ubuntu].include?(platform) && arch == 'aarch64'
369
369
  return 'arm64'
370
370
  end
371
371
  arch
@@ -38,7 +38,7 @@ module Pkg
38
38
  },
39
39
  '11' => {
40
40
  codename: 'bullseye',
41
- architectures: ['amd64'],
41
+ architectures: ['amd64', 'aarch64'],
42
42
  source_architecture: 'source',
43
43
  package_format: 'deb',
44
44
  source_package_formats: DEBIAN_SOURCE_FORMATS,
@@ -72,7 +72,7 @@ module Pkg
72
72
  repo: true,
73
73
  },
74
74
  '9' => {
75
- architectures: ['x86_64'],
75
+ architectures: ['x86_64', 'aarch64'],
76
76
  source_architecture: 'SRPMS',
77
77
  package_format: 'rpm',
78
78
  source_package_formats: ['src.rpm'],
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.110.1
4
+ version: 0.111.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: 2023-07-21 00:00:00.000000000 Z
11
+ date: 2023-10-17 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/tar_spec.rb
312
310
  - spec/lib/packaging/repo_spec.rb
313
- - spec/lib/packaging/sign_spec.rb
314
- - spec/lib/packaging/deb/repo_spec.rb
315
311
  - spec/lib/packaging/artifactory_spec.rb
316
- - spec/lib/packaging/config_spec.rb
312
+ - spec/lib/packaging/deb/repo_spec.rb
317
313
  - spec/lib/packaging/platforms_spec.rb
318
- - spec/lib/packaging/deb_spec.rb
319
- - spec/lib/packaging/rpm/repo_spec.rb
320
- - spec/lib/packaging/util/jenkins_spec.rb
314
+ - spec/lib/packaging/retrieve_spec.rb
315
+ - spec/lib/packaging/gem_spec.rb
316
+ - spec/lib/packaging/util/version_spec.rb
317
+ - spec/lib/packaging/util/os_spec.rb
318
+ - spec/lib/packaging/util/net_spec.rb
319
+ - spec/lib/packaging/util/rake_utils_spec.rb
321
320
  - spec/lib/packaging/util/file_spec.rb
322
- - spec/lib/packaging/util/misc_spec.rb
321
+ - spec/lib/packaging/util/gpg_spec.rb
323
322
  - spec/lib/packaging/util/git_spec.rb
323
+ - spec/lib/packaging/util/ship_spec.rb
324
324
  - spec/lib/packaging/util/git_tag_spec.rb
325
+ - spec/lib/packaging/util/misc_spec.rb
326
+ - spec/lib/packaging/util/jenkins_spec.rb
325
327
  - spec/lib/packaging/util/execution_spec.rb
326
- - spec/lib/packaging/util/os_spec.rb
327
- - spec/lib/packaging/util/gpg_spec.rb
328
- - spec/lib/packaging/util/version_spec.rb
329
- - spec/lib/packaging/util/net_spec.rb
330
- - spec/lib/packaging/util/ship_spec.rb
331
- - spec/lib/packaging/util/rake_utils_spec.rb
332
- - spec/lib/packaging/retrieve_spec.rb
328
+ - spec/lib/packaging/tar_spec.rb
329
+ - spec/lib/packaging/rpm/repo_spec.rb
333
330
  - spec/lib/packaging/paths_spec.rb
334
- - spec/lib/packaging/gem_spec.rb
331
+ - spec/lib/packaging/sign_spec.rb
332
+ - spec/lib/packaging/deb_spec.rb
333
+ - spec/lib/packaging/config_spec.rb
334
+ - spec/lib/packaging_spec.rb