Ticket #11654: py-paramiko-1.7.patch

File py-paramiko-1.7.patch, 2.1 KB (added by skymoo (Adam Mercer), 17 years ago)

update paramiko port to 1.7

  • Portfile

     
    33PortSystem 1.0
    44PortGroup python24 1.0
    55
    6 name                    py-paramiko
    7 version                 1.6.4
    8 categories              python net security
    9 platforms               darwin
    10 maintainers             nomaintainer@macports.org
    11 description             python library for making SSH2 connections
    12 long_description        This is a library for making SSH2 connections (client or \
    13                         server). Emphasis is on using SSH2 as an alternative to SSL for \
    14                         making secure connections between python scripts. All major \
    15                         ciphers and hash methods are supported. SFTP client and server \
    16                         mode are both supported too.
     6name              py-paramiko
     7version           1.7
     8categories        python net security
     9platforms         darwin
     10maintainers       ramercer@gmail.org openmaintainer@macports.org
     11description       python library for making SSH2 connections
     12long_description  This is a library for making SSH2 connections (client \
     13    or server). Emphasis is on using SSH2 as an alternative to SSL for \
     14    making secure connections between python scripts. All major ciphers \
     15    and hash methods are supported. SFTP client and server mode are both \
     16    supported too.
    1717
    18 homepage                http://www.lag.net/paramiko/
    19 master_sites    http://www.lag.net/paramiko/download/
    20 distname                paramiko-${version}
    21 checksums               md5 ab390b2b11ce782063bffdc97be8ab0c
    22 use_zip                 yes
     18homepage          http://www.lag.net/paramiko/
     19master_sites      http://www.lag.net/paramiko/download/
     20distname          paramiko-${version}
     21checksums         md5 11eb2a8688c6719a24a01f82153ffe4e \
     22                  sha1 714f12507d0dd6a9ba342560e744431397d7fd2b \
     23                  rmd160 6a155009132f2a9e091b12c79fb2040c72f5840b
     24use_zip           yes
    2325
    24 depends_lib     port:py-crypto
     26depends_lib       port:py-crypto
    2527
    2628post-destroot {
    27         file delete -force ${destroot}${prefix}/share/doc/${name}
    28         file copy ${worksrcpath}/docs ${destroot}${prefix}/share/doc/${name}
     29  file delete -force ${destroot}${prefix}/share/doc/${name}
     30  file copy ${worksrcpath}/docs ${destroot}${prefix}/share/doc/${name}
    2931}
    3032