Sun Nov 14 15:13:04 2021 UTC ()
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窶决e 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


(adam)
diff -r1.7 -r1.8 pkgsrc/devel/py-stevedore/Makefile
diff -r1.1 -r1.2 pkgsrc/devel/py-stevedore/PLIST
diff -r1.8 -r1.9 pkgsrc/devel/py-stevedore/distinfo

cvs diff -r1.7 -r1.8 pkgsrc/devel/py-stevedore/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/py-stevedore/Makefile 2020/02/12 07:56:54 1.7
+++ pkgsrc/devel/py-stevedore/Makefile 2021/11/14 15:13:04 1.8
@@ -1,19 +1,31 @@ @@ -1,19 +1,31 @@
1# $NetBSD: Makefile,v 1.7 2020/02/12 07:56:54 adam Exp $ 1# $NetBSD: Makefile,v 1.8 2021/11/14 15:13:04 adam Exp $
2 2
3DISTNAME= stevedore-1.32.0 3DISTNAME= stevedore-3.5.0
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= devel python 5CATEGORIES= devel python
6MASTER_SITES= ${MASTER_SITE_PYPI:=s/stevedore/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=s/stevedore/}
7 7
8MAINTAINER= kamelderouiche@yahoo.com 8MAINTAINER= kamelderouiche@yahoo.com
9HOMEPAGE= https://github.com/dreamhost/stevedore 9HOMEPAGE= https://github.com/dreamhost/stevedore
10COMMENT= Manage dynamic plugins for Python applications 10COMMENT= Manage dynamic plugins for Python applications
11LICENSE= apache-2.0 11LICENSE= apache-2.0
12 12
13DEPENDS+= ${PYPKGPREFIX}-pbr>=2.1.1:../../devel/py-pbr 13DEPENDS+= ${PYPKGPREFIX}-pbr>=2.1.1:../../devel/py-pbr
14DEPENDS+= ${PYPKGPREFIX}-six>=1.10.0:../../lang/py-six 14DEPENDS+= ${PYPKGPREFIX}-six>=1.10.0:../../lang/py-six
 15TEST_DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx
 16TEST_DEPENDS+= ${PYPKGPREFIX}-testtools-[0-9]*:../../devel/py-testtools
15 17
16USE_LANGUAGES= # none 18USE_LANGUAGES= # none
17 19
 20PYTHON_VERSIONS_INCOMPATIBLE= 27
 21
 22.include "../../lang/python/pyversion.mk"
 23.if ${_PYTHON_VERSION} < 38
 24DEPENDS+= ${PYPKGPREFIX}-importlib-metadata>=1.7.0:../../devel/py-importlib-metadata
 25.endif
 26
 27do-test:
 28 cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHONBIN} -m unittest discover -v
 29
18.include "../../lang/python/egg.mk" 30.include "../../lang/python/egg.mk"
19.include "../../mk/bsd.pkg.mk" 31.include "../../mk/bsd.pkg.mk"

