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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | |
---|
8 | PortGroup github 1.0 |
---|
9 | github.setup nucleic kiwi 0.1.3 |
---|
10 | |
---|
11 | name py-kiwisolver |
---|
12 | categories-append math |
---|
13 | maintainers gmail.com:jjstickel openmaintainer |
---|
14 | description Kiwi is an efficient C++ implementation of the Cassowary constraint solving algorithm. |
---|
15 | long_description Kiwi is an implementation of the algorithm based on the\ |
---|
16 | seminal Cassowary paper. It is not a refactoring of the\ |
---|
17 | original C++ solver. Kiwi has been designed from the ground\ |
---|
18 | up to be lightweight and fast. Kiwi ranges from 10x to 500x\ |
---|
19 | faster than the original Cassowary solver with typical use\ |
---|
20 | cases gaining a 40x improvement. Memory savings are\ |
---|
21 | consistently > 5x. |
---|
22 | |
---|
23 | license BSD |
---|
24 | platforms darwin |
---|
25 | |
---|
26 | checksums rmd160 be3e27552ff729333ffde2498bc5a93a84bc83df \ |
---|
27 | sha256 9d1d2a06dacb2ad1ebf6d3824692008939b11e082b2541830d41ffba8e60cf6e |
---|
28 | |
---|
29 | python.versions 27 34 |
---|
30 | |
---|
31 | if {${name} ne ${subport}} { |
---|
32 | |
---|
33 | depends_build-append port:py${python.version}-setuptools |
---|
34 | } |
---|