New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 82068


Ignore:
Timestamp:
08/07/11 02:35:14 (4 years ago)
Author:
jmr@…
Message:

unify py*-modulegraph

Location:
trunk/dports/python
Files:
3 deleted
1 edited

Legend:

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

    r77719 r82068  
     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           python 1.0 
    56 
    6 name                    py-modulegraph 
    7 version                 0.9 
    8 categories-append       devel 
    9 maintainers             jwa openmaintainer 
    10 description             Python module dependency analysis tool 
     7name                py-modulegraph 
     8version             0.9.1 
     9categories-append   devel 
     10license             MIT 
     11maintainers         jmr openmaintainer 
     12description         Python module dependency analysis tool 
    1113long_description \ 
    1214    modulegraph determines a dependency graph between Python modules \ 
     
    1618    extensive knowledge of special cases, and is extensible. 
    1719 
    18 platforms               darwin 
    19 supported_archs         noarch 
     20platforms           darwin 
     21supported_archs     noarch 
    2022 
    21 homepage                http://undefined.org/python/#modulegraph 
    22 master_sites            http://cheeseshop.python.org/packages/source/m/modulegraph 
    23 distname                modulegraph-${version} 
     23homepage            http://undefined.org/python/#modulegraph 
     24master_sites        http://pypi.python.org/packages/source/m/modulegraph/ 
     25distname            modulegraph-${version} 
    2426 
    25 depends_lib-append      port:py-altgraph 
     27checksums           md5 4d5e8dbfc35d7a3d1123c4cc2d958125 \ 
     28                    sha1 92f4307ac1d8b4fef7acd12f72a71c63109ff246 \ 
     29                    rmd160 b8912f3e618a735f75e5f4d6ca60f78ffb557537 
    2630 
    27 checksums           md5     95d8bad1bb4c6186a75536da44787a17 \ 
    28                     sha1    07d30f785d17b11a540537e910b887bf8589a58e \ 
    29                     rmd160  5d3e18d473b2542d8b9757cd0614e4d58e782a22 
     31python.versions     24 25 26 27 
    3032 
    31 livecheck.type  regex 
    32 livecheck.url   http://cheeseshop.python.org/pypi/modulegraph 
    33 livecheck.regex modulegraph (0\.\[0-9\]+) 
     33if {$subport != $name} { 
     34    depends_lib         port:py${python.version}-altgraph 
     35    if {${python.version} == 24 || ${python.version} == 25} { 
     36        post-destroot { 
     37            move ${destroot}${prefix}/bin/modulegraph \ 
     38                 ${destroot}${prefix}/bin/modulegraph-${python.branch} 
     39        } 
     40    } 
     41} 
     42 
     43livecheck.type  regex 
     44livecheck.url   http://pypi.python.org/pypi/modulegraph 
     45livecheck.regex {modulegraph ([0-9.]+)} 
Note: See TracChangeset for help on using the changeset viewer.