New Ticket     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 37258

Show
Ignore:
Timestamp:
06/01/2008 01:16:15 (4 years ago)
Author:
akira@…
Message:

Fixed style

Location:
trunk/dports/python
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/dports/python/py-pylons/Portfile

    r37257 r37258  
     1# -*- 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 
    12# $Id$ 
    23 
    3 PortSystem                      1.0 
    4 PortGroup                       python24 1.0 
     4PortSystem          1.0 
     5PortGroup           python24 1.0 
    56 
    6 name                            py-pylons 
    7 version                         0.9.6.2 
    8 categories-append               www 
    9 maintainers                     openmaintainer stechert akira 
    10 description                     Pylons is a lightweight web framework. 
    11 long_description                Pylons combines the very best ideas from the \ 
    12                                 worlds of Ruby, Python and Perl, providing a \ 
    13                                 structured but extremely flexible Python web \ 
    14                                 framework. It's also one of the first projects \ 
    15                                 to leverage the emerging WSGI standard, which \ 
    16                                 allows extensive re-use and flexibility -- but \ 
    17                                 only if you need it. Out of the box, Pylons \ 
    18                                 aims to make web development fast, flexible \ 
    19                                 and easy. 
    20 platforms                       darwin 
     7name                py-pylons 
     8version             0.9.6.2 
     9categories-append   www 
     10maintainers         openmaintainer stechert akira 
     11description         Pylons is a lightweight web framework. 
     12long_description    Pylons combines the very best ideas from the \ 
     13                    worlds of Ruby, Python and Perl, providing a \ 
     14                    structured but extremely flexible Python web \ 
     15                    framework. It's also one of the first projects \ 
     16                    to leverage the emerging WSGI standard, which \ 
     17                    allows extensive re-use and flexibility -- but \ 
     18                    only if you need it. Out of the box, Pylons \ 
     19                    aims to make web development fast, flexible \ 
     20                    and easy. 
     21platforms           darwin 
    2122 
    22 homepage                        http://pylonshq.com/ 
    23 master_sites                    http://cheeseshop.python.org/packages/source/P/Pylons/ 
    24 distname                        Pylons-${version} 
     23homepage            http://pylonshq.com/ 
     24master_sites        http://cheeseshop.python.org/packages/source/P/Pylons/ 
     25distname            Pylons-${version} 
    2526 
     27checksums           md5 f6e6dc687dbaee166315299adb35076c \ 
     28                    sha1 f9c6bf7fbc5b5462e94793b2ea9fe1bc5d2e55df \ 
     29                    rmd160 afb9d79a90a67f904ed753d58e0df766ffe6ac42 
    2630 
    27 checksums                       md5 f6e6dc687dbaee166315299adb35076c \ 
    28                                 sha1 f9c6bf7fbc5b5462e94793b2ea9fe1bc5d2e55df \ 
    29                                 rmd160 afb9d79a90a67f904ed753d58e0df766ffe6ac42 
    30  
    31 depends_lib                     port:py-setuptools \ 
    32                                 port:py-routes \ 
    33                                 port:py-myghty \ 
    34                                 port:py-paste \ 
    35                                 port:py-pastedeploy \ 
    36                                 port:py-pastescript \ 
    37                                 port:py-simplejson \ 
    38                                 port:py-WebHelpers \ 
    39                                 port:py-nose \ 
    40                                 port:py-beaker \ 
    41                                 port:py-formencode \ 
    42                                 port:py-cheetah 
     31depends_lib     port:py-setuptools \ 
     32                port:py-routes \ 
     33                port:py-myghty \ 
     34                port:py-paste \ 
     35                port:py-pastedeploy \ 
     36                port:py-pastescript \ 
     37                port:py-simplejson \ 
     38                port:py-WebHelpers \ 
     39                port:py-nose \ 
     40                port:py-beaker \ 
     41                port:py-formencode \ 
     42                port:py-cheetah 
    4343 
    4444post-destroot { 
    45         # Dependencies are the packaging system's job, for crying out loud. 
    46         # Cheetah doesn't use setuptools. 
    47         reinplace s|^Cheetah.*||g $destroot/$prefix/lib/python2.4/site-packages/Pylons-${version}-py2.4.egg-info/requires.txt 
    48         # Neither does FormEncode 
    49         reinplace s|^FormEncode.*||g $destroot/$prefix/lib/python2.4/site-packages/Pylons-${version}-py2.4.egg-info/requires.txt 
     45    # Dependencies are the packaging system's job, for crying out loud. 
     46    # Cheetah doesn't use setuptools. 
     47    reinplace s|^Cheetah.*||g $destroot/$prefix/lib/python2.4/site-packages/Pylons-${version}-py2.4.egg-info/requires.txt 
     48    # Neither does FormEncode 
     49    reinplace s|^FormEncode.*||g $destroot/$prefix/lib/python2.4/site-packages/Pylons-${version}-py2.4.egg-info/requires.txt 
    5050} 
  • trunk/dports/python/py25-pylons/Portfile

    r37257 r37258  
     1# -*- 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 
    12# $Id$ 
    23 
    3 PortSystem                      1.0 
    4 PortGroup                       python25 1.0 
     4PortSystem          1.0 
     5PortGroup           python25 1.0 
    56 
    6 name                            py25-pylons 
    7 version                         0.9.6.2 
    8 categories-append               www 
    9 maintainers                     openmaintainer stechert akira 
    10 description                     Pylons is a lightweight web framework. 
    11 long_description                Pylons combines the very best ideas from the \ 
    12                                 worlds of Ruby, Python and Perl, providing a \ 
    13                                 structured but extremely flexible Python web \ 
    14                                 framework. It's also one of the first projects \ 
    15                                 to leverage the emerging WSGI standard, which \ 
    16                                 allows extensive re-use and flexibility -- but \ 
    17                                 only if you need it. Out of the box, Pylons \ 
    18                                 aims to make web development fast, flexible \ 
    19                                 and easy. 
    20 platforms                       darwin 
     7name                py25-pylons 
     8version             0.9.6.2 
     9categories-append   www 
     10maintainers         openmaintainer stechert akira 
     11description         Pylons is a lightweight web framework. 
     12long_description    Pylons combines the very best ideas from the \ 
     13                    worlds of Ruby, Python and Perl, providing a \ 
     14                    structured but extremely flexible Python web \ 
     15                    framework. It's also one of the first projects \ 
     16                    to leverage the emerging WSGI standard, which \ 
     17                    allows extensive re-use and flexibility -- but \ 
     18                    only if you need it. Out of the box, Pylons \ 
     19                    aims to make web development fast, flexible \ 
     20                    and easy. 
     21platforms           darwin 
    2122 
    22 homepage                        http://pylonshq.com/ 
    23 master_sites                    http://cheeseshop.python.org/packages/source/P/Pylons/ 
    24 distname                        Pylons-${version} 
     23homepage            http://pylonshq.com/ 
     24master_sites        http://cheeseshop.python.org/packages/source/P/Pylons/ 
     25distname            Pylons-${version} 
    2526 
     27checksums           md5 f6e6dc687dbaee166315299adb35076c \ 
     28                    sha1 f9c6bf7fbc5b5462e94793b2ea9fe1bc5d2e55df \ 
     29                    rmd160 afb9d79a90a67f904ed753d58e0df766ffe6ac42 
    2630 
    27 checksums                       md5 f6e6dc687dbaee166315299adb35076c \ 
    28                                 sha1 f9c6bf7fbc5b5462e94793b2ea9fe1bc5d2e55df \ 
    29                                 rmd160 afb9d79a90a67f904ed753d58e0df766ffe6ac42 
    30  
    31 depends_lib                     port:py25-setuptools \ 
    32                                 port:py25-routes \ 
    33                                 port:py25-myghty \ 
    34                                 port:py25-paste \ 
    35                                 port:py25-pastedeploy \ 
    36                                 port:py25-pastescript \ 
    37                                 port:py25-simplejson \ 
    38                                 port:py25-WebHelpers \ 
    39                                 port:py25-nose \ 
    40                                 port:py25-beaker \ 
    41                                 port:py25-formencode \ 
    42                                 port:py25-cheetah 
     31depends_lib     port:py25-setuptools \ 
     32                port:py25-routes \ 
     33                port:py25-myghty \ 
     34                port:py25-paste \ 
     35                port:py25-pastedeploy \ 
     36                port:py25-pastescript \ 
     37                port:py25-simplejson \ 
     38                port:py25-WebHelpers \ 
     39                port:py25-nose \ 
     40                port:py25-beaker \ 
     41                port:py25-formencode \ 
     42                port:py25-cheetah 
    4343 
    4444post-destroot { 
    45         # Dependencies are the packaging system's job, for crying out loud. 
    46         # Cheetah doesn't use setuptools. 
    47         reinplace s|^Cheetah.*||g $destroot/$prefix/lib/python2.5/site-packages/Pylons-${version}-py2.5.egg-info/requires.txt 
    48         # Neither does FormEncode 
    49         reinplace s|^FormEncode.*||g $destroot/$prefix/lib/python2.5/site-packages/Pylons-${version}-py2.5.egg-info/requires.txt 
     45    # Dependencies are the packaging system's job, for crying out loud. 
     46    # Cheetah doesn't use setuptools. 
     47    reinplace s|^Cheetah.*||g $destroot/$prefix/lib/python2.5/site-packages/Pylons-${version}-py2.5.egg-info/requires.txt 
     48    # Neither does FormEncode 
     49    reinplace s|^FormEncode.*||g $destroot/$prefix/lib/python2.5/site-packages/Pylons-${version}-py2.5.egg-info/requires.txt 
    5050}