Received: by mail.netbsd.org (Postfix, from userid 605) id 852AF84D77; Tue, 10 Mar 2020 08:25:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0CE5E84CDB for ; Tue, 10 Mar 2020 08:25:37 +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 ozjjYpQKxHBe for ; Tue, 10 Mar 2020 08:25:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 33BB084C6C for ; Tue, 10 Mar 2020 08:25:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2D85DFB27; Tue, 10 Mar 2020 08:25:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1583828736262230" MIME-Version: 1.0 Date: Tue, 10 Mar 2020 08:25:36 +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: <20200310082536.2D85DFB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1583828736262230 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Mar 10 08:25:36 UTC 2020 Modified Files: pkgsrc/devel/py-click: Makefile distinfo Log Message: py-click: updated to 7.1.1 Version 7.1.1 - Fix ClickException output going to stdout instead of stderr. Version 7.1 - Fix PyPI package name, "click" is lowercase again. - Fix link in unicode_literals error message. - Add support for colored output on UNIX Jupyter notebooks. - Operations that strip ANSI controls will strip the cursor hide/show sequences. - Remove unused compat shim for bytes. - Expand testing around termui, especially getchar on Windows. - Fix output on Windows Python 2.7 built with MSVC 14. - Fix OSError when running in MSYS2. - Fix OSError when redirecting to NUL stream on Windows. - Fix memory leak when parsing Unicode arguments on Windows. - Fix error in new AppEngine environments. - Always return one of the passed choices for click.Choice - Add no_args_is_help option to click.Command, defaults to False - Add show_defaults parameter to Context to enable showing defaults globally. - Handle env MYPATH='' as though the option were not passed. - It is once again possible to call next(bar) on an active progress bar instance. - open_file with atomic=True retains permissions of existing files and respects the current umask for new files. - When using the test CliRunner with mix_stderr=False, if result.stderr is empty it will not raise a ValueError. - Remove the unused mix_stderr parameter from CliRunner.invoke. - Fix TypeError raised when using bool flags and specifying type=bool. - Newlines in option help text are replaced with spaces before re-wrapping to avoid uneven line breaks. - MissingParameter exceptions are printable in the Python interpreter. - Fix how default values for file-type options are shown during prompts. - Fix environment variable automatic generation for commands containing -. - Option help text replaces newlines with spaces when rewrapping, but preserves paragraph breaks, fixing multiline formatting. - Option help text that is wrapped adds an extra newline at the end to distinguish it from the next option. - Consider sensible-editor when determining the editor to use for click.edit(). - Arguments to system calls such as the executable path passed to click.edit can contains spaces. - Add ZSH completion autoloading and error handling. - Add a repr to Command, Group, Option, and Argument, showing the name for friendlier debugging. - Completion doesn't consider option names if a value starts with - after the -- separator. - ZSH completion escapes special characters in values. - Add completion support for Fish shell. - Decoding bytes option values falls back to UTF-8 in more cases. - Make the warning about old 2-arg parameter callbacks a deprecation warning, to be removed in 8.0. This has been a warning since Click 2.0. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/devel/py-click/Makefile cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/py-click/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1583828736262230 Content-Disposition: inline Content-Length: 2132 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.14 pkgsrc/devel/py-click/Makefile:1.15 --- pkgsrc/devel/py-click/Makefile:1.14 Wed Oct 3 10:30:37 2018 +++ pkgsrc/devel/py-click/Makefile Tue Mar 10 08:25:35 2020 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.14 2018/10/03 10:30:37 adam Exp $ +# $NetBSD: Makefile,v 1.15 2020/03/10 08:25:35 adam Exp $ -DISTNAME= Click-7.0 -PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} +DISTNAME= click-7.1.1 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=c/click/} @@ -10,12 +10,11 @@ HOMEPAGE= https://palletsprojects.com/p/ COMMENT= Simple wrapper around optparse for powerful command line utilities LICENSE= modified-bsd -TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test +TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner USE_LANGUAGES= # none -do-test: - cd ${WRKSRC} && pytest-${PYVERSSUFFIX} tests +PYSETUPTESTTARGET= pytest .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-click/distinfo diff -u pkgsrc/devel/py-click/distinfo:1.13 pkgsrc/devel/py-click/distinfo:1.14 --- pkgsrc/devel/py-click/distinfo:1.13 Wed Oct 3 10:30:37 2018 +++ pkgsrc/devel/py-click/distinfo Tue Mar 10 08:25:35 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.13 2018/10/03 10:30:37 adam Exp $ +$NetBSD: distinfo,v 1.14 2020/03/10 08:25:35 adam Exp $ -SHA1 (Click-7.0.tar.gz) = fcbbb6d25b8eb45f7919e8605ec33b33583b0217 -RMD160 (Click-7.0.tar.gz) = a32c3039391514af61a2fe4b23fccb35c6f35084 -SHA512 (Click-7.0.tar.gz) = a7632989cde7c7eb2f535915a7a8220cb48d1ab8dd3527c4103518d4ac86287fea3488a5e0ce9f2968a4b6c52fe6ca4bc2480d0bf10f7084a4b17d31e803a92b -Size (Click-7.0.tar.gz) = 286192 bytes +SHA1 (click-7.1.1.tar.gz) = 6d7abca23ed50f8d4d32948422f30b915e376bf8 +RMD160 (click-7.1.1.tar.gz) = 7384401c63f218ac9ac7b74eda197ecdf5028b0c +SHA512 (click-7.1.1.tar.gz) = 421450e4a3c9baa562ae9f3af602cefe70dfd7273aaa5ea47c7feb4d38b03e5b28c13d5e63a6fc5e7bfc89c9997a60836e79c51397509970726d2b832ced68e6 +Size (click-7.1.1.tar.gz) = 297243 bytes --_----------=_1583828736262230--