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 3A3091A9239 for ; Sun, 14 Nov 2021 15:13:07 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 7417A84D2C; Sun, 14 Nov 2021 15:13:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AFE5784CDC for ; Sun, 14 Nov 2021 15:13:05 +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 fDjySnrhD5ms for ; Sun, 14 Nov 2021 15:13:05 +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 CD10084CD9 for ; Sun, 14 Nov 2021 15:13:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C9FEBFAEC; Sun, 14 Nov 2021 15:13:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163690278437530" MIME-Version: 1.0 Date: Sun, 14 Nov 2021 15:13:04 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-stevedore To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20211114151304.C9FEBFAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163690278437530 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Sun Nov 14 15:13:04 UTC 2021 Modified Files: pkgsrc/devel/py-stevedore: Makefile PLIST distinfo Log Message: py-stevedore: updated to 3.5.0 3.5.0 Add Python3 yoga unit tests Update master for stable/xena Rely on member access, the preferred access since importlib_metadata 4.8 3.4.0 setup.cfg: Replace dashes with underscores Fix formatting of release list Remove lower-constraints remnants Move flake8 as a pre-commit local target Add Python3 xena unit tests Update master for stable/wallaby Dropping lower constraints testing 3.3.0 Use TOX_CONSTRAINTS_FILE Use py3 as the default runtime for tox Adding pre-commit Fix cache dir flooding when running from /tmp Add Python3 wallaby unit tests Update master for stable/victoria 3.2.2 fix supported python versions in documentation 3.2.1 Fix the bug 1892610. There’re some syntax errors in the comment of stevedore code 3.2.0 add property methods to extension for more entry point values 3.1.0 sphinxext: fix warning message for detailed list 3.0.0 add release note before major version update switch to importlib.metadata package 2.0.1 Remove Travis CI config Replace external mock with built-in unittest.mock 2.0.0 Stop to use the __future__ module Switch to newer openstackdocstheme and reno versions Add Python3 victoria unit tests Mark sphinx extensions thread safe Remove dead files Drop Python 2.7 support Update master for stable/ussuri To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/py-stevedore/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-stevedore/PLIST cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-stevedore/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163690278437530 Content-Disposition: inline Content-Length: 3638 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-stevedore/Makefile diff -u pkgsrc/devel/py-stevedore/Makefile:1.7 pkgsrc/devel/py-stevedore/Makefile:1.8 --- pkgsrc/devel/py-stevedore/Makefile:1.7 Wed Feb 12 07:56:54 2020 +++ pkgsrc/devel/py-stevedore/Makefile Sun Nov 14 15:13:04 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2020/02/12 07:56:54 adam Exp $ +# $NetBSD: Makefile,v 1.8 2021/11/14 15:13:04 adam Exp $ -DISTNAME= stevedore-1.32.0 +DISTNAME= stevedore-3.5.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=s/stevedore/} @@ -12,8 +12,20 @@ LICENSE= apache-2.0 DEPENDS+= ${PYPKGPREFIX}-pbr>=2.1.1:../../devel/py-pbr DEPENDS+= ${PYPKGPREFIX}-six>=1.10.0:../../lang/py-six +TEST_DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx +TEST_DEPENDS+= ${PYPKGPREFIX}-testtools-[0-9]*:../../devel/py-testtools USE_LANGUAGES= # none +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +.include "../../lang/python/pyversion.mk" +.if ${_PYTHON_VERSION} < 38 +DEPENDS+= ${PYPKGPREFIX}-importlib-metadata>=1.7.0:../../devel/py-importlib-metadata +.endif + +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHONBIN} -m unittest discover -v + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-stevedore/PLIST diff -u pkgsrc/devel/py-stevedore/PLIST:1.1 pkgsrc/devel/py-stevedore/PLIST:1.2 --- pkgsrc/devel/py-stevedore/PLIST:1.1 Fri Apr 14 14:05:56 2017 +++ pkgsrc/devel/py-stevedore/PLIST Sun Nov 14 15:13:04 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2017/04/14 14:05:56 leot Exp $ +@comment $NetBSD: PLIST,v 1.2 2021/11/14 15:13:04 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -10,6 +10,9 @@ ${PYSITELIB}/${EGG_INFODIR}/top_level.tx ${PYSITELIB}/stevedore/__init__.py ${PYSITELIB}/stevedore/__init__.pyc ${PYSITELIB}/stevedore/__init__.pyo +${PYSITELIB}/stevedore/_cache.py +${PYSITELIB}/stevedore/_cache.pyc +${PYSITELIB}/stevedore/_cache.pyo ${PYSITELIB}/stevedore/dispatch.py ${PYSITELIB}/stevedore/dispatch.pyc ${PYSITELIB}/stevedore/dispatch.pyo @@ -70,6 +73,9 @@ ${PYSITELIB}/stevedore/tests/extension_u ${PYSITELIB}/stevedore/tests/manager.py ${PYSITELIB}/stevedore/tests/manager.pyc ${PYSITELIB}/stevedore/tests/manager.pyo +${PYSITELIB}/stevedore/tests/test_cache.py +${PYSITELIB}/stevedore/tests/test_cache.pyc +${PYSITELIB}/stevedore/tests/test_cache.pyo ${PYSITELIB}/stevedore/tests/test_callback.py ${PYSITELIB}/stevedore/tests/test_callback.pyc ${PYSITELIB}/stevedore/tests/test_callback.pyo Index: pkgsrc/devel/py-stevedore/distinfo diff -u pkgsrc/devel/py-stevedore/distinfo:1.8 pkgsrc/devel/py-stevedore/distinfo:1.9 --- pkgsrc/devel/py-stevedore/distinfo:1.8 Tue Oct 26 10:19:06 2021 +++ pkgsrc/devel/py-stevedore/distinfo Sun Nov 14 15:13:04 2021 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.8 2021/10/26 10:19:06 nia Exp $ +$NetBSD: distinfo,v 1.9 2021/11/14 15:13:04 adam Exp $ -BLAKE2s (stevedore-1.32.0.tar.gz) = 8cf94cc41abc610c72e7d3211b22db613e6b4f309dc969177cbeefa0d26b5abe -SHA512 (stevedore-1.32.0.tar.gz) = 98c66b9ac827f69737cc2522029108831380b4bf4c633786d9819b52be930f6116ce5bfab58e724a2efad147830fcb6353409322fc5e01617d35d1c8aafb0259 -Size (stevedore-1.32.0.tar.gz) = 510344 bytes +BLAKE2s (stevedore-3.5.0.tar.gz) = 959e5200b0dd0e2df8c9ace057b6536b42df019bf9f881b85e63e95e76751460 +SHA512 (stevedore-3.5.0.tar.gz) = be0f82230d7d4d3cf18dd913e11093ad90744e32a3021d9f88f0be244f56d0e3606af0adef67674c569c41d885837be3f0fc4d58009e036151cc67963a4f2ab3 +Size (stevedore-3.5.0.tar.gz) = 513548 bytes --_----------=_163690278437530--