pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/py-stevedore py-stevedore: updated to 3.5.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8b48f4a3f4a6
branches:  trunk
changeset: 769392:8b48f4a3f4a6
user:      adam <adam%pkgsrc.org@localhost>
date:      Sun Nov 14 15:13:04 2021 +0000

description:
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

diffstat:

 devel/py-stevedore/Makefile |  16 ++++++++++++++--
 devel/py-stevedore/PLIST    |   8 +++++++-
 devel/py-stevedore/distinfo |   8 ++++----
 3 files changed, 25 insertions(+), 7 deletions(-)

diffs (75 lines):

diff -r e5e69b5fb2e7 -r 8b48f4a3f4a6 devel/py-stevedore/Makefile
--- a/devel/py-stevedore/Makefile       Sun Nov 14 14:47:11 2021 +0000
+++ b/devel/py-stevedore/Makefile       Sun Nov 14 15:13:04 2021 +0000
@@ -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 @@
 
 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"
diff -r e5e69b5fb2e7 -r 8b48f4a3f4a6 devel/py-stevedore/PLIST
--- a/devel/py-stevedore/PLIST  Sun Nov 14 14:47:11 2021 +0000
+++ b/devel/py-stevedore/PLIST  Sun Nov 14 15:13:04 2021 +0000
@@ -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}/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/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
diff -r e5e69b5fb2e7 -r 8b48f4a3f4a6 devel/py-stevedore/distinfo
--- a/devel/py-stevedore/distinfo       Sun Nov 14 14:47:11 2021 +0000
+++ b/devel/py-stevedore/distinfo       Sun Nov 14 15:13:04 2021 +0000
@@ -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