Ticket #37222: 2.patch

File 2.patch, 3.5 KB (added by seanfarley (Sean Farley), 11 years ago)

py-pyobjc: whitespace cleanup

  • dports/python/py-pyobjc/Portfile

    # HG changeset patch
    # User Sean Farley <sean.michael.farley@gmail.com>
    # Date 1354588064 21600
    # Node ID 5c09ac4d66c95b645785ba204f460bbde75441de
    # Parent  6f873143deb12fb4ad797fa8bf93bc996a311e07
    py-pyobjc: whitespace cleanup
    
    diff --git a/dports/python/py-pyobjc/Portfile b/dports/python/py-pyobjc/Portfile
    a b  
    11# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
    22# $Id$
    33
    4 PortSystem 1.0
    5 PortGroup python27 1.0
     4PortSystem          1.0
     5PortGroup           python27 1.0
    66
    7 name            py27-pyobjc
    8 version         2.3
    9 categories      python devel
    10 license         MIT
    11 maintainers     nomaintainer
    12 platforms       darwin
    13 description     bidirectional bridge between python and Objective C
     7name                py27-pyobjc
     8version             2.3
     9categories          python devel
     10license             MIT
     11maintainers         nomaintainer
     12platforms           darwin
     13
     14description         bidirectional bridge between python and Objective C
    1415long_description    The PyObjC project aims to provide a bridge between \
    15                 the Python and Objective-C programming languages. The \
    16                 bridge is intended to be fully bidirectional, allowing \
    17                 the Python programmer to take full advantage of the \
    18                 power provided by various Objective-C based toolkits \
    19                 and the Objective-C programmer transparent access to \
    20                 Python based functionality.
     16    the Python and Objective-C programming languages. The \
     17    bridge is intended to be fully bidirectional, allowing \
     18    the Python programmer to take full advantage of the \
     19    power provided by various Objective-C based toolkits \
     20    and the Objective-C programmer transparent access to \
     21    Python based functionality.
    2122
    22 homepage        http://pyobjc.sourceforge.net/
    23 master_sites    http://pypi.python.org/packages/source/p/pyobjc-core/
    24 distname        pyobjc-core-${version}
     23homepage            http://pyobjc.sourceforge.net/
     24master_sites        http://pypi.python.org/packages/source/p/pyobjc-core/
     25distname            pyobjc-core-${version}
    2526
    26 checksums       sha1    ef7c5489e86e5ff219e7ae15de84fe28bc1572f6 \
    27                 rmd160  8c7b5ec7478035490bcb78193b7659ee6293c785
     27checksums           sha1    ef7c5489e86e5ff219e7ae15de84fe28bc1572f6 \
     28                    rmd160  8c7b5ec7478035490bcb78193b7659ee6293c785
    2829
    29 depends_lib     port:py27-distribute \
    30                 path:${python.pkgd}/py2app/__init__.py:py27-py2app \
    31                 port:libxml2
     30depends_lib         port:py27-distribute \
     31                    path:${python.pkgd}/py2app/__init__.py:py27-py2app \
     32                    port:libxml2
    3233
    33 patchfiles      setup.py.diff
     34patchfiles          setup.py.diff
    3435
    3536platform darwin 12 {
    36         patchfiles-append               patch-Modules.diff
     37    patchfiles-append patch-Modules.diff
    3738}
    3839
    3940post-destroot {
    4041    xinstall -m 644 -W ${worksrcpath} HISTORIC.txt Install.txt \
    4142        License.txt NEWS.txt README.txt \
     
    5253        ui_error "${name} ${version} requires OS X 10.5 or greater."
    5354        return -code error "incompatible OS X version"
    5455    }
    5556}
    5657
    57 livecheck.type  regex
    58 livecheck.url   http://pypi.python.org/pypi/pyobjc-core/
    59 livecheck.regex {pyobjc-core ([0-9.]+)}
     58livecheck.type      regex
     59livecheck.url       http://pypi.python.org/pypi/pyobjc-core/
     60livecheck.regex     {pyobjc-core ([0-9.]+)}