Ticket #18034: Portfile

File Portfile, 1.5 KB (added by arthur@…, 15 years ago)
Line 
1# $Id$
2
3PortSystem          1.0
4PortGroup           python26 1.0
5                 
6name                py26-fabric
7version             0.0.9
8categories          python
9platforms           darwin
10maintainers         arthurkoziel.com:arthur
11homepage            http://www.nongnu.org/fab/
12description         Fabric is a simple pythonic remote deployment tool.
13long_description    It is designed to upload files to, and run shell commands \
14                    on, a number of servers in parallel or serially. These \
15                    commands are grouped in tasks (regular python functions) \
16                    and specified in a 'fabfile'. \
17                    \
18                    It is a bit like a dumbed down Capistrano, except it's in \
19                    Python, dosn't expect you to be deploying Rails \
20                    applications, and the 'put' command works. \
21                    \
22                    Unlike Capistrano, Fabric want's to stay small, light, \
23                    easy to change and not bound to any specific framework.
24
25master_sites        http://download.savannah.gnu.org/releases/fab/
26distname            fab-${version}
27checksums           md5 285689195981041274b103438b934dd3 \
28                    sha1 ff8c9e8d6b0a25bbac97626afb8c7985080f8e3d \
29                    rmd160 591967f68f9dcd8d272b07c806ec5dcc97f39a75
30
31depends_lib-append  port:py26-setuptools \
32                    port:py26-paramiko
33
34post-destroot {
35    ln -s ${python.prefix}/bin/fab ${destroot}${prefix}/bin/fab-2.6
36}