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 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-pyshp |
---|
8 | set real_name pyshp |
---|
9 | version 1.2.0 |
---|
10 | categories-append gis |
---|
11 | platforms darwin |
---|
12 | supported_archs noarch |
---|
13 | |
---|
14 | maintainers bo.ingv.it:peter.danecek openmaintainer |
---|
15 | |
---|
16 | license MIT |
---|
17 | |
---|
18 | description Python Shapefile Library |
---|
19 | |
---|
20 | long_description PyShp library provides read and write support for the \ |
---|
21 | ESRI shapefile format in pure Python. This format is a \ |
---|
22 | popular Geographic Information System vector data format \ |
---|
23 | created by ESRI. You can read and write shp, shx, and dbf \ |
---|
24 | files with all types of geometry. Everything in the \ |
---|
25 | public ESRI shapefile specification is implemented. |
---|
26 | |
---|
27 | homepage http://code.google.com/p/${real_name}/ |
---|
28 | |
---|
29 | distname ${real_name}-${version} |
---|
30 | master_sites http://pypi.python.org/packages/source/p/${real_name} |
---|
31 | |
---|
32 | checksums md5 9075f34109f0bb4b45a90fd1fb5db94b \ |
---|
33 | rmd160 1e507e974a1c2f5f599d7201921ceaf8aa916138 \ |
---|
34 | sha256 16e9a9b5caae5b69149c7be09415381b61af4f85f2087d08c0698c75e70000e7 |
---|
35 | |
---|
36 | python.versions 26 27 32 33 34 |
---|
37 | |
---|
38 | if {${subport} ne ${name}} { |
---|
39 | depends_build-append port:py${python.version}-setuptools |
---|
40 | livecheck.type none |
---|
41 | } else { |
---|
42 | livecheck.type regex |
---|
43 | livecheck.url http://pypi.python.org/pypi/${real_name} |
---|
44 | livecheck.regex ${real_name}-(\[0-9.\]+)${extract.suffix} |
---|
45 | } |
---|