Ticket #47265: Portfile_py-kiwisolver

File Portfile_py-kiwisolver, 1.3 KB (added by jjstickel (Jonathan Stickel), 9 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#
3
4PortSystem      1.0
5PortGroup       python 1.0
6
7
8PortGroup           github 1.0
9github.setup        nucleic kiwi 0.1.3
10
11name                py-kiwisolver
12categories-append   math
13maintainers         gmail.com:jjstickel openmaintainer
14description         Kiwi is an efficient C++ implementation of the Cassowary constraint solving algorithm.
15long_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
23license             BSD
24platforms           darwin
25
26checksums           rmd160  be3e27552ff729333ffde2498bc5a93a84bc83df \
27                    sha256  9d1d2a06dacb2ad1ebf6d3824692008939b11e082b2541830d41ffba8e60cf6e
28
29python.versions     27 34
30
31if {${name} ne ${subport}} {
32   
33    depends_build-append    port:py${python.version}-setuptools
34}