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 2021-07-07 18:30:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Sys-Virt (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Sys-Virt.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Sys-Virt"

Wed Jul  7 18:30:32 2021 rev:84 rq:904451 version:7.5.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Sys-Virt/perl-Sys-Virt.changes      
2021-06-06 22:40:20.463358638 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Sys-Virt.new.2625/perl-Sys-Virt.changes    
2021-07-07 18:31:43.526404406 +0200
@@ -1,0 +2,6 @@
+Tue Jul  6 21:52:02 UTC 2021 - James Fehlig <jfeh...@suse.com>
+
+- Update to 7.5.0
+  - Add all new APIs and constants in libvirt 7.5.0
+
+-------------------------------------------------------------------

Old:
----
  Sys-Virt-7.3.0.tar.gz

New:
----
  Sys-Virt-7.5.0.tar.gz

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

Other differences:
------------------
++++++ perl-Sys-Virt.spec ++++++
--- /var/tmp/diff_new_pack.pCRisU/_old  2021-07-07 18:31:44.058400231 +0200
+++ /var/tmp/diff_new_pack.pCRisU/_new  2021-07-07 18:31:44.062400200 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           perl-Sys-Virt
-Version:        7.3.0
+Version:        7.5.0
 Release:        0
 %define cpan_name Sys-Virt
 Summary:        Represent and manage a libvirt hypervisor connection

++++++ Sys-Virt-7.3.0.tar.gz -> Sys-Virt-7.5.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/.gitlab-ci.yml 
new/Sys-Virt-7.5.0/.gitlab-ci.yml
--- old/Sys-Virt-7.3.0/.gitlab-ci.yml   2021-05-04 11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/.gitlab-ci.yml   2021-07-02 11:50:11.000000000 +0200
@@ -5,7 +5,7 @@
   - docs
   - sanity_checks
 
-.container_job_template: &container_job_definition
+.container_job_template:
   image: docker:stable
   stage: containers
   services:
@@ -31,7 +31,7 @@
   export PATH="$VROOT/bin:$PATH"
   export PKG_CONFIG_PATH="$LIBDIR/pkgconfig"
 
-.git_build_job_template: &git_build_job_definition
+.git_build_job_template:
   image: $CI_REGISTRY_IMAGE/ci-$NAME:latest
   stage: builds
   before_script:
@@ -67,71 +67,64 @@
     variables:
       - $CI_PROJECT_NAMESPACE == 'libvirt'
 
-centos-7-container:
-  <<: *container_job_definition
-  variables:
-    NAME: centos-7
-
 centos-8-container:
-  <<: *container_job_definition
+  extends: .container_job_template
   variables:
     NAME: centos-8
 
-centos-stream-container:
-  <<: *container_job_definition
+centos-stream-8-container:
+  extends: .container_job_template
   variables:
-    NAME: centos-stream
+    NAME: centos-stream-8
 
 debian-10-container:
-  <<: *container_job_definition
+  extends: .container_job_template
   variables:
     NAME: debian-10
 
 debian-sid-container:
-  <<: *container_job_definition
+  extends: .container_job_template
   variables:
     NAME: debian-sid
 
-fedora-32-container:
-  <<: *container_job_definition
-  variables:
-    NAME: fedora-32
-
 fedora-33-container:
-  <<: *container_job_definition
+  extends: .container_job_template
   variables:
     NAME: fedora-33
 
+fedora-34-container:
+  extends: .container_job_template
+  variables:
+    NAME: fedora-34
+
 fedora-rawhide-container:
-  <<: *container_job_definition
+  extends: .container_job_template
   variables:
     NAME: fedora-rawhide
 
-opensuse-152-container:
-  <<: *container_job_definition
+opensuse-leap-152-container:
+  extends: .container_job_template
+  variables:
+    NAME: opensuse-leap-152
+
+opensuse-tumbleweed-container:
+  extends: .container_job_template
   variables:
-    NAME: opensuse-152
+    NAME: opensuse-tumbleweed
 
 ubuntu-1804-container:
-  <<: *container_job_definition
+  extends: .container_job_template
   variables:
     NAME: ubuntu-1804
 
 ubuntu-2004-container:
-  <<: *container_job_definition
+  extends: .container_job_template
   variables:
     NAME: ubuntu-2004
 
 
-centos-7-git-build:
-  <<: *git_build_job_definition
-  needs:
-    - centos-7-container
-  variables:
-    NAME: centos-7
-
 centos-8-git-build:
-  <<: *git_build_job_definition
+  extends: .git_build_job_template
   needs:
     - centos-8-container
   variables:
@@ -141,64 +134,71 @@
     paths:
       - scratch
 
-centos-stream-git-build:
-  <<: *git_build_job_definition
+centos-stream-8-git-build:
+  extends: .git_build_job_template
   needs:
-    - centos-stream-container
+    - centos-stream-8-container
   variables:
-    NAME: centos-stream
+    NAME: centos-stream-8
 
 debian-10-git-build:
-  <<: *git_build_job_definition
+  extends: .git_build_job_template
   needs:
     - debian-10-container
   variables:
     NAME: debian-10
 
 debian-sid-git-build:
-  <<: *git_build_job_definition
+  extends: .git_build_job_template
   needs:
     - debian-sid-container
   variables:
     NAME: debian-sid
 
-fedora-32-git-build:
-  <<: *git_build_job_definition
-  needs:
-    - fedora-32-container
-  variables:
-    NAME: fedora-32
-
 fedora-33-git-build:
-  <<: *git_build_job_definition
+  extends: .git_build_job_template
   needs:
     - fedora-33-container
   variables:
     NAME: fedora-33
 
+fedora-34-git-build:
+  extends: .git_build_job_template
+  needs:
+    - fedora-34-container
+  variables:
+    NAME: fedora-34
+
 fedora-rawhide-git-build:
-  <<: *git_build_job_definition
+  extends: .git_build_job_template
   needs:
     - fedora-rawhide-container
   variables:
     NAME: fedora-rawhide
 
-opensuse-152-git-build:
-  <<: *git_build_job_definition
+opensuse-leap-152-git-build:
+  extends: .git_build_job_template
+  needs:
+    - opensuse-leap-152-container
+  variables:
+    NAME: opensuse-leap-152
+
+opensuse-tumbleweed-git-build:
+  extends: .git_build_job_template
   needs:
-    - opensuse-152-container
+    - opensuse-tumbleweed-container
   variables:
-    NAME: opensuse-152
+    NAME: opensuse-tumbleweed
 
 ubuntu-1804-git-build:
-  <<: *git_build_job_definition
+  extends: .git_build_job_template
   needs:
     - ubuntu-1804-container
   variables:
     NAME: ubuntu-1804
 
 ubuntu-2004-git-build:
-  <<: *git_build_job_definition
+  extends: .git_build_job_template
   needs:
     - ubuntu-2004-container
   variables:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/Build.PL new/Sys-Virt-7.5.0/Build.PL
--- old/Sys-Virt-7.3.0/Build.PL 2021-05-04 11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/Build.PL 2021-07-02 11:50:11.000000000 +0200
@@ -17,7 +17,7 @@
 use strict;
 use warnings;
 
-my $libvirtver = "7.3.0";
+my $libvirtver = "7.5.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;
@@ -67,7 +67,7 @@
     module_name => "Sys::Virt",
     license => 'gpl',
     configure_requires => {
-       'Module::Build' => 0,
+        'Module::Build' => 0,
     },
     create_makefile_pl => 'small',
     dist_author => 'Daniel Berrange <d...@berrange.com>',
@@ -78,15 +78,15 @@
     extra_compiler_flags => $GCC_CFLAGS . $LIBVIRT_CFLAGS,
     extra_linker_flags => $LIBVIRT_LIBS,
     build_requires => {
-       'ExtUtils::CBuilder' => 0,
-       'Sys::Hostname' => 0,
-       'Test::CPAN::Changes' => 0,
-       'Test::More' => 0,
-        'Test::Pod' => '0',
-       'Test::Pod::Coverage' => '0',
-       'Time::HiRes' => 0,
-       'XML::XPath' => 0,
-       'XML::XPath::XMLParser' => 0,
+        'ExtUtils::CBuilder' => 0,
+        'Sys::Hostname' => 0,
+        'Test::CPAN::Changes' => 0,
+        'Test::More' => 0,
+        'Test::Pod' => 0,
+        'Test::Pod::Coverage' => 0,
+        'Time::HiRes' => 0,
+        'XML::XPath' => 0,
+        'XML::XPath::XMLParser' => 0,
     },
     script_files => [],
     meta_add => {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/Changes new/Sys-Virt-7.5.0/Changes
--- old/Sys-Virt-7.3.0/Changes  2021-05-04 11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/Changes  2021-07-02 11:50:11.000000000 +0200
@@ -1,6 +1,14 @@
 Revision history for perl module Sys::Virt
 
-7.3.0 2021-04-04
+7.5.0 2021-07-02
+
+ - Add VIR_FROM_CH
+
+7.4.0 2021-06-02
+
+ - Add VIR_DOMAIN_CORE_DUMP_FORMAT_WIN_DMP constant
+
+7.3.0 2021-05-04
 
  - Add virNodeDeviceCreate, virNodeDeviceDefineXML and
    virNodeDeviceUndefine
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/README new/Sys-Virt-7.5.0/README
--- old/Sys-Virt-7.3.0/README   2021-05-04 11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/README   2021-07-02 11:50:11.000000000 +0200
@@ -8,6 +8,6 @@
 Module::Build buld system. For installation instructions, consult
 the INSTALL file.
 
-The current minimum required version of libvirt is 7.3.0
+The current minimum required version of libvirt is 7.5.0
 
 -- End
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/ci/containers/ci-centos-7.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-centos-7.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-centos-7.Dockerfile     2021-05-04 
11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/ci/containers/ci-centos-7.Dockerfile     1970-01-01 
01:00:00.000000000 +0100
@@ -1,59 +0,0 @@
-# THIS FILE WAS AUTO-GENERATED
-#
-#  $ lcitool dockerfile centos-7 libvirt+minimal,libvirt-perl
-#
-# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
-
-FROM docker.io/library/centos:7
-
-RUN yum update -y && \
-    echo 'skip_missing_names_on_install=0' >> /etc/yum.conf && \
-    yum install -y epel-release && \
-    yum install -y \
-        ca-certificates \
-        ccache \
-        cpp \
-        gcc \
-        gettext \
-        git \
-        glib2-devel \
-        glibc-common \
-        glibc-devel \
-        gnutls-devel \
-        libnl3-devel \
-        libtirpc-devel \
-        libxml2 \
-        libxml2-devel \
-        libxslt \
-        make \
-        ninja-build \
-        perl \
-        perl-Archive-Tar \
-        perl-CPAN-Changes \
-        perl-Module-Build \
-        perl-Test-Pod \
-        perl-Test-Pod-Coverage \
-        perl-Time-HiRes \
-        perl-XML-XPath \
-        pkgconfig \
-        python3 \
-        python3-pip \
-        python3-setuptools \
-        python3-wheel \
-        python36-docutils \
-        rpm-build && \
-    yum autoremove -y && \
-    yum clean all -y && \
-    rpm -qa | sort > /packages.txt && \
-    mkdir -p /usr/libexec/ccache-wrappers && \
-    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
-    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
-
-RUN pip3 install \
-         meson==0.56.0
-
-ENV LANG "en_US.UTF-8"
-ENV MAKE "/usr/bin/make"
-ENV NINJA "/usr/bin/ninja-build"
-ENV PYTHON "/usr/bin/python3"
-ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/ci/containers/ci-centos-8.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-centos-8.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-centos-8.Dockerfile     2021-05-04 
11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/ci/containers/ci-centos-8.Dockerfile     2021-07-02 
11:50:11.000000000 +0200
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile centos-8 libvirt+minimal,libvirt-perl
 #
-# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/96eec529480444db063e409827cf8ebd0ad5c012
 
 FROM docker.io/library/centos:8
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Sys-Virt-7.3.0/ci/containers/ci-centos-stream-8.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-centos-stream-8.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-centos-stream-8.Dockerfile      
1970-01-01 01:00:00.000000000 +0100
+++ new/Sys-Virt-7.5.0/ci/containers/ci-centos-stream-8.Dockerfile      
2021-07-02 11:50:11.000000000 +0200
@@ -0,0 +1,63 @@
+# THIS FILE WAS AUTO-GENERATED
+#
+#  $ lcitool dockerfile centos-stream-8 libvirt+minimal,libvirt-perl
+#
+# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/96eec529480444db063e409827cf8ebd0ad5c012
+
+FROM quay.io/centos/centos:stream8
+
+RUN dnf update -y && \
+    dnf install 'dnf-command(config-manager)' -y && \
+    dnf config-manager --set-enabled -y powertools && \
+    dnf install -y centos-release-advanced-virtualization && \
+    dnf install -y epel-release && \
+    dnf install -y \
+        ca-certificates \
+        ccache \
+        cpp \
+        gcc \
+        gettext \
+        git \
+        glib2-devel \
+        glibc-devel \
+        glibc-langpack-en \
+        gnutls-devel \
+        libnl3-devel \
+        libtirpc-devel \
+        libxml2 \
+        libxml2-devel \
+        libxslt \
+        make \
+        ninja-build \
+        perl \
+        perl-Archive-Tar \
+        perl-CPAN-Changes \
+        perl-Module-Build \
+        perl-Test-Pod \
+        perl-Test-Pod-Coverage \
+        perl-Time-HiRes \
+        perl-XML-XPath \
+        perl-generators \
+        pkgconfig \
+        python3 \
+        python3-docutils \
+        python3-pip \
+        python3-setuptools \
+        python3-wheel \
+        rpcgen \
+        rpm-build && \
+    dnf autoremove -y && \
+    dnf clean all -y && \
+    rpm -qa | sort > /packages.txt && \
+    mkdir -p /usr/libexec/ccache-wrappers && \
+    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
+    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
+
+RUN pip3 install \
+         meson==0.56.0
+
+ENV LANG "en_US.UTF-8"
+ENV MAKE "/usr/bin/make"
+ENV NINJA "/usr/bin/ninja"
+ENV PYTHON "/usr/bin/python3"
+ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Sys-Virt-7.3.0/ci/containers/ci-centos-stream.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-centos-stream.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-centos-stream.Dockerfile        
2021-05-04 11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/ci/containers/ci-centos-stream.Dockerfile        
1970-01-01 01:00:00.000000000 +0100
@@ -1,65 +0,0 @@
-# THIS FILE WAS AUTO-GENERATED
-#
-#  $ lcitool dockerfile centos-stream libvirt+minimal,libvirt-perl
-#
-# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
-
-FROM docker.io/library/centos:8
-
-RUN dnf install -y centos-release-stream && \
-    dnf install -y centos-stream-release && \
-    dnf update -y && \
-    dnf install 'dnf-command(config-manager)' -y && \
-    dnf config-manager --set-enabled -y powertools && \
-    dnf install -y centos-release-advanced-virtualization && \
-    dnf install -y epel-release && \
-    dnf install -y \
-        ca-certificates \
-        ccache \
-        cpp \
-        gcc \
-        gettext \
-        git \
-        glib2-devel \
-        glibc-devel \
-        glibc-langpack-en \
-        gnutls-devel \
-        libnl3-devel \
-        libtirpc-devel \
-        libxml2 \
-        libxml2-devel \
-        libxslt \
-        make \
-        ninja-build \
-        perl \
-        perl-Archive-Tar \
-        perl-CPAN-Changes \
-        perl-Module-Build \
-        perl-Test-Pod \
-        perl-Test-Pod-Coverage \
-        perl-Time-HiRes \
-        perl-XML-XPath \
-        perl-generators \
-        pkgconfig \
-        python3 \
-        python3-docutils \
-        python3-pip \
-        python3-setuptools \
-        python3-wheel \
-        rpcgen \
-        rpm-build && \
-    dnf autoremove -y && \
-    dnf clean all -y && \
-    rpm -qa | sort > /packages.txt && \
-    mkdir -p /usr/libexec/ccache-wrappers && \
-    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
-    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
-
-RUN pip3 install \
-         meson==0.56.0
-
-ENV LANG "en_US.UTF-8"
-ENV MAKE "/usr/bin/make"
-ENV NINJA "/usr/bin/ninja"
-ENV PYTHON "/usr/bin/python3"
-ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/ci/containers/ci-debian-10.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-debian-10.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-debian-10.Dockerfile    2021-05-04 
11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/ci/containers/ci-debian-10.Dockerfile    2021-07-02 
11:50:11.000000000 +0200
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile debian-10 libvirt+minimal,libvirt-perl
 #
-# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/96eec529480444db063e409827cf8ebd0ad5c012
 
 FROM docker.io/library/debian:10-slim
 
@@ -17,6 +17,7 @@
             gcc \
             gettext \
             git \
+            libarchive-tar-perl \
             libc-dev-bin \
             libc6-dev \
             libcpan-changes-perl \
@@ -35,7 +36,7 @@
             locales \
             make \
             ninja-build \
-            perl \
+            perl-base \
             pkgconf \
             python3 \
             python3-docutils \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Sys-Virt-7.3.0/ci/containers/ci-debian-sid.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-debian-sid.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-debian-sid.Dockerfile   2021-05-04 
11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/ci/containers/ci-debian-sid.Dockerfile   2021-07-02 
11:50:11.000000000 +0200
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile debian-sid libvirt+minimal,libvirt-perl
 #
-# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/96eec529480444db063e409827cf8ebd0ad5c012
 
 FROM docker.io/library/debian:sid-slim
 
@@ -17,6 +17,7 @@
             gcc \
             gettext \
             git \
+            libarchive-tar-perl \
             libc-dev-bin \
             libc6-dev \
             libcpan-changes-perl \
@@ -36,7 +37,7 @@
             make \
             meson \
             ninja-build \
-            perl \
+            perl-base \
             pkgconf \
             python3 \
             python3-docutils \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/ci/containers/ci-fedora-32.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-fedora-32.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-fedora-32.Dockerfile    2021-05-04 
11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/ci/containers/ci-fedora-32.Dockerfile    1970-01-01 
01:00:00.000000000 +0100
@@ -1,64 +0,0 @@
-# THIS FILE WAS AUTO-GENERATED
-#
-#  $ lcitool dockerfile fedora-32 libvirt+minimal,libvirt-perl
-#
-# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
-
-FROM registry.fedoraproject.org/fedora:32
-
-RUN dnf install -y nosync && \
-    echo -e '#!/bin/sh\n\
-if test -d /usr/lib64\n\
-then\n\
-    export LD_PRELOAD=/usr/lib64/nosync/nosync.so\n\
-else\n\
-    export LD_PRELOAD=/usr/lib/nosync/nosync.so\n\
-fi\n\
-exec "$@"' > /usr/bin/nosync && \
-    chmod +x /usr/bin/nosync && \
-    nosync dnf update -y && \
-    nosync dnf install -y \
-        ca-certificates \
-        ccache \
-        cpp \
-        gcc \
-        gettext \
-        git \
-        glib2-devel \
-        glibc-devel \
-        glibc-langpack-en \
-        gnutls-devel \
-        libnl3-devel \
-        libtirpc-devel \
-        libxml2 \
-        libxml2-devel \
-        libxslt \
-        make \
-        meson \
-        ninja-build \
-        perl \
-        perl-Archive-Tar \
-        perl-CPAN-Changes \
-        perl-Module-Build \
-        perl-Test-Pod \
-        perl-Test-Pod-Coverage \
-        perl-Time-HiRes \
-        perl-XML-XPath \
-        perl-generators \
-        pkgconfig \
-        python3 \
-        python3-docutils \
-        rpcgen \
-        rpm-build && \
-    nosync dnf autoremove -y && \
-    nosync dnf clean all -y && \
-    rpm -qa | sort > /packages.txt && \
-    mkdir -p /usr/libexec/ccache-wrappers && \
-    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
-    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
-
-ENV LANG "en_US.UTF-8"
-ENV MAKE "/usr/bin/make"
-ENV NINJA "/usr/bin/ninja"
-ENV PYTHON "/usr/bin/python3"
-ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/ci/containers/ci-fedora-33.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-fedora-33.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-fedora-33.Dockerfile    2021-05-04 
11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/ci/containers/ci-fedora-33.Dockerfile    2021-07-02 
11:50:11.000000000 +0200
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile fedora-33 libvirt+minimal,libvirt-perl
 #
-# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/96eec529480444db063e409827cf8ebd0ad5c012
 
 FROM registry.fedoraproject.org/fedora:33
 
@@ -36,14 +36,15 @@
         make \
         meson \
         ninja-build \
-        perl \
         perl-Archive-Tar \
         perl-CPAN-Changes \
         perl-Module-Build \
+        perl-Sys-Hostname \
         perl-Test-Pod \
         perl-Test-Pod-Coverage \
         perl-Time-HiRes \
         perl-XML-XPath \
+        perl-base \
         perl-generators \
         pkgconfig \
         python3 \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/ci/containers/ci-fedora-34.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-fedora-34.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-fedora-34.Dockerfile    1970-01-01 
01:00:00.000000000 +0100
+++ new/Sys-Virt-7.5.0/ci/containers/ci-fedora-34.Dockerfile    2021-07-02 
11:50:11.000000000 +0200
@@ -0,0 +1,65 @@
+# THIS FILE WAS AUTO-GENERATED
+#
+#  $ lcitool dockerfile fedora-34 libvirt+minimal,libvirt-perl
+#
+# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/96eec529480444db063e409827cf8ebd0ad5c012
+
+FROM registry.fedoraproject.org/fedora:34
+
+RUN dnf install -y nosync && \
+    echo -e '#!/bin/sh\n\
+if test -d /usr/lib64\n\
+then\n\
+    export LD_PRELOAD=/usr/lib64/nosync/nosync.so\n\
+else\n\
+    export LD_PRELOAD=/usr/lib/nosync/nosync.so\n\
+fi\n\
+exec "$@"' > /usr/bin/nosync && \
+    chmod +x /usr/bin/nosync && \
+    nosync dnf update -y && \
+    nosync dnf install -y \
+        ca-certificates \
+        ccache \
+        cpp \
+        gcc \
+        gettext \
+        git \
+        glib2-devel \
+        glibc-devel \
+        glibc-langpack-en \
+        gnutls-devel \
+        libnl3-devel \
+        libtirpc-devel \
+        libxml2 \
+        libxml2-devel \
+        libxslt \
+        make \
+        meson \
+        ninja-build \
+        perl-Archive-Tar \
+        perl-CPAN-Changes \
+        perl-Module-Build \
+        perl-Sys-Hostname \
+        perl-Test-Pod \
+        perl-Test-Pod-Coverage \
+        perl-Time-HiRes \
+        perl-XML-XPath \
+        perl-base \
+        perl-generators \
+        pkgconfig \
+        python3 \
+        python3-docutils \
+        rpcgen \
+        rpm-build && \
+    nosync dnf autoremove -y && \
+    nosync dnf clean all -y && \
+    rpm -qa | sort > /packages.txt && \
+    mkdir -p /usr/libexec/ccache-wrappers && \
+    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
+    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
+
+ENV LANG "en_US.UTF-8"
+ENV MAKE "/usr/bin/make"
+ENV NINJA "/usr/bin/ninja"
+ENV PYTHON "/usr/bin/python3"
+ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Sys-Virt-7.3.0/ci/containers/ci-fedora-rawhide.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-fedora-rawhide.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-fedora-rawhide.Dockerfile       
2021-05-04 11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/ci/containers/ci-fedora-rawhide.Dockerfile       
2021-07-02 11:50:11.000000000 +0200
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile fedora-rawhide libvirt+minimal,libvirt-perl
 #
-# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/96eec529480444db063e409827cf8ebd0ad5c012
 
 FROM registry.fedoraproject.org/fedora:rawhide
 
@@ -37,14 +37,15 @@
         make \
         meson \
         ninja-build \
-        perl \
         perl-Archive-Tar \
         perl-CPAN-Changes \
         perl-Module-Build \
+        perl-Sys-Hostname \
         perl-Test-Pod \
         perl-Test-Pod-Coverage \
         perl-Time-HiRes \
         perl-XML-XPath \
+        perl-base \
         perl-generators \
         pkgconfig \
         python3 \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Sys-Virt-7.3.0/ci/containers/ci-opensuse-152.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-opensuse-152.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-opensuse-152.Dockerfile 2021-05-04 
11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/ci/containers/ci-opensuse-152.Dockerfile 1970-01-01 
01:00:00.000000000 +0100
@@ -1,56 +0,0 @@
-# THIS FILE WAS AUTO-GENERATED
-#
-#  $ lcitool dockerfile opensuse-152 libvirt+minimal,libvirt-perl
-#
-# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
-
-FROM registry.opensuse.org/opensuse/leap:15.2
-
-RUN zypper update -y && \
-    zypper install -y \
-           ca-certificates \
-           ccache \
-           cpp \
-           gcc \
-           gettext-runtime \
-           git \
-           glib2-devel \
-           glibc-devel \
-           glibc-locale \
-           libgnutls-devel \
-           libnl3-devel \
-           libtirpc-devel \
-           libxml2 \
-           libxml2-devel \
-           libxslt \
-           make \
-           ninja \
-           perl \
-           perl-Archive-Tar \
-           perl-CPAN-Changes \
-           perl-Module-Build \
-           perl-Test-Pod \
-           perl-Test-Pod-Coverage \
-           perl-XML-XPath \
-           pkgconfig \
-           python3-base \
-           python3-docutils \
-           python3-pip \
-           python3-setuptools \
-           python3-wheel \
-           rpcgen \
-           rpm-build && \
-    zypper clean --all && \
-    rpm -qa | sort > /packages.txt && \
-    mkdir -p /usr/libexec/ccache-wrappers && \
-    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
-    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
-
-RUN pip3 install \
-         meson==0.56.0
-
-ENV LANG "en_US.UTF-8"
-ENV MAKE "/usr/bin/make"
-ENV NINJA "/usr/bin/ninja"
-ENV PYTHON "/usr/bin/python3"
-ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Sys-Virt-7.3.0/ci/containers/ci-opensuse-leap-152.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-opensuse-leap-152.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-opensuse-leap-152.Dockerfile    
1970-01-01 01:00:00.000000000 +0100
+++ new/Sys-Virt-7.5.0/ci/containers/ci-opensuse-leap-152.Dockerfile    
2021-07-02 11:50:11.000000000 +0200
@@ -0,0 +1,57 @@
+# THIS FILE WAS AUTO-GENERATED
+#
+#  $ lcitool dockerfile opensuse-leap-152 libvirt+minimal,libvirt-perl
+#
+# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/96eec529480444db063e409827cf8ebd0ad5c012
+
+FROM registry.opensuse.org/opensuse/leap:15.2
+
+RUN zypper update -y && \
+    zypper install -y \
+           ca-certificates \
+           ccache \
+           cpp \
+           gcc \
+           gettext-runtime \
+           git \
+           glib2-devel \
+           glibc-devel \
+           glibc-locale \
+           libgnutls-devel \
+           libnl3-devel \
+           libtirpc-devel \
+           libxml2 \
+           libxml2-devel \
+           libxslt \
+           make \
+           ninja \
+           perl-Archive-Tar \
+           perl-CPAN-Changes \
+           perl-Module-Build \
+           perl-Test-Pod \
+           perl-Test-Pod-Coverage \
+           perl-Time-HiRes \
+           perl-XML-XPath \
+           perl-base \
+           pkgconfig \
+           python3-base \
+           python3-docutils \
+           python3-pip \
+           python3-setuptools \
+           python3-wheel \
+           rpcgen \
+           rpm-build && \
+    zypper clean --all && \
+    rpm -qa | sort > /packages.txt && \
+    mkdir -p /usr/libexec/ccache-wrappers && \
+    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
+    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
+
+RUN pip3 install \
+         meson==0.56.0
+
+ENV LANG "en_US.UTF-8"
+ENV MAKE "/usr/bin/make"
+ENV NINJA "/usr/bin/ninja"
+ENV PYTHON "/usr/bin/python3"
+ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Sys-Virt-7.3.0/ci/containers/ci-opensuse-tumbleweed.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-opensuse-tumbleweed.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-opensuse-tumbleweed.Dockerfile  
1970-01-01 01:00:00.000000000 +0100
+++ new/Sys-Virt-7.5.0/ci/containers/ci-opensuse-tumbleweed.Dockerfile  
2021-07-02 11:50:11.000000000 +0200
@@ -0,0 +1,52 @@
+# THIS FILE WAS AUTO-GENERATED
+#
+#  $ lcitool dockerfile opensuse-tumbleweed libvirt+minimal,libvirt-perl
+#
+# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/96eec529480444db063e409827cf8ebd0ad5c012
+
+FROM registry.opensuse.org/opensuse/tumbleweed:latest
+
+RUN zypper update -y && \
+    zypper install -y \
+           ca-certificates \
+           ccache \
+           cpp \
+           gcc \
+           gettext-runtime \
+           git \
+           glib2-devel \
+           glibc-devel \
+           glibc-locale \
+           libgnutls-devel \
+           libnl3-devel \
+           libtirpc-devel \
+           libxml2 \
+           libxml2-devel \
+           libxslt \
+           make \
+           meson \
+           ninja \
+           perl-Archive-Tar \
+           perl-CPAN-Changes \
+           perl-Module-Build \
+           perl-Test-Pod \
+           perl-Test-Pod-Coverage \
+           perl-Time-HiRes \
+           perl-XML-XPath \
+           perl-base \
+           pkgconfig \
+           python3-base \
+           python3-docutils \
+           rpcgen \
+           rpm-build && \
+    zypper clean --all && \
+    rpm -qa | sort > /packages.txt && \
+    mkdir -p /usr/libexec/ccache-wrappers && \
+    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
+    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
+
+ENV LANG "en_US.UTF-8"
+ENV MAKE "/usr/bin/make"
+ENV NINJA "/usr/bin/ninja"
+ENV PYTHON "/usr/bin/python3"
+ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Sys-Virt-7.3.0/ci/containers/ci-ubuntu-1804.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-ubuntu-1804.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-ubuntu-1804.Dockerfile  2021-05-04 
11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/ci/containers/ci-ubuntu-1804.Dockerfile  2021-07-02 
11:50:11.000000000 +0200
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile ubuntu-1804 libvirt+minimal,libvirt-perl
 #
-# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/96eec529480444db063e409827cf8ebd0ad5c012
 
 FROM docker.io/library/ubuntu:18.04
 
@@ -17,6 +17,7 @@
             gcc \
             gettext \
             git \
+            libarchive-tar-perl \
             libc-dev-bin \
             libc6-dev \
             libcpan-changes-perl \
@@ -35,7 +36,7 @@
             locales \
             make \
             ninja-build \
-            perl \
+            perl-base \
             pkgconf \
             python3 \
             python3-docutils \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Sys-Virt-7.3.0/ci/containers/ci-ubuntu-2004.Dockerfile 
new/Sys-Virt-7.5.0/ci/containers/ci-ubuntu-2004.Dockerfile
--- old/Sys-Virt-7.3.0/ci/containers/ci-ubuntu-2004.Dockerfile  2021-05-04 
11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/ci/containers/ci-ubuntu-2004.Dockerfile  2021-07-02 
11:50:11.000000000 +0200
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile ubuntu-2004 libvirt+minimal,libvirt-perl
 #
-# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# 
https://gitlab.com/libvirt/libvirt-ci/-/commit/96eec529480444db063e409827cf8ebd0ad5c012
 
 FROM docker.io/library/ubuntu:20.04
 
@@ -17,6 +17,7 @@
             gcc \
             gettext \
             git \
+            libarchive-tar-perl \
             libc-dev-bin \
             libc6-dev \
             libcpan-changes-perl \
@@ -35,7 +36,7 @@
             locales \
             make \
             ninja-build \
-            perl \
+            perl-base \
             pkgconf \
             python3 \
             python3-docutils \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/lib/Sys/Virt/Domain.pm 
new/Sys-Virt-7.5.0/lib/Sys/Virt/Domain.pm
--- old/Sys-Virt-7.3.0/lib/Sys/Virt/Domain.pm   2021-05-04 11:53:46.000000000 
+0200
+++ new/Sys-Virt-7.5.0/lib/Sys/Virt/Domain.pm   2021-07-02 11:50:11.000000000 
+0200
@@ -285,6 +285,10 @@
 
 The lzo compressed ELF format
 
+=item Sys::Virt::Domain::CORE_DUMP_FORMAT_WIN_DMP
+
+The Windows dump format
+
 =back
 
 =item $dom->destroy()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/lib/Sys/Virt/Error.pm 
new/Sys-Virt-7.5.0/lib/Sys/Virt/Error.pm
--- old/Sys-Virt-7.3.0/lib/Sys/Virt/Error.pm    2021-05-04 11:53:46.000000000 
+0200
+++ new/Sys-Virt-7.5.0/lib/Sys/Virt/Error.pm    2021-07-02 11:50:11.000000000 
+0200
@@ -422,6 +422,10 @@
 
 The BPF subsystem
 
+=item Sys::Virt::Error::FROM_CH
+
+The Cloud Hypervisor driver
+
 =back
 
 =head2 ERROR CODE CONSTANTS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/lib/Sys/Virt.pm 
new/Sys-Virt-7.5.0/lib/Sys/Virt.pm
--- old/Sys-Virt-7.3.0/lib/Sys/Virt.pm  2021-05-04 11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/lib/Sys/Virt.pm  2021-07-02 11:50:11.000000000 +0200
@@ -81,7 +81,7 @@
 use Sys::Virt::DomainCheckpoint;
 use Sys::Virt::Stream;
 
-our $VERSION = '7.3.0';
+our $VERSION = '7.5.0';
 require XSLoader;
 XSLoader::load('Sys::Virt', $VERSION);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-7.3.0/lib/Sys/Virt.xs 
new/Sys-Virt-7.5.0/lib/Sys/Virt.xs
--- old/Sys-Virt-7.3.0/lib/Sys/Virt.xs  2021-05-04 11:53:46.000000000 +0200
+++ new/Sys-Virt-7.5.0/lib/Sys/Virt.xs  2021-07-02 11:50:11.000000000 +0200
@@ -10066,6 +10066,7 @@
       REGISTER_CONSTANT(VIR_DOMAIN_CORE_DUMP_FORMAT_KDUMP_LZO, 
CORE_DUMP_FORMAT_KDUMP_LZO);
       REGISTER_CONSTANT(VIR_DOMAIN_CORE_DUMP_FORMAT_KDUMP_SNAPPY, 
CORE_DUMP_FORMAT_KDUMP_SNAPPY);
       REGISTER_CONSTANT(VIR_DOMAIN_CORE_DUMP_FORMAT_KDUMP_ZLIB, 
CORE_DUMP_FORMAT_KDUMP_ZLIB);
+      REGISTER_CONSTANT(VIR_DOMAIN_CORE_DUMP_FORMAT_WIN_DMP, 
CORE_DUMP_FORMAT_WIN_DMP);
 
       REGISTER_CONSTANT(VIR_DOMAIN_TIME_SYNC, TIME_SYNC);
 
@@ -10533,6 +10534,7 @@
       REGISTER_CONSTANT(VIR_FROM_DOMAIN_CHECKPOINT, FROM_DOMAIN_CHECKPOINT);
       REGISTER_CONSTANT(VIR_FROM_TPM, FROM_TPM);
       REGISTER_CONSTANT(VIR_FROM_BPF, FROM_BPF);
+      REGISTER_CONSTANT(VIR_FROM_CH, FROM_CH);
 
 
       REGISTER_CONSTANT(VIR_ERR_OK, ERR_OK);

++++++ _service ++++++
--- /var/tmp/diff_new_pack.pCRisU/_old  2021-07-07 18:31:44.190399195 +0200
+++ /var/tmp/diff_new_pack.pCRisU/_new  2021-07-07 18:31:44.190399195 +0200
@@ -1,7 +1,7 @@
 <services>
   <service name="tar_scm" mode="disabled">
     <param name="filename">Sys-Virt</param>
-    <param name="revision">v7.3.0</param>
+    <param name="revision">ce55f55c91c4bf4252bb4446d631845d0260866f</param>
     <param name="scm">git</param>
     <param name="submodules">disable</param>
     <param name="url">https://gitlab.com/libvirt/libvirt-perl.git</param>

++++++ suse-set-migration-constraints.patch ++++++
--- /var/tmp/diff_new_pack.pCRisU/_old  2021-07-07 18:31:44.202399101 +0200
+++ /var/tmp/diff_new_pack.pCRisU/_new  2021-07-07 18:31:44.206399070 +0200
@@ -2,11 +2,11 @@
 
 References: fate#316614, bsc#859868
 
-Index: Sys-Virt-7.3.0/lib/Sys/Virt/Domain.pm
+Index: Sys-Virt-7.5.0/lib/Sys/Virt/Domain.pm
 ===================================================================
---- Sys-Virt-7.3.0.orig/lib/Sys/Virt/Domain.pm
-+++ Sys-Virt-7.3.0/lib/Sys/Virt/Domain.pm
-@@ -1172,6 +1172,18 @@ omitted libvirt will auto-generate suita
+--- Sys-Virt-7.5.0.orig/lib/Sys/Virt/Domain.pm
++++ Sys-Virt-7.5.0/lib/Sys/Virt/Domain.pm
+@@ -1176,6 +1176,18 @@ omitted libvirt will auto-generate suita
  only necessary to specify this URI if the destination host has multiple
  interfaces and a specific interface is required to transmit storage data.
  
@@ -25,10 +25,10 @@
  =back
  
  =item $ddom = $dom->migrate(destcon, flags=0, dname=undef, uri=undef, 
bandwidth=0)
-Index: Sys-Virt-7.3.0/lib/Sys/Virt.xs
+Index: Sys-Virt-7.5.0/lib/Sys/Virt.xs
 ===================================================================
---- Sys-Virt-7.3.0.orig/lib/Sys/Virt.xs
-+++ Sys-Virt-7.3.0/lib/Sys/Virt.xs
+--- Sys-Virt-7.5.0.orig/lib/Sys/Virt.xs
++++ Sys-Virt-7.5.0/lib/Sys/Virt.xs
 @@ -5535,7 +5535,7 @@ _migrate(dom, destcon, newparams, flags=
       virTypedParameterPtr params;
       int nparams;

Reply via email to