Add py-kiwisolver 1.0.1

Kiwi is an efficient C++ implementation of the Cassowary constraint solving
algorithm. Kiwi is an implementation of the algorithm based on the seminal
Cassowary paper. It is *not* a refactoring of the original C++ solver. Kiwi
has been designed from the ground up to be lightweight and fast. Kiwi ranges
from 10x to 500x faster than the original Cassowary solver with typical use
cases gaining a 40x improvement. Memory savings are consistently > 5x.

In addition to the C++ solver, Kiwi ships with hand-rolled Python bindings.

WWW: https://github.com/nucleic/kiwi

- While I'm here:
  - Remove leading indefinite article from COMMENT
  - Update WWW

PR:		236456
Submitted by:	lbartoletti <lbartoletti@tuxfamily.org>
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2019-03-22 21:22:37 +00:00
parent f4339915ae
commit 4a66b5dc32
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=496595
4 changed files with 32 additions and 0 deletions

View File

@ -729,6 +729,7 @@
SUBDIR += py-keras
SUBDIR += py-keras-applications
SUBDIR += py-keras-preprocessing
SUBDIR += py-kiwisolver
SUBDIR += py-levmar
SUBDIR += py-libpoly
SUBDIR += py-luminol

View File

@ -0,0 +1,18 @@
# $FreeBSD$
PORTNAME= kiwisolver
PORTVERSION= 1.0.1
CATEGORIES= math python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= lbartoletti@tuxfamily.org
COMMENT= Fast implementation of the Cassowary constraint solver
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING.txt
USES= python
USE_PYTHON= autoplist concurrent distutils
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1553256871
SHA256 (kiwisolver-1.0.1.tar.gz) = ce3be5d520b4d2c3e5eeb4cd2ef62b9b9ab8ac6b6fedbaa0e39cdb6f50644278
SIZE (kiwisolver-1.0.1.tar.gz) = 31618

View File

@ -0,0 +1,10 @@
Kiwi is an efficient C++ implementation of the Cassowary constraint solving
algorithm. Kiwi is an implementation of the algorithm based on the seminal
Cassowary paper. It is *not* a refactoring of the original C++ solver. Kiwi
has been designed from the ground up to be lightweight and fast. Kiwi ranges
from 10x to 500x faster than the original Cassowary solver with typical use
cases gaining a 40x improvement. Memory savings are consistently > 5x.
In addition to the C++ solver, Kiwi ships with hand-rolled Python bindings.
WWW: https://github.com/nucleic/kiwi