Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package perl-Sys-Virt for openSUSE:Factory checked in at 2026-08-09 21:35:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Sys-Virt (Old) and /work/SRC/openSUSE:Factory/.perl-Sys-Virt.new.16738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Sys-Virt" Sun Aug 9 21:35:27 2026 rev:119 rq:1370138 version:12.6.0 Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Sys-Virt/perl-Sys-Virt.changes 2026-07-08 17:42:46.450510073 +0200 +++ /work/SRC/openSUSE:Factory/.perl-Sys-Virt.new.16738/perl-Sys-Virt.changes 2026-08-09 21:37:57.527593633 +0200 @@ -1,0 +2,6 @@ +Thu Aug 6 22:42:02 UTC 2026 - James Fehlig <[email protected]> + +- Update to 12.6.0 + - Add all new APIs and constants available in libvirt 12.6.0 + +------------------------------------------------------------------- Old: ---- Sys-Virt-12.5.0.tar.gz New: ---- Sys-Virt-12.6.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Sys-Virt.spec ++++++ --- /var/tmp/diff_new_pack.o6JdyL/_old 2026-08-09 21:37:58.011610114 +0200 +++ /var/tmp/diff_new_pack.o6JdyL/_new 2026-08-09 21:37:58.015610250 +0200 @@ -17,7 +17,7 @@ Name: perl-Sys-Virt -Version: 12.5.0 +Version: 12.6.0 Release: 0 %define cpan_name Sys-Virt Summary: Represent and manage a libvirt hypervisor connection ++++++ Sys-Virt-12.5.0.tar.gz -> Sys-Virt-12.6.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Sys-Virt-12.5.0/Build.PL new/Sys-Virt-12.6.0/Build.PL --- old/Sys-Virt-12.5.0/Build.PL 2026-07-01 17:57:00.000000000 +0200 +++ new/Sys-Virt-12.6.0/Build.PL 2026-08-05 09:46:39.000000000 +0200 @@ -17,7 +17,7 @@ use strict; use warnings; -my $libvirtver = "12.5.0"; +my $libvirtver = "12.6.0"; my $stat = system "pkg-config --atleast-version=$libvirtver libvirt"; die "cannot run pkg-config to check libvirt version" if $stat == -1; die "libvirt >= $libvirtver is required\n" unless $stat == 0; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Sys-Virt-12.5.0/Changes new/Sys-Virt-12.6.0/Changes --- old/Sys-Virt-12.5.0/Changes 2026-07-01 17:57:00.000000000 +0200 +++ new/Sys-Virt-12.6.0/Changes 2026-08-05 09:46:39.000000000 +0200 @@ -1,5 +1,9 @@ Revision history for perl module Sys::Virt +12.6.0 2026-08-05 + + - Add VIR_DOMAIN_LIFECYCLE_ACTION_PRESERVE_RUNNING constant + 12.5.0 2026-07-02 - Add VIR_CONNECT_GET_DOMAIN_CAPABILITIES_SUPPORTED_CPU_FEATURES constant diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Sys-Virt-12.5.0/README new/Sys-Virt-12.6.0/README --- old/Sys-Virt-12.5.0/README 2026-07-01 17:57:00.000000000 +0200 +++ new/Sys-Virt-12.6.0/README 2026-08-05 09:46:39.000000000 +0200 @@ -8,6 +8,6 @@ Module::Build build system. For installation instructions, consult the INSTALL file. -The current minimum required version of libvirt is 12.5.0 +The current minimum required version of libvirt is 12.6.0 -- End diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Sys-Virt-12.5.0/lib/Sys/Virt/Domain.pm new/Sys-Virt-12.6.0/lib/Sys/Virt/Domain.pm --- old/Sys-Virt-12.5.0/lib/Sys/Virt/Domain.pm 2026-07-01 17:57:00.000000000 +0200 +++ new/Sys-Virt-12.6.0/lib/Sys/Virt/Domain.pm 2026-08-05 09:46:39.000000000 +0200 @@ -666,19 +666,23 @@ with C<$period> being a value in seconds. The C<$flags> parameter is currently unused. -=item $dom->shutdown() +=item $dom->shutdown([$flags]) Request that the guest OS perform a graceful shutdown and poweroff. This usually requires some form of cooperation from the guest operating system, such as responding to an ACPI signal, or a guest agent process. For an immediate, forceful poweroff, use the C<destroy> method instead. +The optional C<$flags> parameter specifies the shutdown +mechanism, see L</SHUTDOWN CONSTANTS>. If not specified, +driver's defaults are used. =item $dom->reboot([$flags]) Request that the guest OS perform a graceful shutdown and -optionally restart. The optional C<$flags> parameter is -currently unused and if omitted defaults to zero. +optionally restart. The optional C<$flags> parameter +specifies the reboot mechanism, see L</REBOOT CONSTANTS>. +If not specified, driver's defaults are used. =item $dom->reset([$flags]) @@ -6618,6 +6622,10 @@ The coredump-restart lifecycle action +=item Sys::Virt::Domain::LIFECYCLE_ACTION_PRESERVE_RUNNING + +The preserve-running lifecycle action + =back =head2 MEMORY FAILURE ACTION CONSTANTS diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Sys-Virt-12.5.0/lib/Sys/Virt.pm new/Sys-Virt-12.6.0/lib/Sys/Virt.pm --- old/Sys-Virt-12.5.0/lib/Sys/Virt.pm 2026-07-01 17:57:00.000000000 +0200 +++ new/Sys-Virt-12.6.0/lib/Sys/Virt.pm 2026-08-05 09:46:39.000000000 +0200 @@ -92,7 +92,7 @@ use Sys::Virt::DomainCheckpoint; use Sys::Virt::Stream; -our $VERSION = '12.5.0'; +our $VERSION = '12.6.0'; require XSLoader; XSLoader::load('Sys::Virt', $VERSION); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Sys-Virt-12.5.0/lib/Sys/Virt.xs new/Sys-Virt-12.6.0/lib/Sys/Virt.xs --- old/Sys-Virt-12.5.0/lib/Sys/Virt.xs 2026-07-01 17:57:00.000000000 +0200 +++ new/Sys-Virt-12.6.0/lib/Sys/Virt.xs 2026-08-05 09:46:39.000000000 +0200 @@ -10853,6 +10853,7 @@ REGISTER_CONSTANT(VIR_DOMAIN_LIFECYCLE_ACTION_PRESERVE, LIFECYCLE_ACTION_PRESERVE); REGISTER_CONSTANT(VIR_DOMAIN_LIFECYCLE_ACTION_COREDUMP_DESTROY, LIFECYCLE_ACTION_COREDUMP_DESTROY); REGISTER_CONSTANT(VIR_DOMAIN_LIFECYCLE_ACTION_COREDUMP_RESTART, LIFECYCLE_ACTION_COREDUMP_RESTART); + REGISTER_CONSTANT(VIR_DOMAIN_LIFECYCLE_ACTION_PRESERVE_RUNNING, LIFECYCLE_ACTION_PRESERVE_RUNNING); REGISTER_CONSTANT(VIR_DOMAIN_SAVE_IMAGE_XML_SECURE, SAVE_IMAGE_XML_SECURE); ++++++ _service ++++++ --- /var/tmp/diff_new_pack.o6JdyL/_old 2026-08-09 21:37:58.175615698 +0200 +++ /var/tmp/diff_new_pack.o6JdyL/_new 2026-08-09 21:37:58.179615834 +0200 @@ -1,7 +1,7 @@ <services> <service name="tar_scm" mode="manual"> <param name="filename">Sys-Virt</param> - <param name="revision">v12.5.0</param> + <param name="revision">v12.6.0</param> <param name="scm">git</param> <param name="submodules">disable</param> <param name="url">https://gitlab.com/libvirt/libvirt-perl.git</param>
