New Ticket     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Ticket #12822: 01-pexpect-whitespace.diff

File 01-pexpect-whitespace.diff, 3.0 KB (added by ramercer@…, 4 years ago)

whitespace changes

  • py-pexpect/Portfile

    === modified file 'py-pexpect/Portfile'
     
    11# $Id: Portfile 22478 2007-03-02 05:16:40Z pipping@macports.org $ 
    22 
    3 PortSystem 1.0 
    4 PortGroup python24 1.0 
    5  
    6 name                    py-pexpect 
    7 version                 2.0 
    8 categories              python 
    9 platforms               darwin 
    10 maintainers             ramercer@gmail.com openmaintainer@macports.org 
    11 description             python module for better controlling other applications 
    12 long_description        Pexpect makes Python a better tool for controlling \ 
    13                                 other applications. It is a pure Python module for \ 
    14                                 spawning child applications, controlling them and \ 
    15                                 responding to expected patterns in their output. \ 
    16                                 Pexpect works like Don Libes Expect. Pexpect allows \ 
    17                                 your script to spawn a child application and control \ 
    18                                 it as if a human were typing commands. 
    19  
    20 homepage                http://pexpect.sourceforge.net/ 
    21 master_sites    sourceforge:pexpect 
    22 distfiles               pexpect-${version}.tgz \ 
    23                                 pexpect-${version}-examples.tgz 
    24 checksums               pexpect-${version}.tgz sha1 34f041dfbf288da7d56a3d7994fd1502a7137cda \ 
    25                                 pexpect-${version}-examples.tgz sha1 71f5d3b1eef924a1b6bf41caec70690f451e2078 
    26  
    27 worksrcdir              pexpect-${version} 
    28  
    29 post-destroot   { 
    30         xinstall -m 644 -W ${worksrcpath} README \ 
    31                 ${destroot}${prefix}/share/doc/${name} 
    32         xinstall -m 644 -W ${workpath}/examples bd_client.py bd_serv.py \ 
    33                 bd_client_web.py chess.py chess2.py chess3.py fix_cvs_files.py \ 
    34                 ftp.py monitor.py passmass.py python.py ssh_session.py \ 
    35                 ssh_tunnel.py sshls.py uptime.py \ 
    36                 ${destroot}${prefix}/share/doc/${name}/examples 
     3PortSystem    1.0 
     4PortGroup     python24 1.0 
     5 
     6name          py-pexpect 
     7version       2.0 
     8categories    python 
     9platforms     darwin 
     10 
     11maintainers   ramercer@gmail.com openmaintainer@macports.org 
     12description   python module for better controlling other applications 
     13long_description Pexpect makes Python a better tool for controlling \ 
     14  other applications. It is a pure Python module for spawning child \ 
     15  applications, controlling them and responding to expected patterns in \ 
     16  their output. Pexpect works like Don Libes Expect. Pexpect allows your \ 
     17  script to spawn a child application and control it as if a human were \ 
     18  typing commands. 
     19 
     20homepage      http://pexpect.sourceforge.net/ 
     21master_sites  sourceforge:pexpect 
     22distfiles     pexpect-${version}.tgz \ 
     23              pexpect-${version}-examples.tgz 
     24 
     25checksums     pexpect-${version}.tgz sha1 34f041dfbf288da7d56a3d7994fd1502a7137cda \ 
     26              pexpect-${version}-examples.tgz sha1 71f5d3b1eef924a1b6bf41caec70690f451e2078 
     27 
     28worksrcdir    pexpect-${version} 
     29 
     30post-destroot { 
     31  xinstall -m 644 -W ${worksrcpath} README \ 
     32    ${destroot}${prefix}/share/doc/${name} 
     33  xinstall -m 644 -W ${workpath}/examples bd_client.py bd_serv.py \ 
     34    bd_client_web.py chess.py chess2.py chess3.py fix_cvs_files.py \ 
     35    ftp.py monitor.py passmass.py python.py ssh_session.py \ 
     36    ssh_tunnel.py sshls.py uptime.py \ 
     37    ${destroot}${prefix}/share/doc/${name}/examples 
    3738}