Ticket #51994: Portfile

File Portfile, 1.6 KB (added by KubaO (Kuba Ober), 7 years ago)

Updated portfile.

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
5PortGroup           github 1.0
6
7github.setup        rlabbe filterpy 1.0.0
8name                py-filterpy
9categories-append   science
10maintainers         @KubaO openmaintainer
11license             MIT
12platforms           darwin
13description         Kalman filters and other optimal and non-optimal \
14                    estimation filters in Python.
15long_description    This library provides Kalman filtering and \
16                    various related optimal and non-optimal \
17                    filtering software written in Python. It \
18                    contains Kalman filters, Extended Kalman filters, \
19                    Unscented Kalman filters, Kalman smoothers, Least \
20                    Squares filters, fading memory filters, g-h filters, \
21                    discrete Bayes, and more.
22
23homepage            https://github.com/rlabbe/filterpy
24
25checksums           md5     faa5a35e79b2b058c6463dc135c2abd6 \
26                    sha256  2af5d63c0a2ab198a96b8d536ef5f5957846fb966753c152372cf39ec2e43837 \
27                    rmd160  139c557ced511f62b452dc16f04fbb96c45800d2
28
29python.versions     27 36
30
31livecheck.type      regex
32livecheck.url       https://github.com/rlabbe/filterpy/tags
33livecheck.regex     (\[0-9.\]+).tar.gz
34
35if {${name} ne ${subport}} {
36    depends_lib-append  port:py${python.version}-numpy \
37                        port:py${python.version}-scipy
38    worksrcdir          filterpy-${version}
39    livecheck.type      none
40}