Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (07b2fd2c48c3e6a0b79da40df0b51081f6d67afd)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (07b2fd2c48c3e6a0b79da40df0b51081f6d67afd)
  • Date: Tue, 12 Feb 2008 12:54:02 -0600

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

ChangeLog | 8 +++++
gnome2-libs/vte/HISTORY | 3 +
gnome2-libs/vte/PRE_SUB_DEPENDS | 6 +++
gnome2-libs/vte/SUB_DEPENDS | 8 +++++
libs/libvirt/BUILD | 5 +++
libs/libvirt/CONFIGURE | 5 +++
libs/libvirt/DEPENDS | 29 +++++++++++++++++++
libs/libvirt/DETAILS | 20 +++++++++++++
libs/libvirt/HISTORY | 5 +++
libs/libvirt/libvirt-0.4.0.tar.gz.sig |binary
python-pypi/urlgrabber/DEPENDS | 1
python-pypi/urlgrabber/DETAILS | 24 +++++++++++++++
python-pypi/urlgrabber/HISTORY | 3 +
python-pypi/urlgrabber/urlgrabber-3.1.0.tar.gz.sig |binary
python-pypi/virtinst/DEPENDS | 3 +
python-pypi/virtinst/DETAILS | 17 +++++++++++
python-pypi/virtinst/HISTORY | 3 +
python-pypi/virtinst/virtinst-0.300.1.tar.gz.sig |binary
utils/virt-manager/DEPENDS | 15 +++++++++
utils/virt-manager/DETAILS | 31
++++++++++++++++++++
utils/virt-manager/HISTORY | 3 +
utils/virt-manager/virt-manager-0.5.3.tar.gz.sig |binary
x11/gtk-vnc/BUILD | 4 ++
x11/gtk-vnc/CONFIGURE | 2 +
x11/gtk-vnc/DEPENDS | 6 +++
x11/gtk-vnc/DETAILS | 32
+++++++++++++++++++++
x11/gtk-vnc/HISTORY | 3 +
x11/gtk-vnc/PRE_SUB_DEPENDS | 6 +++
x11/gtk-vnc/SUB_DEPENDS | 8 +++++
x11/gtk-vnc/gtk-vnc-0.3.3.tar.gz.sig |binary
x11/virt-viewer/DEPENDS | 2 +
x11/virt-viewer/DETAILS | 19 ++++++++++++
x11/virt-viewer/HISTORY | 3 +
x11/virt-viewer/virt-viewer-0.0.1.tar.gz.sig |binary
34 files changed, 274 insertions(+)

New commits:
commit 5b4b82e209dc11cf3ef167b6fde337f0667ab30e
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

virt-manager: Added a virtual machine manager

commit 4b86e38183421bede091ce49dcbce09b895d1d80
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

vte: Allow forcing pygtk2 dependency

commit 22f89cef4ee48e9e0644240db44e0f58d578dd0c
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

virt-viewer: Added a GTK virtualization viewer

commit 706bed52129e1253a3aa52f60d81fdc8d07a33c6
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

gtk-vnc: Added a GTK VNC viewer widget

commit 2c8ec647d40fb7b468ddd0cbb0110beb138c0b5e
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

virtinst: Added a virtual machine installation tool

commit 4effdaeb69dab96bbcb8ef8e8b9df4e7767ddae2
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

urlgrabber: Added a Python library for simple file fetching

commit 42bfe6c5127738667ed94d48100cbadf7e8d2eec
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libvirt: Added a C toolkit for virtualization

diff --git a/ChangeLog b/ChangeLog
index 0b366a9..2688713 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-02-11 Eric Sandall <sandalle AT sourcemage.org>
+ * libs/libvirt: Added C toolkit for virtualization
+ * python-pypi/urlgrabber: Added a Python library for simple file
fetching
+ * python-pypi/virtinst: Added a virtual machine installation tool
+ * x11/gtk-vnc: Added a GTK VNC viewer widget
+ * x11/virt-viewer: Added a GTK virtualization viewer
+ * utils/virt-manager: Added a virtual machine manager
+
2008-02-11 Justin Boffemmyer <flux AT sourcemage.org>
* mail/fdm: new spell, mail fetch, filter, and delivery agent

