[VMDKstream] Initial import

Chris Lalancette clalance at fedoraproject.org
Thu Jul 7 13:03:44 UTC 2011


commit c7ea8ffa1bf134d1ec05d51b0c0b2838b6a964b2
Author: Chris Lalancette <clalance at redhat.com>
Date:   Thu Jul 7 09:03:24 2011 -0400

    Initial import
    
    Signed-off-by: Chris Lalancette <clalance at redhat.com>

 .gitignore      |    1 +
 VMDKstream.spec |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 sources         |    1 +
 3 files changed, 49 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..26e2e69 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/VMDKstream-0.2.tar.gz
diff --git a/VMDKstream.spec b/VMDKstream.spec
new file mode 100644
index 0000000..4dee556
--- /dev/null
+++ b/VMDKstream.spec
@@ -0,0 +1,47 @@
+%{!?python_sitelib: %define python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+
+Summary: Python tool to convert raw disk images to stream-optimized VMDK files
+Name: VMDKstream
+Version: 0.2
+Release: 1%{?dist}
+Source0: %{name}-%{version}.tar.gz
+License: GPLv2
+Group: Development/Libraries
+BuildArch: noarch
+Url: https://github.com/imcleod/VMDK-stream-converter
+
+%description
+While adding support for VMWare ESX/vSphere to the Image Factory project
+we discovered that we needed to support the "stream-optimized" variant
+of VMDK.
+
+This module is a first draft attempt to do so.
+
+It is known to work on ESXi 4.1.
+
+This format is only useful if you are attempting to import virtual machines
+into ESX using the vSphere SOAP API and HTTP POST uploads of image files.
+(In which case, it is required.)
+
+
+%prep
+%setup -n %{name}-%{version} -q
+
+
+%build
+python setup.py build
+
+
+%install
+rm -rf %{buildroot}
+python setup.py install -O1 --root=$RPM_BUILD_ROOT
+
+
+%files
+%{python_sitelib}/VMDKstream.py*
+%{python_sitelib}/VMDKstream-*.egg-info
+
+
+%changelog
+* Wed Jun 29 2011 Chris Lalancette <clalance at redhat.com> - 0.2-1
+- Initial package.
diff --git a/sources b/sources
index e69de29..4ff0b1f 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+bc077cffed1652dc9ee7508ef1503af3  VMDKstream-0.2.tar.gz


More information about the scm-commits mailing list