Ticket #40355: Portfile

File Portfile, 1.6 KB (added by petrrr, 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# $Id$
3
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-saga
8version             0.9.10
9categories-append   net science
10platforms           darwin
11
12maintainers         bo.ingv.it:Peter.Danecek openmaintainer
13
14license             MIT
15
16description         A Simple API for Grid and Distributed Applications
17
18long_description    SAGA (Simple API for Grid Applications) defines a \
19                    high-level interface to the most commonly used distributed \
20                    computing functionality. SAGA-Python provides a Python \
21                    module that is compliant with the OGF GFD.90 SAGA \
22                    specification. It's main focus is ease of use and simple \
23                    user-space deployment in heterogeneous distributed computing \
24                    environments. It supports a wide range of application \
25                    use-cases from simple, uncoupled tasks to complex workflows.
26
27homepage            http://saga-project.github.io/saga-python/
28
29distname            saga-python-${version}
30master_sites        http://pypi.python.org/packages/source/s/saga-python/
31
32checksums           md5     b1fcb29fe758375908f2c866d75857c1 \
33                    rmd160  26cae7037358f3e97afdf69c6af08fb2fc33c1f2 \
34                    sha256  5cd7202a27c820930147e91a3d16b6bf686097eac87563d9090f7a368c503fdb
35
36python.versions     26 27 31 32 33
37
38if {${subport} != ${name}} {
39    depends_build         port:py${python.version}-setuptools
40}