Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 353A584E9E for ; Sun, 5 Nov 2023 00:43:10 +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 I6C0gl9LGnCm for ; Sun, 5 Nov 2023 00:43:09 +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 89EBE84D13 for ; Sun, 5 Nov 2023 00:43:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 875D0FA2B; Sun, 5 Nov 2023 00:43:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1699144989245140" MIME-Version: 1.0 Date: Sun, 5 Nov 2023 00:43:09 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-hamcrest To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231105004309.875D0FA2B@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1699144989245140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Nov 5 00:43:09 UTC 2023 Modified Files: pkgsrc/devel/py-hamcrest: Makefile PLIST distinfo Log Message: py-hamcrest: update to 2.1.0. Hamcrest 2.1.0 (2023-10-22) =========================== Features -------- - Add a matcher for exceptions in asyncio future (`#171 `_) Bugfixes -------- - Use the correct generic type in the internal ``describe_keyvalue`` method (`#182 `_) To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-hamcrest/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-hamcrest/PLIST cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-hamcrest/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1699144989245140 Content-Disposition: inline Content-Length: 3215 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-hamcrest/Makefile diff -u pkgsrc/devel/py-hamcrest/Makefile:1.6 pkgsrc/devel/py-hamcrest/Makefile:1.7 --- pkgsrc/devel/py-hamcrest/Makefile:1.6 Sat Oct 28 19:57:00 2023 +++ pkgsrc/devel/py-hamcrest/Makefile Sun Nov 5 00:43:09 2023 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2023/10/28 19:57:00 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2023/11/05 00:43:09 wiz Exp $ -DISTNAME= pyhamcrest-2.0.4 +DISTNAME= pyhamcrest-2.1.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/^pyh/h/} -PKGREVISION= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=P/PyHamcrest/} @@ -14,16 +13,11 @@ LICENSE= modified-bsd TOOL_DEPENDS+= ${PYPKGPREFIX}-hatchling-[0-9]*:../../devel/py-hatchling TOOL_DEPENDS+= ${PYPKGPREFIX}-hatch-vcs-[0-9]*:../../devel/py-hatch-vcs TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm -TEST_DEPENDS+= ${PYPKGPREFIX}-test>=5.0:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 -# only works after installation -do-test: - cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests - .include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-hamcrest/PLIST diff -u pkgsrc/devel/py-hamcrest/PLIST:1.3 pkgsrc/devel/py-hamcrest/PLIST:1.4 --- pkgsrc/devel/py-hamcrest/PLIST:1.3 Sat Oct 28 19:57:00 2023 +++ pkgsrc/devel/py-hamcrest/PLIST Sun Nov 5 00:43:09 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2023/10/28 19:57:00 wiz Exp $ +@comment $NetBSD: PLIST,v 1.4 2023/11/05 00:43:09 wiz Exp $ ${PYSITELIB}/hamcrest/__init__.py ${PYSITELIB}/hamcrest/__init__.pyc ${PYSITELIB}/hamcrest/__init__.pyo @@ -29,6 +29,9 @@ ${PYSITELIB}/hamcrest/core/core/anyof.py ${PYSITELIB}/hamcrest/core/core/described_as.py ${PYSITELIB}/hamcrest/core/core/described_as.pyc ${PYSITELIB}/hamcrest/core/core/described_as.pyo +${PYSITELIB}/hamcrest/core/core/future.py +${PYSITELIB}/hamcrest/core/core/future.pyc +${PYSITELIB}/hamcrest/core/core/future.pyo ${PYSITELIB}/hamcrest/core/core/is_.py ${PYSITELIB}/hamcrest/core/core/is_.pyc ${PYSITELIB}/hamcrest/core/core/is_.pyo Index: pkgsrc/devel/py-hamcrest/distinfo diff -u pkgsrc/devel/py-hamcrest/distinfo:1.4 pkgsrc/devel/py-hamcrest/distinfo:1.5 --- pkgsrc/devel/py-hamcrest/distinfo:1.4 Sun Nov 27 10:41:35 2022 +++ pkgsrc/devel/py-hamcrest/distinfo Sun Nov 5 00:43:09 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2022/11/27 10:41:35 adam Exp $ +$NetBSD: distinfo,v 1.5 2023/11/05 00:43:09 wiz Exp $ -BLAKE2s (pyhamcrest-2.0.4.tar.gz) = 46d1a3ec8d6829885fde38799f3f235b690380158987695123e380445347e436 -SHA512 (pyhamcrest-2.0.4.tar.gz) = 0baec352a1a31d660dda99b77d95f3ed8281c32180984fedf44f77b3acc60176eff1abc674905eccee06a9a449497c82686a3256939bbc482595384da11c4abf -Size (pyhamcrest-2.0.4.tar.gz) = 57649 bytes +BLAKE2s (pyhamcrest-2.1.0.tar.gz) = a0612018330a6175982a689417d38f63cc7ccb4ba434ff96fecdc59ba64a7a64 +SHA512 (pyhamcrest-2.1.0.tar.gz) = 63f25a5d8c989a33842e54b58d72ee248bdcd63d35309a7922d66fda824a0006922ebc6b7a01ee152a0b431de021ccf096e30dc4bb9ecb48cc2a70ac6ccd25aa +Size (pyhamcrest-2.1.0.tar.gz) = 60538 bytes --_----------=_1699144989245140--