rpms/fabric/F-11 .cvsignore, 1.2, 1.3 fabric.spec, 1.2, 1.3 import.log, 1.2, 1.3 sources, 1.3, 1.4

Silas Sewell silas at fedoraproject.org
Fri Sep 11 19:59:04 UTC 2009


Author: silas

Update of /cvs/pkgs/rpms/fabric/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22276/F-11

Modified Files:
	.cvsignore fabric.spec import.log sources 
Log Message:
* Thu Aug 27 2009 Silas Sewell <silas at sewell.ch> - 0.9-0.1.b1
- Update to latest snapshot



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/fabric/F-11/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- .cvsignore	12 Apr 2009 18:24:01 -0000	1.2
+++ .cvsignore	11 Sep 2009 19:59:03 -0000	1.3
@@ -1 +1 @@
-fab-0.1.1.tar.gz
+fabric-0.9b1.tar.gz


Index: fabric.spec
===================================================================
RCS file: /cvs/pkgs/rpms/fabric/F-11/fabric.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- fabric.spec	12 Apr 2009 18:49:43 -0000	1.2
+++ fabric.spec	11 Sep 2009 19:59:03 -0000	1.3
@@ -1,14 +1,16 @@
 %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
 
+%define pre_release b1
+
 Name:           fabric
-Version:        0.1.1
-Release:        2%{?dist}
-Summary:        A simple pythonic remote deployment tool
+Version:        0.9
+Release:        0.1.%{pre_release}%{?dist}
+Summary:        A simple Pythonic remote deployment tool
 
 Group:          Applications/System
 License:        GPLv2+
-URL:            http://www.nongnu.org/fab/
-Source0:        http://download.savannah.gnu.org/releases/fab/fab-%{version}.tar.gz
+URL:            http://www.nongnu.org/fab
+Source0:        http://git.fabfile.org/cgit.cgi/fabric/snapshot/%{name}-%{version}%{pre_release}.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildArch:      noarch
@@ -18,57 +20,60 @@ Requires:       python-paramiko >= 1.7
 Requires:       python-setuptools
 
 %description
-Fabric is a simple pythonic remote deployment tool which is designed to upload
+Fabric is a simple Pythonic remote deployment tool which is designed to upload
 files to, and run shell commands on, a number of servers in parallel or
 serially.
 
 %prep
-%setup -q -n fab-%{version}
-sed -i '/^#!\/usr\/bin\/env\ python -i/,+1 d' fabric.py
+%setup -q -n %{name}-%{version}%{pre_release}
 
 %build
 %{__python} setup.py build
 
 %install
-rm -rf $RPM_BUILD_ROOT
-%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+rm -rf %{buildroot}
+%{__python} setup.py install -O1 --skip-build --root %{buildroot}
 
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 
 %files
 %defattr(-,root,root,-)
 %doc LICENSE README TODO
-%{python_sitelib}/*
 %{_bindir}/fab
+%{python_sitelib}/fabric
+%{python_sitelib}/Fabric-*.egg-info
 
 %changelog
-* Sun Apr 12 2009 Silas Sewell <silas at sewell ch> - 0.1.1-2
+* Thu Aug 27 2009 Silas Sewell <silas at sewell.ch> - 0.9-0.1.b1
+- Update to latest snapshot
+
+* Sun Apr 12 2009 Silas Sewell <silas at sewell.ch> - 0.1.1-2
 - Add runtime setuptools requirements
 - Re-import source package
 
-* Thu Apr 09 2009 Silas Sewell <silas at sewell ch> - 0.1.1-1
+* Thu Apr 09 2009 Silas Sewell <silas at sewell.ch> - 0.1.1-1
 - Update to 0.1.1
 - Up Paramiko version dependency to 1.7
 - Remove Python version dependency
 - Make sed safer
 
-* Sat Mar 28 2009 Silas Sewell <silas at sewell ch> - 0.1.0-3
+* Sat Mar 28 2009 Silas Sewell <silas at sewell.ch> - 0.1.0-3
 - Fix dependencies
 - Fix non-executable-script error
 
-* Thu Mar 26 2009 Silas Sewell <silas at sewell ch> - 0.1.0-2
-- Changed define to global
+* Thu Mar 26 2009 Silas Sewell <silas at sewell.ch> - 0.1.0-2
+- Change define to global
 
-* Sun Feb 22 2009 Silas Sewell <silas at sewell ch> - 0.1.0-1
-- Updated to 0.1.0
-- Upped Python requirement to 2.5 per recommendation on official site
+* Sun Feb 22 2009 Silas Sewell <silas at sewell.ch> - 0.1.0-1
+- Update to 0.1.0
+- Up Python requirement to 2.5 per recommendation on official site
 
-* Thu Nov 20 2008 Silas Sewell <silas at sewell ch> - 0.0.9-3
-- Fixed changelog syntax issue
+* Thu Nov 20 2008 Silas Sewell <silas at sewell.ch> - 0.0.9-3
+- Fix changelog syntax issue
 
-* Thu Nov 20 2008 Silas Sewell <silas at sewell ch> - 0.0.9-2
-- Fixed various issues with the SPEC file
+* Thu Nov 20 2008 Silas Sewell <silas at sewell.ch> - 0.0.9-2
+- Fix various issues with the spec file
 
-* Wed Nov 19 2008 Silas Sewell <silas at sewell ch> - 0.0.9-1
+* Wed Nov 19 2008 Silas Sewell <silas at sewell.ch> - 0.0.9-1
 - Initial package


Index: import.log
===================================================================
RCS file: /cvs/pkgs/rpms/fabric/F-11/import.log,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- import.log	12 Apr 2009 18:49:43 -0000	1.2
+++ import.log	11 Sep 2009 19:59:03 -0000	1.3
@@ -1,2 +1,3 @@
 fabric-0_1_1-1_fc10:HEAD:fabric-0.1.1-1.fc10.src.rpm:1239560592
 fabric-0_1_1-2_fc10:HEAD:fabric-0.1.1-2.fc10.src.rpm:1239562092
+fabric-0_9-0_1_b1_fc11:F-11:fabric-0.9-0.1.b1.fc11.src.rpm:1252698461


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/fabric/F-11/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- sources	12 Apr 2009 18:49:43 -0000	1.3
+++ sources	11 Sep 2009 19:59:03 -0000	1.4
@@ -1 +1 @@
-63a5301c584825f0b7c5e7274e1c00df  fab-0.1.1.tar.gz
+077d6543436e51697aad0e238b7b9b84  fabric-0.9b1.tar.gz




More information about the fedora-extras-commits mailing list