Ticket #12579: Portfile

File Portfile, 1.1 KB (added by skymoo (Adam Mercer), 17 years ago)

Portfile for python/py25-paramiko

Line 
1# $Id$
2
3PortSystem        1.0
4PortGroup         python25 1.0
5
6name              py25-paramiko
7version           1.7.1
8categories        python net security
9platforms         darwin
10maintainers       ramercer@gmail.com openmaintainer@macports.org
11
12description       python library for making SSH2 connections
13long_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
19homepage          http://www.lag.net/paramiko/
20master_sites      http://www.lag.net/paramiko/download/
21distname          paramiko-${version}
22
23checksums         md5 de6405406897fad04fa5fdf56952ea75 \
24                  sha1 0e89fe7ae6dcc91ca271ac06b44a10a9be9c1103 \
25                  rmd160 caf9b58fda37575bdd4746f15c176627b3437a69
26
27depends_lib       port:py25-crypto
28
29post-destroot {
30  file delete -force ${destroot}${prefix}/share/doc/${name}
31  file copy ${worksrcpath}/docs ${destroot}${prefix}/share/doc/${name}
32}