Received: by mail.netbsd.org (Postfix, from userid 605) id 0378184D4D; Wed, 5 May 2021 09:33:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 401C684D14 for ; Wed, 5 May 2021 09:33:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 6CXYxMQYWNLT for ; Wed, 5 May 2021 09:33:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 9E24F84CE0 for ; Wed, 5 May 2021 09:33:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 91C10FA95; Wed, 5 May 2021 09:33:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1620207182225490" MIME-Version: 1.0 Date: Wed, 5 May 2021 09:33:02 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/math/py-kiwisolver To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210505093302.91C10FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1620207182225490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed May 5 09:33:02 UTC 2021 Modified Files: pkgsrc/math/py-kiwisolver: Makefile PLIST distinfo Log Message: py-kiwisolver: updated to 1.3.1 Wrappers 1.3.1 | Solver 1.3.1 | 11/01/2020 allow to avoid linking against VC2014_1 on windows do not mark move constructor / assignment operator of expression as noexcept. This is to circumvent a suspected bug in the GCC compiler in the manylinux1 image. Wrappers 1.3.0 | Solver 1.3.0 | 10/21/2020 add c++ benchmarks and run them on CIs modernize the c++ code by using more c++11 features introduce move semantic in some c++ constructors to improve performances add support for Python 3.9 Wrappers 1.2.0 | Solver 1.2.0 | 03/26/2020 make the the c++ part of the code c++11 compliant use cppy for Python/C bindings To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/math/py-kiwisolver/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/math/py-kiwisolver/PLIST cvs rdiff -u -r1.2 -r1.3 pkgsrc/math/py-kiwisolver/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1620207182225490 Content-Disposition: inline Content-Length: 2964 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-kiwisolver/Makefile diff -u pkgsrc/math/py-kiwisolver/Makefile:1.3 pkgsrc/math/py-kiwisolver/Makefile:1.4 --- pkgsrc/math/py-kiwisolver/Makefile:1.3 Mon Aug 31 23:07:03 2020 +++ pkgsrc/math/py-kiwisolver/Makefile Wed May 5 09:33:02 2021 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.3 2020/08/31 23:07:03 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2021/05/05 09:33:02 adam Exp $ -DISTNAME= kiwisolver-1.1.0 +DISTNAME= kiwisolver-1.3.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -CATEGORIES= devel python +CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=k/kiwisolver/} MAINTAINER= pkgsrc-users@NetBSD.org @@ -10,10 +10,15 @@ HOMEPAGE= https://github.com/nucleic/kiw COMMENT= Fast implementation of the Cassowary constraint solver LICENSE= modified-bsd -PYTHON_VERSIONED_DEPENDENCIES+= setuptools +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test USE_LANGUAGES= c c++ +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} py/tests + +.include "../../devel/py-cppy/buildlink3.mk" .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/py-kiwisolver/PLIST diff -u pkgsrc/math/py-kiwisolver/PLIST:1.1 pkgsrc/math/py-kiwisolver/PLIST:1.2 --- pkgsrc/math/py-kiwisolver/PLIST:1.1 Sat Apr 14 11:35:24 2018 +++ pkgsrc/math/py-kiwisolver/PLIST Wed May 5 09:33:02 2021 @@ -1,7 +1,6 @@ -@comment $NetBSD: PLIST,v 1.1 2018/04/14 11:35:24 adam Exp $ +@comment $NetBSD: PLIST,v 1.2 2021/05/05 09:33:02 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/kiwisolver.so Index: pkgsrc/math/py-kiwisolver/distinfo diff -u pkgsrc/math/py-kiwisolver/distinfo:1.2 pkgsrc/math/py-kiwisolver/distinfo:1.3 --- pkgsrc/math/py-kiwisolver/distinfo:1.2 Sat Jun 15 18:54:41 2019 +++ pkgsrc/math/py-kiwisolver/distinfo Wed May 5 09:33:02 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2019/06/15 18:54:41 adam Exp $ +$NetBSD: distinfo,v 1.3 2021/05/05 09:33:02 adam Exp $ -SHA1 (kiwisolver-1.1.0.tar.gz) = d6a2a41de9f74d8085d2e2f3be53ac953c923747 -RMD160 (kiwisolver-1.1.0.tar.gz) = c048a5a4c5c843b4b6dd9a3a7aff361e6f5969be -SHA512 (kiwisolver-1.1.0.tar.gz) = 651614fe10ae857ac7fc4f72f6d6029788cc176380e8d598edbad141c5a772f33dd0e98a82e7e6125e8cd14197d728a1678f2f7f10c0b1b72723c9bc75d8ba79 -Size (kiwisolver-1.1.0.tar.gz) = 30847 bytes +SHA1 (kiwisolver-1.3.1.tar.gz) = e19b09e4a2098e5817719fbdec39139330649868 +RMD160 (kiwisolver-1.3.1.tar.gz) = d00de5025110ab800de3ca4ad45671c49cfcca0f +SHA512 (kiwisolver-1.3.1.tar.gz) = 1b3c38044123951ed91d87d05dc1dddafc8876625be843857333119affa4d71700ffe5de8ce66b11c2fcba296396f06ec0ed5676c8b2f8b53ef8f54db32347ed +Size (kiwisolver-1.3.1.tar.gz) = 53103 bytes --_----------=_1620207182225490--