Ticket #18592: Portfile

File Portfile, 1.3 KB (added by dbraband@…, 15 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem        1.0
5PortGroup         python26 1.0
6
7name              py26-lxml
8version           2.1.5
9categories        python devel
10platforms         darwin
11maintainers       gmail.com:dbraband openmaintainer
12description       Powerful and Pythonic XML processing library
13long_description  lxml is a Pythonic binding for the libxml2 and libxslt \
14                  libraries. It is unique in that it combines the speed and \
15                  feature completeness of these libraries with the \
16                  simplicity of a native Python API, mostly compatible but \
17                  superior to the well-known ElementTree API.
18
19homepage          http://codespeak.net/lxml/
20master_sites      http://pypi.python.org/packages/source/l/lxml/
21checksums         md5 22567ccc6ab8ec8c90c335c810cabe11 \
22                  sha1 fa80e756e15bfcce3eb8551a36f950b00162190c \
23                  rmd160 5deff521a4c4c99e7bc1667c10789f9d45f501ed
24distname          lxml-${version}
25depends_lib-append port:libxml2 port:libxslt port:py26-setuptools
26
27livecheck.check regex
28livecheck.url   ${master_sites}
29livecheck.regex "lxml-(\\d+(?:\\.\\d+)*)${extract.suffix}"