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-mako |
---|
8 | version 0.6.0 |
---|
9 | revision 0 |
---|
10 | categories-append devel www |
---|
11 | license MIT |
---|
12 | platforms darwin |
---|
13 | supported_archs noarch |
---|
14 | |
---|
15 | maintainers dh akitada openmaintainer |
---|
16 | |
---|
17 | description A super-fast templating language that borrows \ |
---|
18 | the best ideas from the existing templating \ |
---|
19 | languages. |
---|
20 | |
---|
21 | long_description Mako is a template library written in Python. \ |
---|
22 | It provides a familiar, non-XML syntax which \ |
---|
23 | compiles into Python modules for maximum \ |
---|
24 | performance. Mako's syntax and API borrows from \ |
---|
25 | the best ideas of many others, including Django \ |
---|
26 | templates, Cheetah, Myghty, and Genshi. Conceptually, \ |
---|
27 | Mako is an embedded Python (i.e. Python Server Page) \ |
---|
28 | language, which refines the familiar ideas of \ |
---|
29 | componentized layout and inheritance to produce one \ |
---|
30 | of the most straightforward and flexible models \ |
---|
31 | available, while also maintaining close ties to \ |
---|
32 | Python calling and scoping semantics. |
---|
33 | |
---|
34 | |
---|
35 | homepage http://www.makotemplates.org/ |
---|
36 | master_sites http://cheeseshop.python.org/packages/source/M/Mako/ |
---|
37 | |
---|
38 | distname Mako-${version} |
---|
39 | |
---|
40 | checksums rmd160 0152747afaf03e030654502682140f7465f8fbdd \ |
---|
41 | sha256 3f1508ee6b99ce470ee8f720104d841df85a432257b5f33c77d0d8037b2d93e8 |
---|
42 | |
---|
43 | python.versions 24 25 26 27 |
---|
44 | |
---|
45 | if {$subport != $name} { |
---|
46 | depends_lib port:py${python.version}-distribute \ |
---|
47 | port:py${python.version}-beaker |
---|
48 | } |
---|
49 | |
---|
50 | livecheck.type regex |
---|
51 | livecheck.url ${master_sites} |
---|
52 | livecheck.regex "Mako-(\\d+(?:\\.\\d+)*)${extract.suffix}" |
---|