commit rubygem-fog-libvirt for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-fog-libvirt for openSUSE:Factory checked in at 2024-08-16 12:40:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-fog-libvirt (Old) and /work/SRC/openSUSE:Factory/.rubygem-fog-libvirt.new.2698 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "rubygem-fog-libvirt" Fri Aug 16 12:40:41 2024 rev:7 rq:1194270 version:0.12.1 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-fog-libvirt/rubygem-fog-libvirt.changes 2023-11-15 21:08:38.720380791 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-fog-libvirt.new.2698/rubygem-fog-libvirt.changes 2024-08-16 12:40:44.185858020 +0200 @@ -1,0 +2,5 @@ +Tue Jul 16 09:31:22 UTC 2024 - Dan Čermák <dan.cermak@posteo.net> + +- New upstream release 0.12.1, no changelog found + +------------------------------------------------------------------- Old: ---- fog-libvirt-0.12.0.gem New: ---- fog-libvirt-0.12.1.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-fog-libvirt.spec ++++++ --- /var/tmp/diff_new_pack.JXak33/_old 2024-08-16 12:40:45.681920582 +0200 +++ /var/tmp/diff_new_pack.JXak33/_new 2024-08-16 12:40:45.681920582 +0200 @@ -1,7 +1,7 @@ # # spec file for package rubygem-fog-libvirt # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,7 +24,7 @@ # Name: rubygem-fog-libvirt -Version: 0.12.0 +Version: 0.12.1 Release: 0 %define mod_name fog-libvirt %define mod_full_name %{mod_name}-%{version} ++++++ fog-libvirt-0.12.0.gem -> fog-libvirt-0.12.1.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Gemfile new/Gemfile --- old/Gemfile 2023-11-10 16:04:43.000000000 +0100 +++ new/Gemfile 2024-07-15 16:59:51.000000000 +0200 @@ -6,4 +6,7 @@ gem "octokit", :require => false end +# 0.8.3 breaks our tests +gem "ruby-libvirt", ">= 0.7.0", "< 0.8.3" + gemspec Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fog-libvirt.gemspec new/fog-libvirt.gemspec --- old/fog-libvirt.gemspec 2023-11-10 16:04:43.000000000 +0100 +++ new/fog-libvirt.gemspec 2024-07-15 16:59:51.000000000 +0200 @@ -33,7 +33,6 @@ s.add_development_dependency("net-ssh") s.add_development_dependency("minitest", "~> 5.0") - s.add_development_dependency("minitest-stub-const") s.add_development_dependency("pry") s.add_development_dependency("rake") s.add_development_dependency("rubocop") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/fog/libvirt/models/compute/server.rb new/lib/fog/libvirt/models/compute/server.rb --- old/lib/fog/libvirt/models/compute/server.rb 2023-11-10 16:04:43.000000000 +0100 +++ new/lib/fog/libvirt/models/compute/server.rb 2024-07-15 16:59:51.000000000 +0200 @@ -90,12 +90,13 @@ volumes.first.path if volumes and volumes.first end - def destroy(options={ :destroy_volumes => false, :flags => 0 }) + def destroy(options={ :destroy_volumes => false, :flags => ::Libvirt::Domain::UNDEFINE_NVRAM }) poweroff unless stopped? - if options.fetch(:flags, 0).zero? + flags = options.fetch(:flags, ::Libvirt::Domain::UNDEFINE_NVRAM) + if flags.zero? service.vm_action(uuid, :undefine) else - service.vm_action(uuid, :undefine, options[:flags]) + service.vm_action(uuid, :undefine, flags) end volumes.each { |vol| vol.destroy } if options[:destroy_volumes] true @@ -408,7 +409,7 @@ graphics.autoport = "yes" end graphics.listen = display[:listen] unless display[:listen].empty? - graphics.password = display[:password] unless display[:password].empty? + graphics.passwd = display[:password] unless display[:password].empty? xml.video do xml.model(:type => "cirrus", :vram => 9216, :heads => 1) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/fog/libvirt/version.rb new/lib/fog/libvirt/version.rb --- old/lib/fog/libvirt/version.rb 2023-11-10 16:04:43.000000000 +0100 +++ new/lib/fog/libvirt/version.rb 2024-07-15 16:59:51.000000000 +0200 @@ -1,5 +1,5 @@ module Fog module Libvirt - VERSION = '0.12.0' + VERSION = '0.12.1' end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2023-11-10 16:04:43.000000000 +0100 +++ new/metadata 2024-07-15 16:59:51.000000000 +0200 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: fog-libvirt version: !ruby/object:Gem::Version - version: 0.12.0 + version: 0.12.1 platform: ruby authors: - geemus (Wesley Beary) autorequire: bindir: bin cert_chain: [] -date: 2023-11-10 00:00:00.000000000 Z +date: 2024-07-15 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: fog-core @@ -109,20 +109,6 @@ - !ruby/object:Gem::Version version: '5.0' - !ruby/object:Gem::Dependency - name: minitest-stub-const - requirement: !ruby/object:Gem::Requirement - requirements: - - - ">=" - - !ruby/object:Gem::Version - version: '0' - type: :development - prerelease: false - version_requirements: !ruby/object:Gem::Requirement - requirements: - - - ">=" - - !ruby/object:Gem::Version - version: '0' -- !ruby/object:Gem::Dependency name: pry requirement: !ruby/object:Gem::Requirement requirements: @@ -334,7 +320,7 @@ - !ruby/object:Gem::Version version: '0' requirements: [] -rubygems_version: 3.4.10 +rubygems_version: 3.4.19 signing_key: specification_version: 2 summary: Module for the 'fog' gem to support libvirt
participants (1)
-
Source-Sync