Ticket #35003: Portfile-pv_whitespace.diff

File Portfile-pv_whitespace.diff, 2.7 KB (added by nonstop.server@…, 12 years ago)

proposed patch for whitespace changes

  • Portfile

    old new  
    11# $Id: Portfile 94714 2012-06-27 10:07:30Z ryandesign@macports.org $
    22
    3 PortSystem 1.0
    4 PortGroup  muniversal 1.0
     3PortSystem       1.0
     4PortGroup        muniversal 1.0
    55
    6 name            pv
    7 version         1.2.0
    8 categories      sysutils
    9 platforms       darwin
    10 maintainers     gmail.com:meissnem
    11 license         Apache-2.0
    12 
    13 description     monitor the progress of data through a pipe
    14 long_description        \
    15         pv - Pipe Viewer - is a terminal-based tool for monitoring      \
    16         the progress of data through a pipeline. It can be inserted     \
    17         into any normal pipeline between two processes to give a        \
    18         visual indication of how quickly data is passing through,       \
    19         how long it has taken, how near to completion it is, and an     \
    20         estimate of how long it will be until completion.
    21 homepage        http://www.ivarch.com/programs/pv.shtml
    22 master_sites    googlecode:pipeviewer
    23 use_bzip2       yes
    24 checksums           md5     67aedf6dbcd068d5feeaa76156153f4f \
    25                     sha1    bb921bca55347a1b7c6f74ce6b70cff0325499d7 \
    26                     rmd160  3dfb7dc65c2d8032d3db1dcce27b42cc9cc14540
    27 configure.args  --mandir=${prefix}/share/man --infodir=${prefix}/share/info
    28 depends_lib     port:gettext
     6name             pv
     7version          1.2.0
     8categories       sysutils
     9platforms        darwin
     10maintainers      gmail.com:meissnem
     11license          Apache-2.0
     12
     13description      monitor the progress of data through a pipe
     14long_description pv - Pipe Viewer - is a terminal-based tool for monitoring \
     15                 the progress of data through a pipeline. It can be inserted \
     16                 into any normal pipeline between two processes to give a \
     17                 visual indication of how quickly data is passing through, \
     18                 how long it has taken, how near to completion it is, and an \
     19                 estimate of how long it will be until completion.
     20
     21homepage         http://www.ivarch.com/programs/pv.shtml
     22master_sites     googlecode:pipeviewer
     23
     24use_bzip2        yes
     25
     26checksums        md5     67aedf6dbcd068d5feeaa76156153f4f \
     27                 sha1    bb921bca55347a1b7c6f74ce6b70cff0325499d7 \
     28                 rmd160  3dfb7dc65c2d8032d3db1dcce27b42cc9cc14540
     29
     30configure.args   --mandir=${prefix}/share/man \
     31                 --infodir=${prefix}/share/info
     32
     33depends_lib      port:gettext
    2934
    3035if {${os.platform} == "darwin" && ${os.major} != 9} {
    3136    # Leopard is the only release where stat64 exists and is not deprecated
    3237    patchfiles-append stat64.diff
    3338}
    3439
    35 livecheck.type      regex
    36 livecheck.regex     >${name}-(\[0-9.\]+)${extract.suffix}<
     40livecheck.type   regex
     41livecheck.regex  >${name}-(\[0-9.\]+)${extract.suffix}<