packaging 0.99.63 → 0.99.64

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/packaging/artifactory.rb +1 -1
  3. metadata +18 -18
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d340f56fb38934a287965903beb417d2f50cf298fd0078afdf49bfe73e13c67d
4
- data.tar.gz: 871aa1001099d2917e219ff9371dccc1eb74e6bc9da7e5802b2c543bccdba3bb
3
+ metadata.gz: 360cf557e7db16d19491fc6fb5698cdd727e7e9f322b37b1f3d3118997bf2d97
4
+ data.tar.gz: 1efaebf439461aa826e705d1cfb7744a97b1d62523046f54ce667208ca3723f9
5
5
  SHA512:
6
- metadata.gz: ff972503f300898c8e28913d632fd4c8de3693af7031ad9786fdb5c24cf4495c022b29c242568530caf85536c2fea51c3fee87a8945a538c90926b59f6aefe93
7
- data.tar.gz: 4ae65e4d41fd728ce236a26cbd6a0a475e27e62271fd7de9393bdd4cd966a20fc10ce7cb43a01030bd1bbfc256039cc958205e07c19b68f6707e6606f58a5afb
6
+ metadata.gz: cd903d1489e3ac5076ebcc80fd416056d1d73496da5fd3e71b6ede2ee6951989995eb7f8ca54fd1a0976b76d1864a7951ee5b19fb22de331dd51423c8b1ee875
7
+ data.tar.gz: 1eaa84fad5882bae156cd8382a10411e51a463b64efdc52c0b0c133d9eed88a1c86c67b6a47d313095d4c9d1ac9b1c6b331a272d811e5a1a66c9500d95686d16
@@ -531,7 +531,7 @@ module Pkg
531
531
  # @param target_path [String] path copy tarballs to, assumes same repo
532
532
  def copy_final_pe_tarballs(pe_version, repo, remote_path, target_path)
533
533
  check_authorization
534
- final_tarballs = Artifactory::Resource::Artifact.search(name: pe_version, repos: repo)
534
+ final_tarballs = Artifactory::Resource::Artifact.search(name: pe_version, repos: repo, exact_match: false)
535
535
  final_tarballs.each do |artifact|
536
536
  next unless artifact.download_uri.include? remote_path
537
537
  next if artifact.download_uri.include? "-rc"
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.63
4
+ version: 0.99.64
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet Labs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-17 00:00:00.000000000 Z
11
+ date: 2020-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -245,28 +245,28 @@ signing_key:
245
245
  specification_version: 4
246
246
  summary: Puppet Labs' packaging automation
247
247
  test_files:
248
- - spec/lib/packaging_spec.rb
249
248
  - spec/lib/packaging/sign_spec.rb
250
- - spec/lib/packaging/artifactory_spec.rb
249
+ - spec/lib/packaging/paths_spec.rb
250
+ - spec/lib/packaging/repo_spec.rb
251
251
  - spec/lib/packaging/deb_spec.rb
252
- - spec/lib/packaging/platforms_spec.rb
252
+ - spec/lib/packaging/deb/repo_spec.rb
253
253
  - spec/lib/packaging/gem_spec.rb
254
- - spec/lib/packaging/config_spec.rb
255
- - spec/lib/packaging/retrieve_spec.rb
254
+ - spec/lib/packaging/artifactory_spec.rb
255
+ - spec/lib/packaging/tar_spec.rb
256
+ - spec/lib/packaging/util/version_spec.rb
257
+ - spec/lib/packaging/util/execution_spec.rb
258
+ - spec/lib/packaging/util/os_spec.rb
259
+ - spec/lib/packaging/util/ship_spec.rb
260
+ - spec/lib/packaging/util/git_spec.rb
256
261
  - spec/lib/packaging/util/rake_utils_spec.rb
257
- - spec/lib/packaging/util/misc_spec.rb
258
- - spec/lib/packaging/util/jenkins_spec.rb
259
262
  - spec/lib/packaging/util/net_spec.rb
260
263
  - spec/lib/packaging/util/file_spec.rb
264
+ - spec/lib/packaging/util/jenkins_spec.rb
265
+ - spec/lib/packaging/util/misc_spec.rb
261
266
  - spec/lib/packaging/util/git_tag_spec.rb
262
- - spec/lib/packaging/util/execution_spec.rb
263
267
  - spec/lib/packaging/util/gpg_spec.rb
264
- - spec/lib/packaging/util/git_spec.rb
265
- - spec/lib/packaging/util/ship_spec.rb
266
- - spec/lib/packaging/util/version_spec.rb
267
- - spec/lib/packaging/util/os_spec.rb
268
- - spec/lib/packaging/repo_spec.rb
269
- - spec/lib/packaging/deb/repo_spec.rb
270
- - spec/lib/packaging/tar_spec.rb
271
- - spec/lib/packaging/paths_spec.rb
272
268
  - spec/lib/packaging/rpm/repo_spec.rb
269
+ - spec/lib/packaging/retrieve_spec.rb
270
+ - spec/lib/packaging/platforms_spec.rb
271
+ - spec/lib/packaging/config_spec.rb
272
+ - spec/lib/packaging_spec.rb