Received: by mail.netbsd.org (Postfix, from userid 605) id B647D84DBD; Sun, 30 Apr 2023 15:23:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E116F84DBD for ; Sun, 30 Apr 2023 15:23:09 +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 0wVG_AxUOmIe for ; Sun, 30 Apr 2023 15:23:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 076C384CC9 for ; Sun, 30 Apr 2023 15:23:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0472BFA87; Sun, 30 Apr 2023 15:23:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1682868188279100" MIME-Version: 1.0 Date: Sun, 30 Apr 2023 15:23:08 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-docstyle To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230430152309.0472BFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1682868188279100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Apr 30 15:23:08 UTC 2023 Modified Files: pkgsrc/devel/py-docstyle: Makefile PLIST distinfo Log Message: py-docstyle: update to 6.3.0. 6.3.0 What's Changed Fix typo in pre-commit-hook by @samj1912 in #624 Add ignore-self-only-init option by @thejcannon in #560 6.2.3 What's Changed Fix decorator parsing for async functions by @cdce8p in #577 fix: do not pass file names with pre-commit by @yajo in #610 6.2.2 What's Changed Fix false positive of google convention missing args descriptions by @stinovlas in #619 6.2.1 What's Changed Add https protocol on websites at the README.rst by @realFranco in #611 Add Python 3.11 to the testing by @cclauss in #612 requirements/docs.txt: Use current versions of Jinja2 and sphinx by @cclauss in #615 Use tomllib/tomli for reading .toml configs by @mgorny in #608 Docs: pydocstyle supports Python 3.7 through 3.11. by @cclauss in #616 6.2.0 What's Changed Gitpod-ify the repository by @samj1912 in #548 Updating readme to reflect support for Python 3.9 by @sanders41 in #545 Exempt properties from D401 by @TomFryers in #546 Add support for Python 3.10 by @hugovk in #554 Fix CI for python 3.10 by @samj1912 in #565 Add D419: Add and switch to "Docstring is empty" error code by @thejcannon in #559 Allow for hanging indent when documenting args in Google style by @rmorshea in #564 Fix match option to only consider basename when given a path argument by @oczkoisse in #550 Typo fix in docs/error_codes.rst by @Daniel-Mietchen in #578 docs: Fix double-dash converted to en-dash by @wjandrea in #579 Fix test warnings and improve lint configuration by @aphedges in #584 Fix broken CI checks by @aphedges in #585 Move tool configs to pyproject.toml by @Mr-Pepe in #588 Add github action to be able to release on published tag by @Pierre-Sassoulas in #582 Typo by @Fokko in #598 Move to poetry and automated relases via Github UI by @samj1912 in #614 To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-docstyle/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-docstyle/PLIST cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/py-docstyle/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1682868188279100 Content-Disposition: inline Content-Length: 2895 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-docstyle/Makefile diff -u pkgsrc/devel/py-docstyle/Makefile:1.9 pkgsrc/devel/py-docstyle/Makefile:1.10 --- pkgsrc/devel/py-docstyle/Makefile:1.9 Sat Jun 18 22:06:28 2022 +++ pkgsrc/devel/py-docstyle/Makefile Sun Apr 30 15:23:08 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.9 2022/06/18 22:06:28 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2023/04/30 15:23:08 wiz Exp $ -DISTNAME= pydocstyle-6.1.1 +DISTNAME= pydocstyle-6.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pydocstyle/} @@ -16,6 +16,16 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 USE_PKG_RESOURCES= yes +.include "../../lang/python/pyversion.mk" + +.if ${PYTHON_VERSION} < 311 +DEPENDS+= ${PYPKGPREFIX}-tomli-[0-9]*:../../textproc/py-tomli +.endif + +.if ${PYTHON_VERSION} < 308 +DEPENDS+= ${PYPKGPREFIX}-importlib-metadata-[0-9]*:../../devel/py-importlib-metadata +.endif + post-extract: ${CHMOD} go-w ${WRKSRC}/src/pydocstyle/data/*.txt Index: pkgsrc/devel/py-docstyle/PLIST diff -u pkgsrc/devel/py-docstyle/PLIST:1.4 pkgsrc/devel/py-docstyle/PLIST:1.5 --- pkgsrc/devel/py-docstyle/PLIST:1.4 Sat Jun 18 22:06:28 2022 +++ pkgsrc/devel/py-docstyle/PLIST Sun Apr 30 15:23:08 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2022/06/18 22:06:28 wiz Exp $ +@comment $NetBSD: PLIST,v 1.5 2023/04/30 15:23:08 wiz Exp $ bin/pydocstyle-${PYVERSSUFFIX} ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt @@ -12,6 +12,9 @@ ${PYSITELIB}/pydocstyle/__init__.pyo ${PYSITELIB}/pydocstyle/__main__.py ${PYSITELIB}/pydocstyle/__main__.pyc ${PYSITELIB}/pydocstyle/__main__.pyo +${PYSITELIB}/pydocstyle/_version.py +${PYSITELIB}/pydocstyle/_version.pyc +${PYSITELIB}/pydocstyle/_version.pyo ${PYSITELIB}/pydocstyle/checker.py ${PYSITELIB}/pydocstyle/checker.pyc ${PYSITELIB}/pydocstyle/checker.pyo Index: pkgsrc/devel/py-docstyle/distinfo diff -u pkgsrc/devel/py-docstyle/distinfo:1.7 pkgsrc/devel/py-docstyle/distinfo:1.8 --- pkgsrc/devel/py-docstyle/distinfo:1.7 Sat Jun 18 22:06:28 2022 +++ pkgsrc/devel/py-docstyle/distinfo Sun Apr 30 15:23:08 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.7 2022/06/18 22:06:28 wiz Exp $ +$NetBSD: distinfo,v 1.8 2023/04/30 15:23:08 wiz Exp $ -BLAKE2s (pydocstyle-6.1.1.tar.gz) = 348d9c8a944e1d5e9b08df803d89fa5ddae1c10ef56e6cfc044249aa8273403f -SHA512 (pydocstyle-6.1.1.tar.gz) = 3aaf89803af3af950fc12eedac88e8683d7934b1fb74e33c1eddf146a1de9423f0e1158cbfb36d3ab7fa2a505727283103e0a8c47b09fc78b76a39ad14a06cfe -Size (pydocstyle-6.1.1.tar.gz) = 35663 bytes +BLAKE2s (pydocstyle-6.3.0.tar.gz) = d5a5d6f14dc353d7502cdf3bd5e5b2422ce0bc2d544541ed8e1e942a05b53980 +SHA512 (pydocstyle-6.3.0.tar.gz) = 8360f398e7d61d0493f7d9b74152182855a998fe4af6d09fcb86c597b75db8018906dacf1441f4892b31479946e8b8a873f9c5fd52a0a228e3a545935fe90f11 +Size (pydocstyle-6.3.0.tar.gz) = 36796 bytes --_----------=_1682868188279100--