rpms/python-virtinst/FC-6 .cvsignore, 1.4, 1.5 python-virtinst.spec, 1.5, 1.6 sources, 1.4, 1.5 virtinst-0.103.0-accelerate.patch, 1.1, NONE virtinst-0.103.0-default-net.patch, 1.1, NONE virtinst-0.103.0-features-xml.patch, 1.1, NONE virtinst-0.103.0-rhel5-client.patch, 1.1, NONE virtinst-0.103.0-urlgrabber-import.patch, 1.1, NONE

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Thu Jul 19 02:36:20 UTC 2007


Author: berrange

Update of /cvs/dist/rpms/python-virtinst/FC-6
In directory cvs.devel.redhat.com:/tmp/cvs-serv23173

Modified Files:
	.cvsignore python-virtinst.spec sources 
Removed Files:
	virtinst-0.103.0-accelerate.patch 
	virtinst-0.103.0-default-net.patch 
	virtinst-0.103.0-features-xml.patch 
	virtinst-0.103.0-rhel5-client.patch 
	virtinst-0.103.0-urlgrabber-import.patch 
Log Message:
Updated to 0.200.0 release


Index: .cvsignore
===================================================================
RCS file: /cvs/dist/rpms/python-virtinst/FC-6/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore	5 Jun 2007 19:23:10 -0000	1.4
+++ .cvsignore	19 Jul 2007 02:36:18 -0000	1.5
@@ -1 +1 @@
-virtinst-0.103.0.tar.gz
+virtinst-0.200.0.tar.gz


Index: python-virtinst.spec
===================================================================
RCS file: /cvs/dist/rpms/python-virtinst/FC-6/python-virtinst.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- python-virtinst.spec	25 Jun 2007 19:07:55 -0000	1.5
+++ python-virtinst.spec	19 Jul 2007 02:36:18 -0000	1.6
@@ -1,20 +1,23 @@
 %{!?python_sitelib: %define python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
 
+# This macro is used for the continuous automated builds. It just
+# allows an extra fragment based on the timestamp to be appended
+# to the release. This distinguishes automated builds, from formal
+# Fedora RPM builds
+%define _extra_release %{?dist:%{dist}}%{!?dist:%{?extra_release:%{extra_release}}}
+
+%define appname virtinst
+
 Summary: Python modules for starting Xen guest installations
-Name: python-virtinst
-Version: 0.103.0
-Release: 2%{?dist}
-Source0: virtinst-%{version}.tar.gz
-Patch0: virtinst-0.103.0-urlgrabber-import.patch
-Patch1: virtinst-0.103.0-accelerate.patch
-Patch2: virtinst-0.103.0-default-net.patch
-Patch3: virtinst-0.103.0-rhel5-client.patch
-Patch4: virtinst-0.103.0-features-xml.patch
+Name: python-%{appname}
+Version: 0.200.0
+Release: 1%{_extra_release}
+Source0: http://virt-manager.et.redhat.com/download/sources/%{appname}/%{appname}-%{version}.tar.gz
 License: GPL
 Group: Development/Libraries
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch: noarch
-ExcludeArch: ppc ppc64 s390 s390x 
+ExcludeArch: ppc ppc64 s390 s390x
 Url: http://virt-manager.org/
 Provides: xeninst
 Provides: python-xeninst = %{version}
@@ -22,7 +25,7 @@
 Requires: libvirt-python >= 0.2.1
 Requires: urlgrabber
 BuildRequires: python-devel
-Obsoletes: python-xeninst < %{version}
+Obsoletes: python-xeninst < 0.97.0
 
 %description
 virtinst is a module to help in starting installations of Fedora/Red
@@ -35,12 +38,7 @@
 virtinst in a command line mode.
 
 %prep
-%setup -q -n virtinst-%{version} 
-%patch0 -p1
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
-%patch4 -p1
+%setup -q -n %{appname}-%{version}
 
 %build
 python setup.py build
@@ -48,25 +46,36 @@
 %install
 rm -rf $RPM_BUILD_ROOT
 python setup.py install -O1 --root=$RPM_BUILD_ROOT
+# Back compat in case people hardcoded old /usr/sbin/virt-install location
 mkdir -p $RPM_BUILD_ROOT/%{_sbindir}
-mv $RPM_BUILD_ROOT/%{_bindir}/virt-install $RPM_BUILD_ROOT/%{_sbindir}/virt-install
+ln -s %{_bindir}/virt-install $RPM_BUILD_ROOT/%{_sbindir}/virt-install
 
 ln -s virtinst $RPM_BUILD_ROOT%{python_sitelib}/xeninst
 ln -s virt-install $RPM_BUILD_ROOT/%{_sbindir}/xenguest-install
+%find_lang %{appname} || echo 0
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-%files
+%files -f %{appname}.lang
 %defattr(-,root,root)
 %doc README AUTHORS NEWS ChangeLog
-%dir %{python_sitelib}/virtinst
-%{python_sitelib}/virtinst/*
+%dir %{python_sitelib}/%{appname}
+%{python_sitelib}/%{appname}/*
 %{python_sitelib}/xeninst
+%{_mandir}/man1/virt-install.1*
+%{_mandir}/man1/virt-clone.1*
 %{_sbindir}/virt-install
 %{_sbindir}/xenguest-install
+%{_bindir}/virt-install
+%{_bindir}/virt-clone
 
 %changelog
+* Tue Jul 18 2007 Daniel P. Berrange <berrange at redhat.com> - 0.200.0-1.fc6
+- Updated to 0.200.0
+- Added virt-clone tool
+- Added manual pages
+
 * Mon Jun 25 2007 Daniel P. Berrange <berrange at redhat.com> - 0.103.0-2.fc6
 - Re-add missing patch for import statement
 


Index: sources
===================================================================
RCS file: /cvs/dist/rpms/python-virtinst/FC-6/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources	5 Jun 2007 19:23:10 -0000	1.4
+++ sources	19 Jul 2007 02:36:18 -0000	1.5
@@ -1 +1 @@
-da72ef584f2479be981716af454950f6  virtinst-0.103.0.tar.gz
+b5a71282a5e0cb382749e6c1196715b5  virtinst-0.200.0.tar.gz


--- virtinst-0.103.0-accelerate.patch DELETED ---


--- virtinst-0.103.0-default-net.patch DELETED ---


--- virtinst-0.103.0-features-xml.patch DELETED ---


--- virtinst-0.103.0-rhel5-client.patch DELETED ---


--- virtinst-0.103.0-urlgrabber-import.patch DELETED ---




More information about the fedora-cvs-commits mailing list