Ticket #32979: Portfile

File Portfile, 2.0 KB (added by stromnov (Andrey Stromnov), 12 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# $Id$
3
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-mako
8version             0.6.0
9revision            0
10categories-append   devel www
11license             MIT
12platforms           darwin
13supported_archs     noarch
14
15maintainers         dh akitada openmaintainer
16
17description         A super-fast templating language that borrows \
18                    the best ideas from the existing templating \
19                    languages.
20
21long_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
35homepage            http://www.makotemplates.org/
36master_sites        http://cheeseshop.python.org/packages/source/M/Mako/
37
38distname            Mako-${version}
39
40checksums           rmd160  0152747afaf03e030654502682140f7465f8fbdd \
41                    sha256  3f1508ee6b99ce470ee8f720104d841df85a432257b5f33c77d0d8037b2d93e8
42
43python.versions     24 25 26 27
44
45if {$subport != $name} {
46    depends_lib     port:py${python.version}-distribute \
47                    port:py${python.version}-beaker
48}
49
50livecheck.type      regex
51livecheck.url       ${master_sites}
52livecheck.regex     "Mako-(\\d+(?:\\.\\d+)*)${extract.suffix}"