Ticket #47943: Portfile

File Portfile, 1.3 KB (added by smithsp (Sterling Smith), 9 years ago)

Moved depends_lib and added openmaintainer

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
6PortGroup           github 1.0
7
8github.setup        markchil gptools 0.1 v
9
10name                py-gptools
11
12categories-append   science math
13
14platforms           darwin
15supported_archs     noarch
16license             GPL-3
17maintainers         fusion.gat.com:smithsp openmaintainer
18description         Gaussian process regression with derivative constraints and predictions.
19long_description    \
20    gptools is a Python package that provides a convenient, powerful and \
21    extensible implementation of Gaussian process regression (GPR).  Central \
22    to gptool's implementation is support for derivatives and their variances.\
23    Furthermore, the implementation supports the incorporation of arbitrary \
24    linearly transformed quantities into the GP.
25checksums           rmd160  5505e57a8fe51f61b534db07a569624e1507c77d \
26                    sha256  5988a7998041f8600c1486646a472a34a2148cbc22d8004014d4fb01f9ed40c3
27
28python.versions     27
29
30if {$subport != $name} {
31    depends_build-append port:py${python.version}-setuptools
32    livecheck.type       none
33    depends_lib-append  port:py${python.version}-emcee \
34                        port:py${python.version}-triangle
35}