| 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 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | PortGroup python 1.0 |
|---|
| 5 | PortGroup github 1.0 |
|---|
| 6 | |
|---|
| 7 | github.setup rlabbe filterpy 1.0.0 |
|---|
| 8 | name py-filterpy |
|---|
| 9 | categories-append science |
|---|
| 10 | maintainers @KubaO openmaintainer |
|---|
| 11 | license MIT |
|---|
| 12 | platforms darwin |
|---|
| 13 | description Kalman filters and other optimal and non-optimal \ |
|---|
| 14 | estimation filters in Python. |
|---|
| 15 | long_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 | |
|---|
| 23 | homepage https://github.com/rlabbe/filterpy |
|---|
| 24 | |
|---|
| 25 | checksums md5 faa5a35e79b2b058c6463dc135c2abd6 \ |
|---|
| 26 | sha256 2af5d63c0a2ab198a96b8d536ef5f5957846fb966753c152372cf39ec2e43837 \ |
|---|
| 27 | rmd160 139c557ced511f62b452dc16f04fbb96c45800d2 |
|---|
| 28 | |
|---|
| 29 | python.versions 27 36 |
|---|
| 30 | |
|---|
| 31 | livecheck.type regex |
|---|
| 32 | livecheck.url https://github.com/rlabbe/filterpy/tags |
|---|
| 33 | livecheck.regex (\[0-9.\]+).tar.gz |
|---|
| 34 | |
|---|
| 35 | if {${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 | } |
|---|