pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-stevedore



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.

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



Home | Main Index | Thread Index | Old Index