Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E46D784D32 for ; Sun, 27 Aug 2023 02:45:33 +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 Iyiekrw83ick for ; Sun, 27 Aug 2023 02:45:33 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 52A6884CD9 for ; Sun, 27 Aug 2023 02:45:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9AB86FBDB; Sun, 27 Aug 2023 02:44:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693104293287790" MIME-Version: 1.0 Date: Sun, 27 Aug 2023 02:44:53 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-autopep8 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230827024453.9AB86FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693104293287790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Aug 27 02:44:53 UTC 2023 Modified Files: pkgsrc/devel/py-autopep8: Makefile distinfo Log Message: py-autopep8: updated to 2.0.4 v2.0.4 Paugier fix pycodestyle missing whitespace Try to fix an AttributeError related to pycodestyle 2.11.0 v2.0.3 add pre-commit configuration Add pre commit config Version dependent operator whitespace function. Update MANIFEST.in To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/py-autopep8/Makefile cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/py-autopep8/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693104293287790 Content-Disposition: inline Content-Length: 2094 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-autopep8/Makefile diff -u pkgsrc/devel/py-autopep8/Makefile:1.22 pkgsrc/devel/py-autopep8/Makefile:1.23 --- pkgsrc/devel/py-autopep8/Makefile:1.22 Sun Apr 30 14:41:14 2023 +++ pkgsrc/devel/py-autopep8/Makefile Sun Aug 27 02:44:53 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.22 2023/04/30 14:41:14 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2023/08/27 02:44:53 adam Exp $ -DISTNAME= autopep8-2.0.2 +DISTNAME= autopep8-2.0.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=a/autopep8/} @@ -11,13 +11,17 @@ COMMENT= Automatic formatter of Python c LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-codestyle>=2.10.0:../../devel/py-codestyle -DEPENDS+= ${PYPKGPREFIX}-toml-[0-9]*:../../textproc/py-toml USE_LANGUAGES= # none +USE_PKG_RESOURCES= yes + 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 post-install: cd ${DESTDIR}${PREFIX}/bin && \ Index: pkgsrc/devel/py-autopep8/distinfo diff -u pkgsrc/devel/py-autopep8/distinfo:1.21 pkgsrc/devel/py-autopep8/distinfo:1.22 --- pkgsrc/devel/py-autopep8/distinfo:1.21 Sun Apr 30 14:41:14 2023 +++ pkgsrc/devel/py-autopep8/distinfo Sun Aug 27 02:44:53 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.21 2023/04/30 14:41:14 wiz Exp $ +$NetBSD: distinfo,v 1.22 2023/08/27 02:44:53 adam Exp $ -BLAKE2s (autopep8-2.0.2.tar.gz) = 1af0b81651be6905adac6167496c38b8616ace972930f9a8607b404da20dfbdb -SHA512 (autopep8-2.0.2.tar.gz) = 09471827d18ca0c691bc524e0639a416d1a4418ddda1cb88f50e5c5302e75e7014751e659e26439c22317db21588fbd956c94299cef44e2c47771df38de94be3 -Size (autopep8-2.0.2.tar.gz) = 116154 bytes +BLAKE2s (autopep8-2.0.4.tar.gz) = 1c34c20a6a8be0f9b32d5327725701f261e3b58a118a0870a971b3249b094c68 +SHA512 (autopep8-2.0.4.tar.gz) = 2c3731d328d0128b4e93c9cb05d730cdf4e08cb18b73ca0de3ac24462feb3e1e61c805ce4cef67f0df2db04773657d0efae70cbca9a67fa5d2790b07daeafeac +Size (autopep8-2.0.4.tar.gz) = 116472 bytes --_----------=_1693104293287790--