Ticket #38072: Portfile

File Portfile, 1.7 KB (added by patrik.hartlen@…, 11 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
3PortSystem          1.0
4PortGroup           python 1.0
5
6set realname        suds-jurko
7name                py-${realname}
8version             0.4.1
9categories-append   devel net
10platforms           darwin
11license             LGPL
12maintainers         gmail.com:patrik.hartlen openmaintainer
13
14description         Suds is a lightweight SOAP python client for consuming Web Services.
15long_description    Based on the original 'suds' project by Jeff Ortel (jortel at redhat \
16                    dot com) hosted at 'https://fedorahosted.org/suds'. \
17                    'Suds' is a lightweight SOAP-based web service client for Python licensed \
18                    under LGPL (see the LICENSE.txt file included in the distribution). \
19                    This is hopefully just a temporary fork of the original suds Python library \
20                    project created because the original project development seems to have stalled. \
21                    Should be reintegrated back into the original project if it ever gets revived \
22                    again.
23
24homepage            http://pypi.python.org/pypi/${realname}
25
26master_sites        http://pypi.python.org/packages/source/s/${realname}
27distname            ${realname}-${version}.jurko.4
28use_bzip2           yes
29checksums           rmd160  5312192de600f8bd769287d70b68e161f124fb15 \
30                    sha256  ab663215040ef209dd3dc80c7e92982d7c8f313ae92d4139c493aaa303aa499c
31
32python.versions     32 33
33python.default_version 32
34
35if {${subport} != ${name}} {
36    depends_build-append port:py${python.version}-distribute
37}