rpms/fabric/F-13 fab.1, NONE, 1.1 .cvsignore, 1.4, 1.5 fabric.spec, 1.5, 1.6 import.log, 1.4, 1.5 sources, 1.5, 1.6

Silas Sewell silas at fedoraproject.org
Tue Jul 6 17:12:39 UTC 2010


Author: silas

Update of /cvs/pkgs/rpms/fabric/F-13
In directory cvs01.phx2.fedoraproject.org:/tmp/cvs-serv18215/F-13

Modified Files:
	.cvsignore fabric.spec import.log sources 
Added Files:
	fab.1 
Log Message:
* Tue Jul 06 2010 Silas Sewell <silas at sewell.ch> - 0.9.1-1
- Update to 0.9.1
- Add man page



--- NEW FILE fab.1 ---
.TH FAB 1 "July 6, 2010"
.SH NAME
fab - Simple Pythonic remote deployment tool
.SH SYNOPSIS
.PP
\fB \fr\fIfab\fR [OPTIONS] \fR\fI[commands ...]\fR
.SH DESCRIPTION
.PP
Fabric is designed to upload files and run shell commands on a number of
servers in parallel or serially. These commands are grouped in tasks
(which are regular Python functions).
.SH OPTIONS
.TP
.B -h, --help
show this help message and exit
.TP
.B -V, --version
show program's version number and exit
.TP
.B -l, --list
print list of possible commands and exit
.TP
.B -d COMMAND, --display=COMMAND
print detailed info about a given command and exit
.TP
.B -r, --reject-unknown-hosts
reject unknown hosts
.TP
.B -D, --disable-known-hosts
do not load user known_hosts file
.TP
.B -u USER, --user=USER
username to use when connecting to remote hosts
.TP
.B -p PASSWORD, --password=PASSWORD
password for use with authentication and/or sudo
.TP
.B -H HOSTS, --hosts=HOSTS
comma-separated list of hosts to operate on
.TP
.B -R ROLES, --roles=ROLES
comma-separated list of roles to operate on
.TP
.B -i KEY_FILENAME
path to SSH private key file. May be repeated.
.TP
.B -a, --no_agent
don't use the running SSH agent
.TP
.B -k, --no-keys
don't load private key files from ~/.ssh/
.TP
.B -f FABFILE, --fabfile=FABFILE
Python module file to import, e.g. '../other.py'
.TP
.B -w, --warn-only
warn, instead of abort, when commands fail
.TP
.B -s SHELL, --shell=SHELL
specify a new shell, defaults to '/bin/bash -l -c'
.TP
.B -c RCFILE, --config=RCFILE
specify location of config file to use
.TP
.B --hide=LEVELS
comma-separated list of output levels to hide
.TP
.B --show=LEVELS
comma-separated list of output levels to show
.SH "AUTHOR"
.PP
Fabric was originally written by Christian Vest Hansen.
.PP
The current author list includes Rob Cowie, Jeff Forcier, Travis Cline,
Niklas Lindström, Kevin Horn, Max Battcher, Alexander Artemenko, Dennis Schoen,
Erick Dennis, Sverre Johansen, Michael Stephens, Armin Ronacher, Curt Micol,
Patrick McNerthney, Steve Steiner, Ali Saifee, Jorge Vargas, Peter Ellis,
Brian Rosner and Carl Meyer.
.PP
This manual page was originally written by Chris Lamb <lamby at debian.org> for the
Debian project (but may be used by others).
.PP
It was updated by Silas Sewell <silas at sewell.ch> for the Fedora Project.
.SH "SEE ALSO"
.IP
\fBssh\fP\fB(1)\fP


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/fabric/F-13/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- .cvsignore	10 Nov 2009 04:30:25 -0000	1.4
+++ .cvsignore	6 Jul 2010 17:12:39 -0000	1.5
@@ -1 +1 @@
-Fabric-0.9.0.tar.gz
+Fabric-0.9.1.tar.gz


Index: fabric.spec
===================================================================
RCS file: /cvs/pkgs/rpms/fabric/F-13/fabric.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- fabric.spec	10 Nov 2009 04:30:25 -0000	1.5
+++ fabric.spec	6 Jul 2010 17:12:39 -0000	1.6
@@ -1,16 +1,18 @@
 %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
 
-%define package_name Fabric
+%global package_name Fabric
 
 Name:           fabric
-Version:        0.9.0
+Version:        0.9.1
 Release:        1%{?dist}
 Summary:        A simple Pythonic remote deployment tool
 
 Group:          Applications/System
 License:        BSD
-URL:            http://www.fabfile.org/
+URL:            http://www.fabfile.org
 Source0:        http://code.fabfile.org/projects/fabric/files/%{package_name}-%{version}.tar.gz
+# Upstream issue to add man page http://code.fabfile.org/issues/show/35
+Source1:        fab.1
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildArch:      noarch
@@ -29,23 +31,30 @@ serially.
 
 %build
 %{__python} setup.py build
+%{__gzip} %{SOURCE1}
 
 %install
 %{__rm} -rf %{buildroot}
 %{__python} setup.py install -O1 --skip-build --root %{buildroot}
 %{__rm} -fr %{buildroot}%{python_sitelib}/paramiko
+%{__install} -p -m 0644 -D %{SOURCE1}.gz %{buildroot}%{_mandir}/man1/fab.1.gz
 
 %clean
 %{__rm} -rf %{buildroot}
 
 %files
 %defattr(-,root,root,-)
-%doc AUTHORS FAQ LICENSE README
+%doc AUTHORS LICENSE README
 %{_bindir}/fab
 %{python_sitelib}/fabric
 %{python_sitelib}/%{package_name}*%{version}*.egg-info
+%{_mandir}/man1/fab.1.gz
 
 %changelog
+* Tue Jul 06 2010 Silas Sewell <silas at sewell.ch> - 0.9.1-1
+- Update to 0.9.1
+- Add man page
+
 * Mon Nov 09 2009 Silas Sewell <silas at sewell.ch> - 0.9.0-1
 - Update to 0.9.0
 


Index: import.log
===================================================================
RCS file: /cvs/pkgs/rpms/fabric/F-13/import.log,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- import.log	10 Nov 2009 04:30:25 -0000	1.4
+++ import.log	6 Jul 2010 17:12:39 -0000	1.5
@@ -2,3 +2,4 @@ fabric-0_1_1-1_fc10:HEAD:fabric-0.1.1-1.
 fabric-0_1_1-2_fc10:HEAD:fabric-0.1.1-2.fc10.src.rpm:1239562092
 fabric-0_9-0_1_b1_fc12:HEAD:fabric-0.9-0.1.b1.fc12.src.rpm:1252696119
 fabric-0_9_0-1_fc12:HEAD:fabric-0.9.0-1.fc12.src.rpm:1257826424
+fabric-0_9_1-1_fc13:F-13:fabric-0.9.1-1.fc13.src.rpm:1278436330


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/fabric/F-13/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- sources	10 Nov 2009 04:30:25 -0000	1.5
+++ sources	6 Jul 2010 17:12:39 -0000	1.6
@@ -1 +1 @@
-696e42e6e771fa2a365cd03536d4cdcf  Fabric-0.9.0.tar.gz
+2c2dc002d0da6cc4041f1c12be51e762  Fabric-0.9.1.tar.gz



More information about the scm-commits mailing list