cvs diff -r1.1 -r1.2 pkgsrc/devel/py-stevedore/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/py-stevedore/PLIST 2017/04/14 14:05:56 1.1
+++ pkgsrc/devel/py-stevedore/PLIST 2021/11/14 15:13:04 1.2
@@ -1,25 +1,28 @@ @@ -1,25 +1,28 @@
1@comment $NetBSD: PLIST,v 1.1 2017/04/14 14:05:56 leot Exp $ 1@comment $NetBSD: PLIST,v 1.2 2021/11/14 15:13:04 adam Exp $
2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
5${PYSITELIB}/${EGG_INFODIR}/entry_points.txt 5${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
6${PYSITELIB}/${EGG_INFODIR}/not-zip-safe 6${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
7${PYSITELIB}/${EGG_INFODIR}/pbr.json 7${PYSITELIB}/${EGG_INFODIR}/pbr.json
8${PYSITELIB}/${EGG_INFODIR}/requires.txt 8${PYSITELIB}/${EGG_INFODIR}/requires.txt
9${PYSITELIB}/${EGG_INFODIR}/top_level.txt 9${PYSITELIB}/${EGG_INFODIR}/top_level.txt
10${PYSITELIB}/stevedore/__init__.py 10${PYSITELIB}/stevedore/__init__.py
11${PYSITELIB}/stevedore/__init__.pyc 11${PYSITELIB}/stevedore/__init__.pyc
12${PYSITELIB}/stevedore/__init__.pyo 12${PYSITELIB}/stevedore/__init__.pyo
 13${PYSITELIB}/stevedore/_cache.py
 14${PYSITELIB}/stevedore/_cache.pyc
 15${PYSITELIB}/stevedore/_cache.pyo
13${PYSITELIB}/stevedore/dispatch.py 16${PYSITELIB}/stevedore/dispatch.py
14${PYSITELIB}/stevedore/dispatch.pyc 17${PYSITELIB}/stevedore/dispatch.pyc
15${PYSITELIB}/stevedore/dispatch.pyo 18${PYSITELIB}/stevedore/dispatch.pyo
16${PYSITELIB}/stevedore/driver.py 19${PYSITELIB}/stevedore/driver.py
17${PYSITELIB}/stevedore/driver.pyc 20${PYSITELIB}/stevedore/driver.pyc
18${PYSITELIB}/stevedore/driver.pyo 21${PYSITELIB}/stevedore/driver.pyo
19${PYSITELIB}/stevedore/enabled.py 22${PYSITELIB}/stevedore/enabled.py
20${PYSITELIB}/stevedore/enabled.pyc 23${PYSITELIB}/stevedore/enabled.pyc
21${PYSITELIB}/stevedore/enabled.pyo 24${PYSITELIB}/stevedore/enabled.pyo
22${PYSITELIB}/stevedore/example/__init__.py 25${PYSITELIB}/stevedore/example/__init__.py
23${PYSITELIB}/stevedore/example/__init__.pyc 26${PYSITELIB}/stevedore/example/__init__.pyc
24${PYSITELIB}/stevedore/example/__init__.pyo 27${PYSITELIB}/stevedore/example/__init__.pyo
25${PYSITELIB}/stevedore/example/base.py 28${PYSITELIB}/stevedore/example/base.py
@@ -60,26 +63,29 @@ ${PYSITELIB}/stevedore/named.pyc @@ -60,26 +63,29 @@ ${PYSITELIB}/stevedore/named.pyc
60${PYSITELIB}/stevedore/named.pyo 63${PYSITELIB}/stevedore/named.pyo
61${PYSITELIB}/stevedore/sphinxext.py 64${PYSITELIB}/stevedore/sphinxext.py
62${PYSITELIB}/stevedore/sphinxext.pyc 65${PYSITELIB}/stevedore/sphinxext.pyc
63${PYSITELIB}/stevedore/sphinxext.pyo 66${PYSITELIB}/stevedore/sphinxext.pyo
64${PYSITELIB}/stevedore/tests/__init__.py 67${PYSITELIB}/stevedore/tests/__init__.py
65${PYSITELIB}/stevedore/tests/__init__.pyc 68${PYSITELIB}/stevedore/tests/__init__.pyc
66${PYSITELIB}/stevedore/tests/__init__.pyo 69${PYSITELIB}/stevedore/tests/__init__.pyo
67${PYSITELIB}/stevedore/tests/extension_unimportable.py 70${PYSITELIB}/stevedore/tests/extension_unimportable.py
68${PYSITELIB}/stevedore/tests/extension_unimportable.pyc 71${PYSITELIB}/stevedore/tests/extension_unimportable.pyc
69${PYSITELIB}/stevedore/tests/extension_unimportable.pyo 72${PYSITELIB}/stevedore/tests/extension_unimportable.pyo
70${PYSITELIB}/stevedore/tests/manager.py 73${PYSITELIB}/stevedore/tests/manager.py
71${PYSITELIB}/stevedore/tests/manager.pyc 74${PYSITELIB}/stevedore/tests/manager.pyc
72${PYSITELIB}/stevedore/tests/manager.pyo 75${PYSITELIB}/stevedore/tests/manager.pyo
 76${PYSITELIB}/stevedore/tests/test_cache.py
 77${PYSITELIB}/stevedore/tests/test_cache.pyc
 78${PYSITELIB}/stevedore/tests/test_cache.pyo
73${PYSITELIB}/stevedore/tests/test_callback.py 79${PYSITELIB}/stevedore/tests/test_callback.py
74${PYSITELIB}/stevedore/tests/test_callback.pyc 80${PYSITELIB}/stevedore/tests/test_callback.pyc
75${PYSITELIB}/stevedore/tests/test_callback.pyo 81${PYSITELIB}/stevedore/tests/test_callback.pyo
76${PYSITELIB}/stevedore/tests/test_dispatch.py 82${PYSITELIB}/stevedore/tests/test_dispatch.py
77${PYSITELIB}/stevedore/tests/test_dispatch.pyc 83${PYSITELIB}/stevedore/tests/test_dispatch.pyc
78${PYSITELIB}/stevedore/tests/test_dispatch.pyo 84${PYSITELIB}/stevedore/tests/test_dispatch.pyo
79${PYSITELIB}/stevedore/tests/test_driver.py 85${PYSITELIB}/stevedore/tests/test_driver.py
80${PYSITELIB}/stevedore/tests/test_driver.pyc 86${PYSITELIB}/stevedore/tests/test_driver.pyc
81${PYSITELIB}/stevedore/tests/test_driver.pyo 87${PYSITELIB}/stevedore/tests/test_driver.pyo
82${PYSITELIB}/stevedore/tests/test_enabled.py 88${PYSITELIB}/stevedore/tests/test_enabled.py
83${PYSITELIB}/stevedore/tests/test_enabled.pyc 89${PYSITELIB}/stevedore/tests/test_enabled.pyc
84${PYSITELIB}/stevedore/tests/test_enabled.pyo 90${PYSITELIB}/stevedore/tests/test_enabled.pyo
85${PYSITELIB}/stevedore/tests/test_example_fields.py 91${PYSITELIB}/stevedore/tests/test_example_fields.py

cvs diff -r1.8 -r1.9 pkgsrc/devel/py-stevedore/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/py-stevedore/distinfo 2021/10/26 10:19:06 1.8
+++ pkgsrc/devel/py-stevedore/distinfo 2021/11/14 15:13:04 1.9
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.8 2021/10/26 10:19:06 nia Exp $ 1$NetBSD: distinfo,v 1.9 2021/11/14 15:13:04 adam Exp $
2 2
3BLAKE2s (stevedore-1.32.0.tar.gz) = 8cf94cc41abc610c72e7d3211b22db613e6b4f309dc969177cbeefa0d26b5abe 3BLAKE2s (stevedore-3.5.0.tar.gz) = 959e5200b0dd0e2df8c9ace057b6536b42df019bf9f881b85e63e95e76751460
4SHA512 (stevedore-1.32.0.tar.gz) = 98c66b9ac827f69737cc2522029108831380b4bf4c633786d9819b52be930f6116ce5bfab58e724a2efad147830fcb6353409322fc5e01617d35d1c8aafb0259 4SHA512 (stevedore-3.5.0.tar.gz) = be0f82230d7d4d3cf18dd913e11093ad90744e32a3021d9f88f0be244f56d0e3606af0adef67674c569c41d885837be3f0fc4d58009e036151cc67963a4f2ab3
5Size (stevedore-1.32.0.tar.gz) = 510344 bytes 5Size (stevedore-3.5.0.tar.gz) = 513548 bytes