diff --git a/gnome2-libs/vte/HISTORY b/gnome2-libs/vte/HISTORY
index be25bdb..0680ac0 100644
--- a/gnome2-libs/vte/HISTORY
+++ b/gnome2-libs/vte/HISTORY
@@ -1,3 +1,6 @@
+2008-02-11 Eric Sandall <sandalle AT sourcemage.org>
+ * PRE_SUB_DEPENDS, SUB_DEPENDS: Allow packages to require pygtk2
+
2008-01-10 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 0.16.12

diff --git a/gnome2-libs/vte/PRE_SUB_DEPENDS b/gnome2-libs/vte/PRE_SUB_DEPENDS
new file mode 100755
index 0000000..b14871b
--- /dev/null
+++ b/gnome2-libs/vte/PRE_SUB_DEPENDS
@@ -0,0 +1,6 @@
+case $THIS_SUB_DEPENDS in
+ pygtk2) is_depends_enabled $SPELL pygtk2 && return 0
+ ;;
+esac
+
+return 1
diff --git a/gnome2-libs/vte/SUB_DEPENDS b/gnome2-libs/vte/SUB_DEPENDS
new file mode 100755
index 0000000..c1d4ea1
--- /dev/null
+++ b/gnome2-libs/vte/SUB_DEPENDS
@@ -0,0 +1,8 @@
+case $THIS_SUB_DEPENDS in
+ pygtk2) echo "pygtk2 bindings requested, forcing them."
+ depends pygtk2 '--with-python'
+ ;;
+ *) echo "unknown sub-depends!"
+ return 1
+ ;;
+esac
diff --git a/libs/libvirt/BUILD b/libs/libvirt/BUILD
new file mode 100755
index 0000000..2771a88
--- /dev/null
+++ b/libs/libvirt/BUILD
@@ -0,0 +1,5 @@
+OPTS="$LIBVIRT_REMOTE \
+ $LIBVIRT_LIBVIRTD \
+ $OPTS" &&
+
+default_build
diff --git a/libs/libvirt/CONFIGURE b/libs/libvirt/CONFIGURE
new file mode 100755
index 0000000..64dee42
--- /dev/null
+++ b/libs/libvirt/CONFIGURE
@@ -0,0 +1,5 @@
+config_query_option LIBVIRT_REMOTE 'Build remote driver support?' y \
+ '--with-remote' '--without-remote' &&
+
+config_query_option LIBVIRT_LIBVIRTD 'Build libvirtd support?' y \
+ '--with-libvirtd' '--without-libvirtd'
diff --git a/libs/libvirt/DEPENDS b/libs/libvirt/DEPENDS
new file mode 100755
index 0000000..d323559
--- /dev/null
+++ b/libs/libvirt/DEPENDS
@@ -0,0 +1,29 @@
+depends gnutls &&
+depends libxml2 &&
+depends python &&
+depends readline &&
+
+optional_depends avahi \
+ '--with-avahi' \
+ '--without-avahi' \
+ 'for Avahi remote daemon advertising' &&
+
+optional_depends cyrus-sasl \
+ '--with-sasl' \
+ '--without-sasl' \
+ 'for Cyrus SASL authentication support' &&
+
+optional_depends gettext \
+ '--enable-nls' \
+ '--disable-nls' \
+ 'for Native Language support' &&
+
+optional_depends iptables \
+ '' \
+ '' \
+ 'for IP table routing support' &&
+
+optional_depends xen \
+ '--with-xen' \
+ '--without-xen' \
+ 'for XEN hypervisor support'
diff --git a/libs/libvirt/DETAILS b/libs/libvirt/DETAILS
new file mode 100755
index 0000000..52dc1bc
--- /dev/null
+++ b/libs/libvirt/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=libvirt
+ VERSION=0.4.0
+ SOURCE=$SPELL-$VERSION.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=ftp://libvirt.org/libvirt/$SOURCE
+ SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
+ LICENSE[0]=LGPL
+ WEB_SITE=http://libvirt.org/
+ KEYWORDS="libs virtualization"
+ ENTERED=20080211
+ SHORT='C toolkit for virtualization'
+cat << EOF
+Libvirt is a C toolkit to interact with the virtualization capabilities of
+recent versions of Linux (and other OSes). It is free software available
under
+the GNU Lesser General Public License. Virtualization of the Linux Operating
+System means the ability to run multiple instances of Operating Systems
+concurently on a single hardware system where the basic resources are driven
by
+a Linux (or Solaris) instance. The library aims at providing a long term
stable
+C API initially for Xen paravirtualization but it can also integrate with
othervirtualization mechanisms. It currently also supports QEMU, KVM and
OpenVZ.
+EOF
diff --git a/libs/libvirt/HISTORY b/libs/libvirt/HISTORY
new file mode 100644
index 0000000..062170a
--- /dev/null
+++ b/libs/libvirt/HISTORY
@@ -0,0 +1,5 @@
+2008-02-11 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS, CONFIGURE, DEPENDS, BUILD: Created
+ Depends on xen-tools and xen-hypervisor, which xen takes care of
+ and also lists linux and xen-docs for additional support
+
diff --git a/libs/libvirt/libvirt-0.4.0.tar.gz.sig
b/libs/libvirt/libvirt-0.4.0.tar.gz.sig
new file mode 100644
index 0000000..2a18c9d
Binary files /dev/null and b/libs/libvirt/libvirt-0.4.0.tar.gz.sig differ
diff --git a/python-pypi/urlgrabber/DEPENDS b/python-pypi/urlgrabber/DEPENDS
new file mode 100755
index 0000000..867b4d4
--- /dev/null
+++ b/python-pypi/urlgrabber/DEPENDS
@@ -0,0 +1 @@
+depends python
diff --git a/python-pypi/urlgrabber/DETAILS b/python-pypi/urlgrabber/DETAILS
new file mode 100755
index 0000000..0e0439a
--- /dev/null
+++ b/python-pypi/urlgrabber/DETAILS
@@ -0,0 +1,24 @@
+ SPELL=urlgrabber
+ VERSION=3.1.0
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=http://linux.duke.edu/projects/$SPELL/download/$SOURCE
+ SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
+ LICENSE[0]=LGPL
+ WEB_SITE=http://linux.duke.edu/projects/urlgrabber/
+ KEYWORDS="python url"
+ ENTERED=20080211
+ SHORT='Python library for simple file fetching'
+cat << EOF
+urlgrabber is a pure python package that drastically simplifies the fetching
of
+files. It is designed to be used in programs that need common (but not
+necessarily simple) url-fetching features. It is extremely simple to drop
into
+an existing program and provides a clean interface to protocol-independent
+file-access. Best of all, urlgrabber takes care of all those pesky
+file-fetching details, and lets you focus on whatever it is that your program
+is written to do!
+
+urlgrabber came into existence as the part of yum that downloads rpms and
+header files, but it quickly became clear that this is a general problem that
+many applications must deal with.
+EOF
diff --git a/python-pypi/urlgrabber/HISTORY b/python-pypi/urlgrabber/HISTORY
new file mode 100644
index 0000000..425fcc9
--- /dev/null
+++ b/python-pypi/urlgrabber/HISTORY
@@ -0,0 +1,3 @@
+2008-02-11 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS, DEPENDS: Created
+
diff --git a/python-pypi/urlgrabber/urlgrabber-3.1.0.tar.gz.sig
b/python-pypi/urlgrabber/urlgrabber-3.1.0.tar.gz.sig
new file mode 100644
index 0000000..e9dfc22
Binary files /dev/null and
b/python-pypi/urlgrabber/urlgrabber-3.1.0.tar.gz.sig differ
diff --git a/python-pypi/virtinst/DEPENDS b/python-pypi/virtinst/DEPENDS
new file mode 100755
index 0000000..8d2cc5c
--- /dev/null
+++ b/python-pypi/virtinst/DEPENDS
@@ -0,0 +1,3 @@
+depends libvirt &&
+depends -sub "python" libxml2 &&
+depends urlgrabber
diff --git a/python-pypi/virtinst/DETAILS b/python-pypi/virtinst/DETAILS
new file mode 100755
index 0000000..a021825
--- /dev/null
+++ b/python-pypi/virtinst/DETAILS
@@ -0,0 +1,17 @@
+ SPELL=virtinst
+ VERSION=0.300.1
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+
SOURCE_URL[0]=http://virt-manager.et.redhat.com/download/sources/$SPELL/$SOURCE
+ SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
+ LICENSE[0]=GPL
+ WEB_SITE=http://virt-manager.et.redhat.com/
+ KEYWORDS="util virtualization"
+ ENTERED=20080211
+ SHORT='Virtual machine installation tool'
+cat << EOF
+The "Virt Install" tool (virt-install for short command name, virtinst for
+package name) is a command line tool which provides an easy way to provision
+operating systems into virtual machines. It also provides an API to the
+virt-manager application for its graphical VM creation wizard.
+EOF
diff --git a/python-pypi/virtinst/HISTORY b/python-pypi/virtinst/HISTORY
new file mode 100644
index 0000000..425fcc9
--- /dev/null
+++ b/python-pypi/virtinst/HISTORY
@@ -0,0 +1,3 @@
+2008-02-11 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS, DEPENDS: Created
+
diff --git a/python-pypi/virtinst/virtinst-0.300.1.tar.gz.sig
b/python-pypi/virtinst/virtinst-0.300.1.tar.gz.sig
new file mode 100644
index 0000000..3af94fa
Binary files /dev/null and b/python-pypi/virtinst/virtinst-0.300.1.tar.gz.sig
differ
diff --git a/utils/virt-manager/DEPENDS b/utils/virt-manager/DEPENDS
new file mode 100755
index 0000000..f56cdbb
--- /dev/null
+++ b/utils/virt-manager/DEPENDS
@@ -0,0 +1,15 @@
+depends dbus-python &&
+depends gnome-python2 &&
+depends gnome-python-desktop &&
+depends -sub "python" gtk-vnc &&
+depends libvirt &&
+depends -sub "python" libxml2 &&
+depends pygtk2 &&
+depends python &&
+depends virtinst &&
+depends -sub "pygtk2" vte &&
+
+optional_depends gettext \
+ '--enable-nls' \
+ '--disable-nls' \
+ 'for Native Language support'
diff --git a/utils/virt-manager/DETAILS b/utils/virt-manager/DETAILS
new file mode 100755
index 0000000..8e7b6c2
--- /dev/null
+++ b/utils/virt-manager/DETAILS
@@ -0,0 +1,31 @@
+ SPELL=virt-manager
+ VERSION=0.5.3
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+
SOURCE_URL[0]=http://virt-manager.et.redhat.com/download/sources/$SPELL/$SOURCE
+ SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
+ LICENSE[0]=GPL
+ WEB_SITE=http://virt-manager.et.redhat.com/
+ KEYWORDS="util virtualization"
+ ENTERED=20080211
+ SHORT='Virtual machine manager'
+cat << EOF
+The "Virtual Machine Manager" application (virt-manager for short package
name)
+is a desktop user interface for managing virtual machines. It presents a
+summary view of running domains and their live performance & resource
+utilization statistics. A detailed view presents graphs showing performance
and
+utilization over time. Ultimately it will allow creation of new domains, and
+configuration & adjustment of a domain's resource allocation & virtual
+hardware. Finally an embedded VNC client viewer presents a full graphical
+console to the guest domain.
+
+The application logic is written in Python, while the UI is constructed with
+Glade and GTK+, based on mockups provided by UI interaction designers. The
+libvirt Python bindings are used to interacting with the underlying
hypervisor.
+This enables the application to be written independent of any particular
+hypervisor technology. Initially Xen was the primary platform supported,
+however, since libvirt 0.2.0 and virt-manager 0.3.1 it is possible to manage
+QEMU and KVM guests too. It is expected that support for additional
hypervisors
+/ virtualization products will expand even further over time as additional
+libvirt drivers are written.
+EOF
diff --git a/utils/virt-manager/HISTORY b/utils/virt-manager/HISTORY
new file mode 100644
index 0000000..425fcc9
--- /dev/null
+++ b/utils/virt-manager/HISTORY
@@ -0,0 +1,3 @@
+2008-02-11 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS, DEPENDS: Created
+
diff --git a/utils/virt-manager/virt-manager-0.5.3.tar.gz.sig
b/utils/virt-manager/virt-manager-0.5.3.tar.gz.sig
new file mode 100644
index 0000000..0f0f787
Binary files /dev/null and b/utils/virt-manager/virt-manager-0.5.3.tar.gz.sig
differ
diff --git a/x11/gtk-vnc/BUILD b/x11/gtk-vnc/BUILD
new file mode 100755
index 0000000..e0e0275
--- /dev/null
+++ b/x11/gtk-vnc/BUILD
@@ -0,0 +1,4 @@
+OPTS="$GTK_VNC_EXAMPLES \
+ $OPTS" &&
+
+default_build
diff --git a/x11/gtk-vnc/CONFIGURE b/x11/gtk-vnc/CONFIGURE
new file mode 100755
index 0000000..1e44014
--- /dev/null
+++ b/x11/gtk-vnc/CONFIGURE
@@ -0,0 +1,2 @@
+config_query_option GTK_VNC_EXAMPLES 'Install example programs?' n \
+ '--with-examples' '--without-examples'
diff --git a/x11/gtk-vnc/DEPENDS b/x11/gtk-vnc/DEPENDS
new file mode 100755
index 0000000..5f568f3
--- /dev/null
+++ b/x11/gtk-vnc/DEPENDS
@@ -0,0 +1,6 @@
+depends gnutls &&
+
+optional_depends python \
+ '--with-python' \
+ '--without-python' \
+ 'for Python support'
diff --git a/x11/gtk-vnc/DETAILS b/x11/gtk-vnc/DETAILS
new file mode 100755
index 0000000..8992ad0
--- /dev/null
+++ b/x11/gtk-vnc/DETAILS
@@ -0,0 +1,32 @@
+ SPELL=gtk-vnc
+ VERSION=0.3.3
+ SOURCE=$SPELL-$VERSION.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
+ SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
+ LICENSE[0]=GPL
+ WEB_SITE=http://gtk-vnc.sourceforge.net/
+ KEYWORDS="vnc"
+ ENTERED=20080211
+ SHORT='GTK VNC viewer widget'
+cat << EOF
+gtk-vnc is a VNC viewer widget for GTK.
+
+It provides a core library written in C, using coroutines to allow it to be
+completely asynchronous while remaining single threaded. A wrapper library
+using PyGTK provides access to the widget functionality from Python. Two
+example programs illustrate use of the widget by re-implementing the
+traditional 'vncviewer' in a few 10's of lines of code.
+
+The client is fully IPv6 aware, and as well as the traditional VNC
+authentication protocol, implements the VeNCrypt extension to provide secure
+TLS/SSL encrypted communications, optionally using x509 certificates to
+authenticate.
+
+Some applications using GTK VNC include:
+ * Vinagre - John Wendell's general purpose VNC client application for the
+ GNOME project
+ * Virtual Machine Manager - GUI for managing Xen, QEMU and KVM virtual
+ machines
+ * KVM Test - Virtualized OS install automation with KVM
+EOF
diff --git a/x11/gtk-vnc/HISTORY b/x11/gtk-vnc/HISTORY
new file mode 100644
index 0000000..1989582
--- /dev/null
+++ b/x11/gtk-vnc/HISTORY
@@ -0,0 +1,3 @@
+2008-02-11 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS, CONFIGURE, DEPENDS, BUILD: Created
+
diff --git a/x11/gtk-vnc/PRE_SUB_DEPENDS b/x11/gtk-vnc/PRE_SUB_DEPENDS
new file mode 100755
index 0000000..596a43c
--- /dev/null
+++ b/x11/gtk-vnc/PRE_SUB_DEPENDS
@@ -0,0 +1,6 @@
+case $THIS_SUB_DEPENDS in
+ python) is_depends_enabled $SPELL python && return 0
+ ;;
+esac
+
+return 1
diff --git a/x11/gtk-vnc/SUB_DEPENDS b/x11/gtk-vnc/SUB_DEPENDS
new file mode 100755
index 0000000..83d9df3
--- /dev/null
+++ b/x11/gtk-vnc/SUB_DEPENDS
@@ -0,0 +1,8 @@
+case $THIS_SUB_DEPENDS in
+ python) echo "python bindings requested, forcing them."
+ depends python '--with-python'
+ ;;
+ *) echo "unknown sub-depends!"
+ return 1
+ ;;
+esac
diff --git a/x11/gtk-vnc/gtk-vnc-0.3.3.tar.gz.sig
b/x11/gtk-vnc/gtk-vnc-0.3.3.tar.gz.sig
new file mode 100644
index 0000000..c1fc265
Binary files /dev/null and b/x11/gtk-vnc/gtk-vnc-0.3.3.tar.gz.sig differ
diff --git a/x11/virt-viewer/DEPENDS b/x11/virt-viewer/DEPENDS
new file mode 100755
index 0000000..cf68923
--- /dev/null
+++ b/x11/virt-viewer/DEPENDS
@@ -0,0 +1,2 @@
+depends gtk-vnc &&
+depends libvirt
diff --git a/x11/virt-viewer/DETAILS b/x11/virt-viewer/DETAILS
new file mode 100755
index 0000000..56eb7ac
--- /dev/null
+++ b/x11/virt-viewer/DETAILS
@@ -0,0 +1,19 @@
+ SPELL=virt-viewer
+ VERSION=0.0.1
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+
SOURCE_URL[0]=http://virt-manager.et.redhat.com/download/sources/$SPELL/$SOURCE
+ SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
+ LICENSE[0]=GPL
+ WEB_SITE=http://virt-manager.et.redhat.com/
+ KEYWORDS="vnc virtualization"
+ ENTERED=20080211
+ SHORT='GTK virtual machine viewer'
+cat << EOF
+The "Virtual Machine Viewer" application (virt-viewer for short package name)
+is a lightweight interface for interacting with the graphical display of
+virtualized guest OS. It uses GTK-VNC as its display capability, and libvirt
to
+lookup the VNC server details associated with the guest. It is intended as a
+replacement for the traditional vncviewer client, since the latter does not
+support SSL/TLS encryption of x509 certificate authentication.
+EOF
diff --git a/x11/virt-viewer/HISTORY b/x11/virt-viewer/HISTORY
new file mode 100644
index 0000000..425fcc9
--- /dev/null
+++ b/x11/virt-viewer/HISTORY
@@ -0,0 +1,3 @@
+2008-02-11 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS, DEPENDS: Created
+
diff --git a/x11/virt-viewer/virt-viewer-0.0.1.tar.gz.sig
b/x11/virt-viewer/virt-viewer-0.0.1.tar.gz.sig
new file mode 100644
index 0000000..88668ab
Binary files /dev/null and b/x11/virt-viewer/virt-viewer-0.0.1.tar.gz.sig
differ



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (07b2fd2c48c3e6a0b79da40df0b51081f6d67afd), Eric Sandall, 02/12/2008

Archive powered by MHonArc 2.6.24.

Top of Page