Ticket #18954: Portfile

File Portfile, 1.3 KB (added by dbraband@…, 15 years ago)

new Portfile as well

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: Portfile 47739 2009-03-04 20:50:57Z snc@macports.org $
3
4PortSystem        1.0
5PortGroup         python26 1.0
6
7name              py26-lxml
8version           2.2
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 b3f12344291aa0d393915e7d8358b480 \
22                  sha1 746ff9e165fc911a34a25936b6ed122f37241504 \
23                  rmd160 fd884d36b68391b3093d6ab1a949155b52909b9d
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}"