Ticket #34071: Portfile

File Portfile, 1.1 KB (added by 3add3287 (3add3287), 12 years ago)

Portfile for py-sleekxmpp

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem 1.0
5PortGroup python 1.0
6
7name                py-sleekxmpp
8version             1.0
9
10categories          python devel net
11maintainers         vmunix.org:torstenb openmaintainer
12description         python xmpp module with extensive XEP support
13long_description    SleekXMPP implements XMPP in python with extensive \
14                    XEP support via plugins
15
16platforms           darwin
17supported_archs     noarch
18
19master_sites        http://pypi.python.org/packages/source/s/sleekxmpp/
20homepage            https://github.com/fritzy/SleekXMPP
21
22python.versions     26 27 31 32
23python.default_version 27
24
25distname        sleekxmpp-${version}
26checksums           rmd160 fe8a94870a22386b79edebdb05cd564c46eba549 \
27                    sha256 f4fd999f9e80816c475e046d62b53949cb6dfcb8e75d8d80482e2020a2a77456
28
29if {$subport != $name} {
30
31    depends_lib     port:py${python.version}-dateutil \
32                    port:py${python.version}-suelta \
33                    port:py${python.version}-dnspython
34}