From owner-svn-ports-head@freebsd.org Fri Mar 22 21:22:41 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9FC1B155201F; Fri, 22 Mar 2019 21:22:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3ECD993E76; Fri, 22 Mar 2019 21:22:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7F7FF26190; Fri, 22 Mar 2019 21:22:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x2MLMcgC075729; Fri, 22 Mar 2019 21:22:38 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x2MLMbUX075726; Fri, 22 Mar 2019 21:22:37 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201903222122.x2MLMbUX075726@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 22 Mar 2019 21:22:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r496595 - in head/math: . py-kiwisolver X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/math: . py-kiwisolver X-SVN-Commit-Revision: 496595 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3ECD993E76 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.950,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Mar 2019 21:22:41 -0000 Author: sunpoet Date: Fri Mar 22 21:22:37 2019 New Revision: 496595 URL: https://svnweb.freebsd.org/changeset/ports/496595 Log: 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 Added: head/math/py-kiwisolver/ head/math/py-kiwisolver/Makefile (contents, props changed) head/math/py-kiwisolver/distinfo (contents, props changed) head/math/py-kiwisolver/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Mar 22 21:22:31 2019 (r496594) +++ head/math/Makefile Fri Mar 22 21:22:37 2019 (r496595) @@ -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 Added: head/math/py-kiwisolver/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-kiwisolver/Makefile Fri Mar 22 21:22:37 2019 (r496595) @@ -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 Added: head/math/py-kiwisolver/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-kiwisolver/distinfo Fri Mar 22 21:22:37 2019 (r496595) @@ -0,0 +1,3 @@ +TIMESTAMP = 1553256871 +SHA256 (kiwisolver-1.0.1.tar.gz) = ce3be5d520b4d2c3e5eeb4cd2ef62b9b9ab8ac6b6fedbaa0e39cdb6f50644278 +SIZE (kiwisolver-1.0.1.tar.gz) = 31618 Added: head/math/py-kiwisolver/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-kiwisolver/pkg-descr Fri Mar 22 21:22:37 2019 (r496595) @@ -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