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 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | |
---|
6 | set realname pyparsing |
---|
7 | name py-${realname} |
---|
8 | version 2.0.1 |
---|
9 | categories-append devel net |
---|
10 | platforms darwin |
---|
11 | license MIT |
---|
12 | maintainers gmail.com:patrik.hartlen openmaintainer |
---|
13 | |
---|
14 | description Python parsing module. |
---|
15 | long_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 | |
---|
20 | homepage http://pypi.python.org/pypi/${realname} |
---|
21 | |
---|
22 | master_sites http://pypi.python.org/packages/source/p/${realname} |
---|
23 | distname ${realname}-${version} |
---|
24 | checksums rmd160 6001ee51f2098235968045d738d74d951d48110e \ |
---|
25 | sha256 0007cd3f008eba4a203f1f6b4b133ddc352552c8808b694c88c23db56416e4e4 |
---|
26 | |
---|
27 | python.versions 25 26 27 32 33 |
---|
28 | python.default_version 32 |
---|