1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python25 1.0 |
---|
6 | |
---|
7 | name py25-fabric |
---|
8 | version 0.0.9 |
---|
9 | categories python |
---|
10 | platforms darwin |
---|
11 | maintainers arthur@arthurkoziel.com |
---|
12 | homepage http://www.nongnu.org/fab/ |
---|
13 | description Fabric is a simple pythonic remote deployment tool. |
---|
14 | long_description It is designed to upload files to, and run shell commands \ |
---|
15 | on, a number of servers in parallel or serially. These \ |
---|
16 | commands are grouped in tasks (regular python functions) \ |
---|
17 | and specified in a 'fabfile'. \ |
---|
18 | \ |
---|
19 | It is a bit like a dumbed down Capistrano, except it's in \ |
---|
20 | Python, dosn't expect you to be deploying Rails \ |
---|
21 | applications, and the 'put' command works. \ |
---|
22 | \ |
---|
23 | Unlike Capistrano, Fabric want's to stay small, light, \ |
---|
24 | easy to change and not bound to any specific framework. |
---|
25 | |
---|
26 | master_sites http://download.savannah.gnu.org/releases/fab/ |
---|
27 | distname fab-${version} |
---|
28 | checksums md5 285689195981041274b103438b934dd3 \ |
---|
29 | sha1 ff8c9e8d6b0a25bbac97626afb8c7985080f8e3d \ |
---|
30 | rmd160 591967f68f9dcd8d272b07c806ec5dcc97f39a75 |
---|
31 | |
---|
32 | depends_lib-append port:py25-setuptools \ |
---|
33 | port:py25-paramiko |
---|