Ticket #39892: Portfile

File Portfile, 1.2 KB (added by patrik.hartlen@…, 11 years ago)
Line 
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
3PortSystem          1.0
4PortGroup           python 1.0
5
6set realname        pyparsing
7name                py-${realname}
8version             2.0.1
9categories-append   devel net
10platforms           darwin
11license             MIT
12maintainers         gmail.com:patrik.hartlen openmaintainer
13
14description         Python parsing module.
15long_description    The pyparsing module is an alternative approach to creating and executing \
16                    simple grammars, vs. the traditional lex/yacc approach, or the use of \
17                    regular expressions.  The pyparsing module provides a library of classes \
18                    that client code uses to construct the grammar directly in Python code.
19
20homepage            http://pypi.python.org/pypi/${realname}
21
22master_sites        http://pypi.python.org/packages/source/p/${realname}
23distname            ${realname}-${version}
24checksums           rmd160  6001ee51f2098235968045d738d74d951d48110e \
25                    sha256  0007cd3f008eba4a203f1f6b4b133ddc352552c8808b694c88c23db56416e4e4
26
27python.versions     25 26 27 32 33
28python.default_version 32