1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python26 1.0 |
---|
5 | |
---|
6 | name py26-fabric |
---|
7 | version 0.0.9 |
---|
8 | categories python |
---|
9 | platforms darwin |
---|
10 | maintainers arthurkoziel.com:arthur |
---|
11 | homepage http://www.nongnu.org/fab/ |
---|
12 | description Fabric is a simple pythonic remote deployment tool. |
---|
13 | long_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 | |
---|
25 | master_sites http://download.savannah.gnu.org/releases/fab/ |
---|
26 | distname fab-${version} |
---|
27 | checksums md5 285689195981041274b103438b934dd3 \ |
---|
28 | sha1 ff8c9e8d6b0a25bbac97626afb8c7985080f8e3d \ |
---|
29 | rmd160 591967f68f9dcd8d272b07c806ec5dcc97f39a75 |
---|
30 | |
---|
31 | depends_lib-append port:py26-setuptools \ |
---|
32 | port:py26-paramiko |
---|
33 | |
---|
34 | post-destroot { |
---|
35 | ln -s ${python.prefix}/bin/fab ${destroot}${prefix}/bin/fab-2.6 |
---|
36 | } |
---|