Ticket #27497: Portfile

File Portfile, 1.3 KB (added by marshall.perrin@…, 13 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: Portfile 72512 2010-10-19 10:00:48Z jmr@macports.org $
3
4PortSystem          1.0
5PortGroup           python27 1.0
6
7name                py27-jinja2
8version             2.5.5
9categories-append   devel
10license             BSD
11maintainers         jmr openmaintainer
12description         Python based sandboxed template engine
13long_description \
14    Jinja is a sandboxed template engine written in pure Python licensed\
15    under the BSD license. It provides a Django-like non-XML syntax and\
16    compiles templates into executable python code. It's basically a\
17    combination of Django templates and python code.
18
19platforms           darwin
20
21homepage            http://jinja.pocoo.org/
22master_sites        http://pypi.python.org/packages/source/J/Jinja2/
23distname            Jinja2-${version}
24
25checksums           md5 83b20c1eeb31f49d8e6392efae91b7d5 \
26                    sha1 a983513cdc4c371007323cc2288f9add32e76f65 \
27                    rmd160 dd11840c285e05ff53d6b18f5d92c093fa6b23ca
28
29depends_lib         port:py27-distribute \
30                    port:py27-markupsafe
31
32livecheck.type  regex
33livecheck.url   http://pypi.python.org/pypi/Jinja2/
34livecheck.regex {Jinja2 ([0-9\.]+)}