public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Steven Pritchard <steve@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/perl-Sys-Virt] epel10: More documentation fixes.
Date: Mon, 29 Jun 2026 14:31:48 GMT [thread overview]
Message-ID: <178274350855.1.746251480227228878.rpms-perl-Sys-Virt-a28de3d7a0d2@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/perl-Sys-Virt
Branch : epel10
Commit : a28de3d7a0d22b32f92ee090adaf34924ec1b5e8
Author : Steven Pritchard <steve@fedoraproject.org>
Date : 2006-08-19T23:18:10+00:00
Stats : +147/-17 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/perl-Sys-Virt/c/a28de3d7a0d22b32f92ee090adaf34924ec1b5e8?branch=epel10
Log:
More documentation fixes.
---
diff --git a/Sys-Virt-Domain-doc.patch b/Sys-Virt-Domain-doc.patch
deleted file mode 100644
index 4b4aefa..0000000
--- a/Sys-Virt-Domain-doc.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- Sys-Virt-0.1.1/lib/Sys/Virt/Domain.pm.orig 2006-06-22 18:06:14.000000000 -0500
-+++ Sys-Virt-0.1.1/lib/Sys/Virt/Domain.pm 2006-08-12 15:39:40.000000000 -0500
-@@ -136,7 +136,11 @@
-
- The current memory allocated to the domain in kilobytes
-
--=item nrVirtCpus
-+=item cpuTime
-+
-+The amount of CPU time used by the domain
-+
-+=item nrVirtCpu
-
- The current number of virtual CPUs enabled in the domain
-
diff --git a/Sys-Virt-doc.patch b/Sys-Virt-doc.patch
new file mode 100644
index 0000000..2278147
--- /dev/null
+++ b/Sys-Virt-doc.patch
@@ -0,0 +1,142 @@
+--- Sys-Virt-0.1.1/lib/Sys/Virt.pm.orig 2006-06-22 18:08:42.000000000 -0500
++++ Sys-Virt-0.1.1/lib/Sys/Virt.pm 2006-08-19 18:07:08.000000000 -0500
+@@ -55,7 +55,7 @@
+ specify explicit addresses for other types of hypervisor connection.
+ If the optional C<readonly> parameter is supplied, then an unprivileged
+ connection to the VMM will be attempted. If it is not supplied, then it
+-defaults to making a fully privileged connection to the VMM. THis in turn
++defaults to making a fully privileged connection to the VMM. This in turn
+ requires that the calling application be running as root.
+
+ =cut
+@@ -202,7 +202,7 @@
+
+ =item my $type = $vmm->get_type()
+
+-Return the type of virtualization backend accessed by this VMM object. Curently
++Return the type of virtualization backend accessed by this VMM object. Currently
+ the only supported type is C<Xen>.
+
+ =cut
+@@ -217,7 +217,7 @@
+
+ =item my $ver = $vmm->get_major_version
+
+-Return the major version number of the libvirt library
++Return the major version number of the libvirt library.
+
+ =cut
+
+@@ -230,7 +230,7 @@
+
+ =item my $ver = $vmm->get_minor_version
+
+-Return the minor version number of the libvirt library
++Return the minor version number of the libvirt library.
+
+ =cut
+
+@@ -243,7 +243,7 @@
+
+ =item my $ver = $vmm->get_micro_version
+
+-Return the micro version number of the libvirt library
++Return the micro version number of the libvirt library.
+
+ =cut
+
+@@ -259,7 +259,7 @@
+ =item my $info = $con->get_node_info()
+
+ Returns a hash reference summarising the capabilities of the host
+-node. The elements of the hash ar
++node. The elements of the hash are as follows:
+
+ =over 4
+
+@@ -302,7 +302,7 @@
+ =head1 BUGS
+
+ Hopefully none, but the XS code needs to be audited to ensure it
+-is not leaking memory
++is not leaking memory.
+
+ =head1 AUTHORS
+
+@@ -312,7 +312,7 @@
+
+ Copyright (C) 2006 Red Hat
+
+-Sys::Virt is distributed under the terms of the GPLv2 or later
++Sys::Virt is distributed under the terms of the GPLv2 or later.
+
+ =head1 SEE ALSO
+
+--- Sys-Virt-0.1.1/lib/Sys/Virt/Domain.pm.orig 2006-06-22 18:06:14.000000000 -0500
++++ Sys-Virt-0.1.1/lib/Sys/Virt/Domain.pm 2006-08-19 17:52:27.000000000 -0500
+@@ -124,7 +124,7 @@
+ =item my $info = $dom->get_info()
+
+ Returns a hash reference summarising the execution state of the
+-domain. The elements of the hash ar
++domain. The elements of the hash are as follows:
+
+ =over 4
+
+@@ -136,7 +136,11 @@
+
+ The current memory allocated to the domain in kilobytes
+
+-=item nrVirtCpus
++=item cpuTime
++
++The amount of CPU time used by the domain
++
++=item nrVirtCpu
+
+ The current number of virtual CPUs enabled in the domain
+
+@@ -150,7 +154,7 @@
+ =item $dom->set_max_memory($mem)
+
+ Set the maximum memory for the domain to the value C<$mem>. The
+-value of the C<$mem> parameter is specified in kilobytes
++value of the C<$mem> parameter is specified in kilobytes.
+
+ =item $mem = $dom->get_max_memory()
+
+@@ -165,12 +169,12 @@
+
+ =item $dom->shutdown()
+
+-Request that the guest OS perform a gracefull shutdown and
++Request that the guest OS perform a graceful shutdown and
+ poweroff.
+
+ =item $dom->reboot($flags)
+
+-Request that the guest OS perform a gracefull shutdown and
++Request that the guest OS perform a graceful shutdown and
+ optionally restart. The C<$flags> parameter determines how
+ the domain restarts (if at all). It should be one of the
+ constants &Sys::Virt::Domain::REBOOT_* listed later in this
+--- Sys-Virt-0.1.1/lib/Sys/Virt/Error.pm.orig 2006-06-22 18:06:14.000000000 -0500
++++ Sys-Virt-0.1.1/lib/Sys/Virt/Error.pm 2006-08-19 18:11:46.000000000 -0500
+@@ -37,7 +37,7 @@
+
+ =item my $code = $err->code
+
+-Return the raw error code represented by this error
++Return the raw error code represented by this error.
+
+ =cut
+
+@@ -70,7 +70,7 @@
+
+ Copyright (C) 2006 Red Hat
+
+-Sys::Virt is distributed under the terms of the GPLv2 or later
++Sys::Virt is distributed under the terms of the GPLv2 or later.
+
+ =head1 SEE ALSO
+
diff --git a/perl-Sys-Virt.spec b/perl-Sys-Virt.spec
index 26bd82b..645f702 100644
--- a/perl-Sys-Virt.spec
+++ b/perl-Sys-Virt.spec
@@ -1,12 +1,12 @@
Name: perl-Sys-Virt
Version: 0.1.1
-Release: 5%{?dist}
+Release: 6%{?dist}
Summary: Represent and manage a libvirt hypervisor connection
License: GPL
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
-Patch0: Sys-Virt-Domain-doc.patch
+Patch0: Sys-Virt-doc.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: perl(Test::Pod)
BuildRequires: perl(Test::Pod::Coverage)
@@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man3/*
%changelog
+* Sat Aug 19 2006 Steven Pritchard <steve@kspei.com> 0.1.1-6
+- More documentation fixes.
+
* Fri Aug 18 2006 Steven Pritchard <steve@kspei.com> 0.1.1-5
- Make this spec work on FC5 or FC6.
- Add ExclusiveArch to match xen and libvirt.
reply other threads:[~2026-06-29 14:31 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178274350855.1.746251480227228878.rpms-perl-Sys-Virt-a28de3d7a0d2@fedoraproject.org \
--to=steve@fedoraproject.org \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox