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 7540F1A921F for ; Tue, 15 Mar 2022 06:03:27 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 66E3284D5D; Tue, 15 Mar 2022 06:03:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9FB5984D53 for ; Tue, 15 Mar 2022 06:03:25 +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 HevfYAEw3YVe for ; Tue, 15 Mar 2022 06:03:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1093F84D15 for ; Tue, 15 Mar 2022 06:03:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 053CBFB24; Tue, 15 Mar 2022 06:03:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164732420438740" MIME-Version: 1.0 Date: Tue, 15 Mar 2022 06:03:24 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-click To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220315060325.053CBFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164732420438740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Mar 15 06:03:24 UTC 2022 Modified Files: pkgsrc/devel/py-click: Makefile distinfo Log Message: py-click: updated to 8.0.4 Version 8.0.4 ------------- - ``open_file`` recognizes ``Path("-")`` as a standard stream, the same as the string ``"-"``. - The ``option`` and ``argument`` decorators preserve the type annotation of the decorated function. - A callable default value can customize its help text by overriding ``__str__`` instead of always showing ``(dynamic)``. - Fix a typo in the Bash completion script that affected file and directory completion. If this script was generated by a previous version, it should be regenerated. - Fix typing for ``echo`` and ``secho`` file argument. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/py-click/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/py-click/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164732420438740 Content-Disposition: inline Content-Length: 1523 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-click/Makefile diff -u pkgsrc/devel/py-click/Makefile:1.19 pkgsrc/devel/py-click/Makefile:1.20 --- pkgsrc/devel/py-click/Makefile:1.19 Thu Feb 3 23:43:24 2022 +++ pkgsrc/devel/py-click/Makefile Tue Mar 15 06:03:24 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2022/02/03 23:43:24 wiz Exp $ +# $NetBSD: Makefile,v 1.20 2022/03/15 06:03:24 adam Exp $ -DISTNAME= click-8.0.3 +DISTNAME= click-8.0.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=c/click/} Index: pkgsrc/devel/py-click/distinfo diff -u pkgsrc/devel/py-click/distinfo:1.18 pkgsrc/devel/py-click/distinfo:1.19 --- pkgsrc/devel/py-click/distinfo:1.18 Mon Jan 31 09:52:04 2022 +++ pkgsrc/devel/py-click/distinfo Tue Mar 15 06:03:24 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.18 2022/01/31 09:52:04 wiz Exp $ +$NetBSD: distinfo,v 1.19 2022/03/15 06:03:24 adam Exp $ -BLAKE2s (click-8.0.3.tar.gz) = 7915e6a16eb209cc7ba39f64f346487ad83b0b39db077335f716e336eb127de1 -SHA512 (click-8.0.3.tar.gz) = f6dcda8014503bc3e5b3599a5ce870b6d927a67e62c3dc88cc7b193db9bede1f1242905e56128b51df12e61fb0c15909d028a7bcb466655a8e01357c121aacda -Size (click-8.0.3.tar.gz) = 329034 bytes +BLAKE2s (click-8.0.4.tar.gz) = e7a9ac6a859a8bce56bdeada31a505267c07abe4d01aff3d597486162c50cc7e +SHA512 (click-8.0.4.tar.gz) = 839cbcd0444ff0511cc2ee9096c6385b94bbf6f62f6f0e9d2c96604ca196ba01a25131578ac49093e0b4cc2f25294fa5fffadf82fc9b129441d27c79fb437375 +Size (click-8.0.4.tar.gz) = 329520 bytes --_----------=_164732420438740--