Ticket #14805: Portfile.txt

File Portfile.txt, 1.2 KB (added by skymoo (Adam Mercer), 16 years ago)

py25-paramiko-1.7.2 Portfile

Line 
1# $Id$
2
3PortSystem        1.0
4PortGroup         python25 1.0
5
6name              py25-paramiko
7version           1.7.2
8categories        python net security
9platforms         darwin
10maintainers       ram openmaintainer
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      ${homepage}download/
21distname          paramiko-${version}
22
23checksums         md5 a1bbe4e318469869e0d4068be7e08f82 \
24                  sha1 f786bf529458b668cdd1f08394630304877115f4 \
25                  rmd160 f456922fef608db3235068cc9fa8b7e5fe4a9c93
26
27depends_lib-append  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}
33
34universal_variant no
35
36livecheck.check   regex
37livecheck.url     ${homepage}
38livecheck.regex   {paramiko ([0-9]+\.[0-9]+\.[0-9]+)}