Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rubygem-vagrant_cloud for 
openSUSE:Factory checked in at 2021-04-10 15:25:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-vagrant_cloud (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-vagrant_cloud.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-vagrant_cloud"

Sat Apr 10 15:25:53 2021 rev:8 rq:882513 version:3.0.4

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/rubygem-vagrant_cloud/rubygem-vagrant_cloud.changes  
    2020-12-12 20:36:00.978080658 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-vagrant_cloud.new.2401/rubygem-vagrant_cloud.changes
    2021-04-10 15:25:55.742276236 +0200
@@ -1,0 +2,13 @@
+Thu Apr  1 08:45:05 UTC 2021 - Dan ??erm??k <[email protected]>
+
+- New upstream release 3.0.4
+
+# v3.0.4 (March 18, 2021)
+
+* Ensure URL is included when saving provider 
[GH-69](https://github.com/hashicorp/vagrant_cloud/pull/69)
+
+# v3.0.3 (February 19, 2021)
+
+* Save box before saving versions 
[GH-70](https://github.com/hashicorp/vagrant_cloud/pull/70)
+
+-------------------------------------------------------------------

Old:
----
  vagrant_cloud-3.0.2.gem

New:
----
  vagrant_cloud-3.0.4.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-vagrant_cloud.spec ++++++
--- /var/tmp/diff_new_pack.UxraE9/_old  2021-04-10 15:25:56.214276790 +0200
+++ /var/tmp/diff_new_pack.UxraE9/_new  2021-04-10 15:25:56.218276795 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-vagrant_cloud
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,7 @@
 # of those fields
 #
 Name:           rubygem-vagrant_cloud
-Version:        3.0.2
+Version:        3.0.4
 Release:        0
 Summary:        Ruby library for the HashiCorp Vagrant Cloud API
 License:        MIT
@@ -45,14 +45,6 @@
 %build
 
 %install
-# MANUAL
-%gem_unpack
-sed -i 's|\(.*<rest-client>.freeze, \)\["~> 2.0.2"\]|\1\["~> 2.0"\]|' 
%{mod_full_name}.gemspec
-find -type f -print0 | xargs -0 touch -r %{SOURCE0}
-%{gem_build}
-# HACK: %%gem_install uses the gem from %%{_sourcedir} by default, so we 
*must* put it back there
-mv %{mod_full_name}.gem %{_sourcedir}/
-# /MANUAL
 %gem_install \
   --doc-files="LICENSE README.md" \
   -f

++++++ gem2rpm.yml ++++++
--- /var/tmp/diff_new_pack.UxraE9/_old  2021-04-10 15:25:56.246276828 +0200
+++ /var/tmp/diff_new_pack.UxraE9/_new  2021-04-10 15:25:56.246276828 +0200
@@ -30,13 +30,7 @@
 # - bar.desktop
 # :gem_install_args: '....'
 # ## used by gem2rpm
-:pre_install: |-
-  %gem_unpack
-  sed -i 's|\(.*<rest-client>.freeze, \)\["~> 2.0.2"\]|\1\["~> 2.0"\]|' 
%{mod_full_name}.gemspec
-  find -type f -print0 | xargs -0 touch -r %{S:0}
-  %gem_build
-  # HACK: %%gem_install uses the gem from %%{_sourcedir} by default, so we 
*must* put it back there
-  mv %{mod_full_name}.gem %{_sourcedir}/
+# :pre_install: |-
 #   %if 0%{?use_system_libev}
 #   export USE_VENDORED_LIBEV="no"
 #   %endif

++++++ vagrant_cloud-3.0.2.gem -> vagrant_cloud-3.0.4.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md       2020-10-30 17:23:50.000000000 +0100
+++ new/README.md       2021-03-18 21:49:12.000000000 +0100
@@ -104,7 +104,7 @@
 
 account = VagrantCloud::Account.new(access_token: "MY_TOKEN")
 org = account.organization(name: "hashicorp")
-box = org.boxes.select { |b| b.name == "bionic64" }
+box = org.boxes.detect { |b| b.name == "bionic64" }
 
 puts "Box: #{box[:tag]} Description: #{box[:description]}"
 ```
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/vagrant_cloud/box/provider.rb 
new/lib/vagrant_cloud/box/provider.rb
--- old/lib/vagrant_cloud/box/provider.rb       2020-10-30 17:23:50.000000000 
+0100
+++ new/lib/vagrant_cloud/box/provider.rb       2021-03-18 21:49:12.000000000 
+0100
@@ -160,7 +160,8 @@
           version: version.version,
           provider: name,
           checksum: checksum,
-          checksum_type: checksum_type
+          checksum_type: checksum_type,
+          url: url
         }
         if exist?
           result = 
version.box.organization.account.client.box_version_provider_update(**req_args)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/vagrant_cloud/box.rb new/lib/vagrant_cloud/box.rb
--- old/lib/vagrant_cloud/box.rb        2020-10-30 17:23:50.000000000 +0100
+++ new/lib/vagrant_cloud/box.rb        2021-03-18 21:49:12.000000000 +0100
@@ -108,8 +108,8 @@
     #
     # @return [self]
     def save
-      save_versions if dirty?(deep: true)
       save_box if dirty?
+      save_versions if dirty?(deep: true)
       self
     end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2020-10-30 17:23:50.000000000 +0100
+++ new/metadata        2021-03-18 21:49:12.000000000 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: vagrant_cloud
 version: !ruby/object:Gem::Version
-  version: 3.0.2
+  version: 3.0.4
 platform: ruby
 authors:
 - HashiCorp
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2020-10-30 00:00:00.000000000 Z
+date: 2021-03-18 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: excon
@@ -128,7 +128,7 @@
     - !ruby/object:Gem::Version
       version: '0'
 requirements: []
-rubygems_version: 3.1.4
+rubygems_version: 3.2.3
 signing_key: 
 specification_version: 4
 summary: Vagrant Cloud API Library

Reply via email to