Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id CD8FA1A9239 for ; Mon, 8 Nov 2021 16:46:32 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 1983885C92; Mon, 8 Nov 2021 16:46:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5459685C81 for ; Mon, 8 Nov 2021 16:46:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id QJXPjBo5fWtZ for ; Mon, 8 Nov 2021 16:46:30 +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 AF6D584CFC for ; Mon, 8 Nov 2021 16:46:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A8E08FAEC; Mon, 8 Nov 2021 16:46:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1636389990179190" MIME-Version: 1.0 Date: Mon, 8 Nov 2021 16:46:30 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-curtsies To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20211108164630.A8E08FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1636389990179190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Nov 8 16:46:30 UTC 2021 Modified Files: pkgsrc/devel/py-curtsies: Makefile PLIST distinfo Log Message: py-curtsies: updated to 0.3.10 0.3.10 Typing: more specify return types for event triggers Typing: don't allow Event instances in PasteEvent contents 0.3.9 Change typing of event_trigger(event_type) to allow a function that returns None 0.3.7 Fixed ctrl-c not being reported until another key was pressed in Python 3.5+ To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/py-curtsies/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-curtsies/PLIST cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/py-curtsies/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1636389990179190 Content-Disposition: inline Content-Length: 2751 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-curtsies/Makefile diff -u pkgsrc/devel/py-curtsies/Makefile:1.7 pkgsrc/devel/py-curtsies/Makefile:1.8 --- pkgsrc/devel/py-curtsies/Makefile:1.7 Sat Mar 20 15:12:22 2021 +++ pkgsrc/devel/py-curtsies/Makefile Mon Nov 8 16:46:30 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2021/03/20 15:12:22 adam Exp $ +# $NetBSD: Makefile,v 1.8 2021/11/08 16:46:30 adam Exp $ -DISTNAME= curtsies-0.3.5 +DISTNAME= curtsies-0.3.10 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=c/curtsies/} @@ -20,6 +20,11 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 +.include "../../lang/python/pyversion.mk" +.if ${_PYTHON_VERSION} < 38 +DEPENDS+= ${PYPKGPREFIX}-backports.cached-property-[0-9]*:../../devel/py-backports.cached-property +.endif + do-test: cd ${WRKSRC}/tests && ${PYTHONBIN} -m unittest discover -v Index: pkgsrc/devel/py-curtsies/PLIST diff -u pkgsrc/devel/py-curtsies/PLIST:1.1 pkgsrc/devel/py-curtsies/PLIST:1.2 --- pkgsrc/devel/py-curtsies/PLIST:1.1 Wed Apr 12 11:42:45 2017 +++ pkgsrc/devel/py-curtsies/PLIST Mon Nov 8 16:46:30 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2017/04/12 11:42:45 adam Exp $ +@comment $NetBSD: PLIST,v 1.2 2021/11/08 16:46:30 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -32,6 +32,7 @@ ${PYSITELIB}/curtsies/formatstringarray. ${PYSITELIB}/curtsies/input.py ${PYSITELIB}/curtsies/input.pyc ${PYSITELIB}/curtsies/input.pyo +${PYSITELIB}/curtsies/py.typed ${PYSITELIB}/curtsies/termformatconstants.py ${PYSITELIB}/curtsies/termformatconstants.pyc ${PYSITELIB}/curtsies/termformatconstants.pyo Index: pkgsrc/devel/py-curtsies/distinfo diff -u pkgsrc/devel/py-curtsies/distinfo:1.10 pkgsrc/devel/py-curtsies/distinfo:1.11 --- pkgsrc/devel/py-curtsies/distinfo:1.10 Tue Oct 26 10:18:21 2021 +++ pkgsrc/devel/py-curtsies/distinfo Mon Nov 8 16:46:30 2021 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.10 2021/10/26 10:18:21 nia Exp $ +$NetBSD: distinfo,v 1.11 2021/11/08 16:46:30 adam Exp $ -BLAKE2s (curtsies-0.3.5.tar.gz) = 96d72bd7e1488d7e341b20802f1f219283575793a4e7150eef07e5a2a9e4ea30 -SHA512 (curtsies-0.3.5.tar.gz) = e46ab3f79e2385055e4f3f9bc1d2c341605b93c21a0e6c42f4807b1801d37f70cfbdd1006db1ec12257e95d91aedddd95aa31a7de99bbfc09a6f0ee473497747 -Size (curtsies-0.3.5.tar.gz) = 53472 bytes +BLAKE2s (curtsies-0.3.10.tar.gz) = d88290384dd3aae9ef9b9d31641f87549872430e307627b25ffb1d229041f1f3 +SHA512 (curtsies-0.3.10.tar.gz) = 59dfae36a43f7cdb272f94900da81bc7a1033a6482df5ac5babb329659e16d740f98b9538146f2fe7c79aa2723ec3db10c8ec658539db7d462b02953a33cb4ca +Size (curtsies-0.3.10.tar.gz) = 53340 bytes --_----------=_1636389990179190--