public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/perl-Sys-Virt] epel10.2: Update to 0.9.7 release
@ 2026-06-30  7:30 Daniel P. Berrange
  0 siblings, 0 replies; only message in thread
From: Daniel P. Berrange @ 2026-06-30  7:30 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/perl-Sys-Virt
Branch : epel10.2
Commit : 53682dbcc997421e1ecb48e5bd9796a5b226c8f3
Author : Daniel P. Berrange <berrange@redhat.com>
Date   : 2011-11-08T21:07:02+00:00
Stats  : +7/-58 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/perl-Sys-Virt/c/53682dbcc997421e1ecb48e5bd9796a5b226c8f3?branch=epel10.2

Log:
Update to 0.9.7 release

---
diff --git a/Sys-Virt-0.9.5-open-console.patch b/Sys-Virt-0.9.5-open-console.patch
deleted file mode 100644
index 37ac788..0000000
--- a/Sys-Virt-0.9.5-open-console.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-commit 2ed301207745f0750e4fc717e1eb7993431cb31b
-Author: Daniel P. Berrange <berrange@redhat.com>
-Date:   Fri Oct 7 13:57:02 2011 +0100
-
-    Add missing binding for open_console
-
-diff --git a/Virt.xs b/Virt.xs
-index 673fe8b..dd54415 100644
---- a/Virt.xs
-+++ b/Virt.xs
-@@ -2199,6 +2199,21 @@ PREINIT:
-       XPUSHs(sv_2mortal(newSViv(reason)));
- 
- 
-+void
-+open_console(dom, st, devname, flags=0)
-+      virDomainPtr dom;
-+      virStreamPtr st;
-+      SV *devname;
-+      unsigned int flags;
-+ PREINIT:
-+      const char *devnamestr = NULL;
-+  PPCODE:
-+      if (SvOK(devname))
-+          devnamestr = SvPV_nolen(devname);
-+
-+      if (virDomainOpenConsole(dom, devnamestr, st, flags) < 0) {
-+          _croak_error(virGetLastError());
-+      }
- 
- void
- screenshot(dom, st, screen, flags=0)
-diff --git a/lib/Sys/Virt/Domain.pm b/lib/Sys/Virt/Domain.pm
-index 7e9c4d6..ec2dcc0 100644
---- a/lib/Sys/Virt/Domain.pm
-+++ b/lib/Sys/Virt/Domain.pm
-@@ -725,6 +725,15 @@ The C<$flags> parameter is currently unused and defaults to zero.
- Trigger an NMI in the guest virtual machine. The C<$flags> parameter
- is currently unused and defaults to 0.
- 
-+=item $dom->open_console($st, $devname, $flags)
-+
-+Open the text console for a serial, parallel or paravirt console
-+device identified by C<$devname>, connecting it to the stream
-+C<$st>. If C<$devname> is undefined, the default console will be
-+opened. C<$st> must be a C<Sys::Virt::Stream> object used for
-+bi-directional communication with the console. C<$flags> is
-+currently unused, defaulting to 0.
-+
- =item $dom->screenshot($st, $screen, $flags)
- 
- Capture a screenshot of the virtual machine's monitor. The C<$screen>

diff --git a/perl-Sys-Virt.spec b/perl-Sys-Virt.spec
index 56df207..2eeb1b6 100644
--- a/perl-Sys-Virt.spec
+++ b/perl-Sys-Virt.spec
@@ -1,18 +1,17 @@
 Name:           perl-Sys-Virt
-Version:        0.9.5
-Release:        2%{?dist}
+Version:        0.9.7
+Release:        1%{?dist}
 Summary:        Represent and manage a libvirt hypervisor connection
 License:        GPLv2+ or Artistic
 Group:          Development/Libraries
 URL:            http://search.cpan.org/dist/Sys-Virt/
 Source0:        http://www.cpan.org/authors/id/D/DA/DANBERR/Sys-Virt-%{version}.tar.gz
-Patch1:         Sys-Virt-%{version}-open-console.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(Test::Pod)
 BuildRequires:  perl(Test::Pod::Coverage)
 BuildRequires:  perl(XML::XPath)
-BuildRequires:  libvirt-devel >= 0.9.5
+BuildRequires:  libvirt-devel >= 0.9.7
 Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
 
 %description
@@ -22,7 +21,6 @@ virtualization containers to be managed with a consistent API.
 
 %prep
 %setup -q -n Sys-Virt-%{version}
-%patch1 -p1
 
 sed -i -e '/Sys-Virt\.spec/d' Makefile.PL
 sed -i -e '/\.spec\.PL$/d' MANIFEST
@@ -57,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Tue Nov  8 2011 Daniel P. Berrange <berrange@redhat.com> - 0.9.7-1
+- Update to 0.9.7 release
+
 * Mon Oct 17 2011 Daniel P. Berrange <berrange@redhat.com> - 0.9.5-2
 - Add binding for virDomainOpenConsole
 

diff --git a/sources b/sources
index 386ca3a..c3c07be 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-bf73d3260a2c355037a97936a24c28e7  Sys-Virt-0.9.5.tar.gz
+cd72f727fd4d423bd37850b96677e1e1  Sys-Virt-0.9.7.tar.gz

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-06-30  7:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-30  7:30 [rpms/perl-Sys-Virt] epel10.2: Update to 0.9.7 release Daniel P. Berrange

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox