1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python25 1.0 |
---|
5 | |
---|
6 | name py25-paramiko |
---|
7 | version 1.7.1 |
---|
8 | categories python net security |
---|
9 | platforms darwin |
---|
10 | maintainers ramercer@gmail.com openmaintainer@macports.org |
---|
11 | |
---|
12 | description python library for making SSH2 connections |
---|
13 | long_description This is a library for making SSH2 connections (client \ |
---|
14 | or server). Emphasis is on using SSH2 as an alternative to SSL for \ |
---|
15 | making secure connections between python scripts. All major ciphers \ |
---|
16 | and hash methods are supported. SFTP client and server mode are both \ |
---|
17 | supported too. |
---|
18 | |
---|
19 | homepage http://www.lag.net/paramiko/ |
---|
20 | master_sites http://www.lag.net/paramiko/download/ |
---|
21 | distname paramiko-${version} |
---|
22 | |
---|
23 | checksums md5 de6405406897fad04fa5fdf56952ea75 \ |
---|
24 | sha1 0e89fe7ae6dcc91ca271ac06b44a10a9be9c1103 \ |
---|
25 | rmd160 caf9b58fda37575bdd4746f15c176627b3437a69 |
---|
26 | |
---|
27 | depends_lib port:py25-crypto |
---|
28 | |
---|
29 | post-destroot { |
---|
30 | file delete -force ${destroot}${prefix}/share/doc/${name} |
---|
31 | file copy ${worksrcpath}/docs ${destroot}${prefix}/share/doc/${name} |
---|
32 | } |
---|