Ticket #42836: patch.py-cartopy.diff

File patch.py-cartopy.diff, 2.5 KB (added by petrrr, 10 years ago)

patch for python/py-cartopy/Portfile

  • Portfile

    old new  
    55PortGroup           python 1.0
    66PortGroup           github 1.0
    77
    8 github.setup        SciTools cartopy 0.9.0 v
     8github.setup        SciTools cartopy 0.10.0 v
    99
    10 name                py-cartopy
    11 version             0.9.0
     10name                py-${github.project}
     11version             ${github.version}
    1212categories-append   science gis graphics
    1313platforms           darwin
     14license             LGPL-3
    1415
    1516maintainers         bo.ingv.it:peter.danecek openmaintainer
    1617
    17 license             LGPL-3
    18 
    1918description         A library providing cartographic tools for python.
    2019
    21 long_description    Cartopy is a Python package designed to make drawing maps \
    22                     for data analysis and visualisation as easy as possible. \
    23                     It makes use of the powerful PROJ.4, numpy and shapely \
    24                     libraries and has a simple and intuitive drawing interface \
    25                     to matplotlib for creating publication quality maps.
     20long_description    \
     21    Cartopy is a Python package designed to make drawing maps for data \
     22    analysis and visualisation as easy as possible. It makes use of the \
     23    powerful PROJ.4, numpy and shapely libraries and has a simple and \
     24    intuitive drawing interface to matplotlib for creating publication \
     25    quality maps.
    2626
    2727homepage            http://scitools.org.uk/cartopy/
    2828
    29 checksums           md5     fcae31b7f7a322160da2dce6ae597d1c \
    30                     rmd160  25f84a9fe68a3a0bdca433b2a0aecf04c189cee0 \
    31                     sha256  14c21ad1f84f22d55a017180435f087264ef767ef27b24ccb0f3fa330a326ad4
     29checksums           md5     85efc6a5b1542a2b6a52c8ca67ada127 \
     30                    rmd160  899002e614241acb51a9b1ac8040eee4ab821b07 \
     31                    sha256  c10dd63d3eed31f54cd3c48ce52d02a210a05357fc36c208bd067dbe65363b20
    3232
    3333python.versions     27
    3434
     
    4949    # Required for post-installation testing only.
    5050    depends_run-append      port:py${python.version}-nose \
    5151                            port:py${python.version}-pep8 \
    52                             port:py${python.version}-mock \
    53                             port:py${python.version}-pil
     52                            port:py${python.version}-mock
     53
     54    # PIL dependency: allow both PIL and Pillow to satisfy it.
     55    depends_run-append      path:${python.pkgd}/PIL:py${python.version}-Pillow
     56
     57    livecheck.type  none
    5458}