Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D10EF84D28 for ; Mon, 29 May 2023 08:47:35 +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 bT7o13kkMSnc for ; Mon, 29 May 2023 08:47:35 +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 4229C84CF3 for ; Mon, 29 May 2023 08:47:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3C129FA87; Mon, 29 May 2023 08:47:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1685350055203650" MIME-Version: 1.0 Date: Mon, 29 May 2023 08:47:35 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-deprecated To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230529084735.3C129FA87@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1685350055203650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon May 29 08:47:35 UTC 2023 Modified Files: pkgsrc/devel/py-deprecated: Makefile distinfo Log Message: py-deprecated: updated to 1.2.14 v1.2.14 Bug fix release Fix - Fix: return a correctly dedented docstring when long docstring are using the D212 or D213 format. Other - Add support for Python 3.11. - Drop support for Python older than 3.7 in build systems like pytest and tox, while ensuring the library remains production-compatible. - Update GitHub workflow to run in recent Python versions. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-deprecated/Makefile \ pkgsrc/devel/py-deprecated/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1685350055203650 Content-Disposition: inline Content-Length: 2132 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-deprecated/Makefile diff -u pkgsrc/devel/py-deprecated/Makefile:1.1 pkgsrc/devel/py-deprecated/Makefile:1.2 --- pkgsrc/devel/py-deprecated/Makefile:1.1 Mon Jan 10 17:39:52 2022 +++ pkgsrc/devel/py-deprecated/Makefile Mon May 29 08:47:35 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.1 2022/01/10 17:39:52 adam Exp $ +# $NetBSD: Makefile,v 1.2 2023/05/29 08:47:35 adam Exp $ -DISTNAME= Deprecated-1.2.13 +DISTNAME= Deprecated-1.2.14 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=d/deprecated/} @@ -11,14 +11,14 @@ COMMENT= Python decorator to deprecate o LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-wrapt>=1.10:../../devel/py-wrapt +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test USE_LANGUAGES= # none -PYTHON_VERSIONED_DEPENDENCIES= test:test +PYTHON_VERSIONS_INCOMPATIBLE= 27 do-test: cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-deprecated/distinfo diff -u pkgsrc/devel/py-deprecated/distinfo:1.1 pkgsrc/devel/py-deprecated/distinfo:1.2 --- pkgsrc/devel/py-deprecated/distinfo:1.1 Mon Jan 10 17:39:52 2022 +++ pkgsrc/devel/py-deprecated/distinfo Mon May 29 08:47:35 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.1 2022/01/10 17:39:52 adam Exp $ +$NetBSD: distinfo,v 1.2 2023/05/29 08:47:35 adam Exp $ -BLAKE2s (Deprecated-1.2.13.tar.gz) = 530fc01551672975da8c121b5ef3382a82d4fe860043d9e6731a971f95cd0772 -SHA512 (Deprecated-1.2.13.tar.gz) = 2b713f942465e46e9f7d70b18bb4f1ce15d8e388f06c6fd7e009921b4fa68c9d71e296f6cb1ac195ef7e73707c1bb6a01d923c12f11d7b73356eb022982abf4d -Size (Deprecated-1.2.13.tar.gz) = 2974598 bytes +BLAKE2s (Deprecated-1.2.14.tar.gz) = 5a274c9ee4371e7bd373d5555e4daf04dba2c6890bda0001d8677b6b635d9959 +SHA512 (Deprecated-1.2.14.tar.gz) = 5c2f71fc4c1abb6d4a6913bd9644d47d12f709a0830b2aa3513aa2aa92c13e916c49fcd45a5f38aa29279822a5bb8563c4062e5f3e21bb6c55ca97b7845ee736 +Size (Deprecated-1.2.14.tar.gz) = 2974416 bytes --_----------=_1685350055203650--