pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-test-localserver



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Aug 20 13:23:10 UTC 2024

Modified Files:
        pkgsrc/devel/py-test-localserver: Makefile PLIST distinfo

Log Message:
py-test-localserver: updated to 0.9.0

0.9.0 (2024-08-13)

Add support for exposing server certificate
Explicitly store request data
Make the code compliant with pre-commit hooks
Remove unused `six` from tox config
Drop Python 3.5 support
Add Python 3.13 support
Update the AUTHORS file


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/py-test-localserver/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-test-localserver/PLIST
cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/py-test-localserver/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-test-localserver/Makefile
diff -u pkgsrc/devel/py-test-localserver/Makefile:1.13 pkgsrc/devel/py-test-localserver/Makefile:1.14
--- pkgsrc/devel/py-test-localserver/Makefile:1.13      Thu Oct 12 07:18:29 2023
+++ pkgsrc/devel/py-test-localserver/Makefile   Tue Aug 20 13:23:10 2024
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.13 2023/10/12 07:18:29 adam Exp $
+# $NetBSD: Makefile,v 1.14 2024/08/20 13:23:10 adam Exp $
 
-DISTNAME=      pytest-localserver-0.8.1
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/py//}
+DISTNAME=      pytest_localserver-0.9.0
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/py//:S/_/-/}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pytest-localserver/}
 
@@ -13,14 +13,8 @@ LICENSE=     mit
 TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=3.4.1:../../devel/py-setuptools_scm
 DEPENDS+=      ${PYPKGPREFIX}-werkzeug>=0.10:../../www/py-werkzeug
 TEST_DEPENDS+= ${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
-
-PYTHON_VERSIONS_INCOMPATIBLE=  27
 
 USE_LANGUAGES= # none
 
-do-test:
-       cd ${WRKSRC}/tests && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX}
-
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-test-localserver/PLIST
diff -u pkgsrc/devel/py-test-localserver/PLIST:1.3 pkgsrc/devel/py-test-localserver/PLIST:1.4
--- pkgsrc/devel/py-test-localserver/PLIST:1.3  Fri Oct 21 17:48:58 2022
+++ pkgsrc/devel/py-test-localserver/PLIST      Tue Aug 20 13:23:10 2024
@@ -1,17 +1,18 @@
-@comment $NetBSD: PLIST,v 1.3 2022/10/21 17:48:58 adam Exp $
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
-${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+@comment $NetBSD: PLIST,v 1.4 2024/08/20 13:23:10 adam Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
 ${PYSITELIB}/pytest_localserver/__init__.py
 ${PYSITELIB}/pytest_localserver/__init__.pyc
 ${PYSITELIB}/pytest_localserver/__init__.pyo
 ${PYSITELIB}/pytest_localserver/_version.py
 ${PYSITELIB}/pytest_localserver/_version.pyc
 ${PYSITELIB}/pytest_localserver/_version.pyo
+${PYSITELIB}/pytest_localserver/cert.crt
 ${PYSITELIB}/pytest_localserver/http.py
 ${PYSITELIB}/pytest_localserver/http.pyc
 ${PYSITELIB}/pytest_localserver/http.pyo
@@ -21,7 +22,7 @@ ${PYSITELIB}/pytest_localserver/https.py
 ${PYSITELIB}/pytest_localserver/plugin.py
 ${PYSITELIB}/pytest_localserver/plugin.pyc
 ${PYSITELIB}/pytest_localserver/plugin.pyo
-${PYSITELIB}/pytest_localserver/server.pem
+${PYSITELIB}/pytest_localserver/server.key
 ${PYSITELIB}/pytest_localserver/smtp.py
 ${PYSITELIB}/pytest_localserver/smtp.pyc
 ${PYSITELIB}/pytest_localserver/smtp.pyo

Index: pkgsrc/devel/py-test-localserver/distinfo
diff -u pkgsrc/devel/py-test-localserver/distinfo:1.10 pkgsrc/devel/py-test-localserver/distinfo:1.11
--- pkgsrc/devel/py-test-localserver/distinfo:1.10      Thu Oct 12 07:18:29 2023
+++ pkgsrc/devel/py-test-localserver/distinfo   Tue Aug 20 13:23:10 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.10 2023/10/12 07:18:29 adam Exp $
+$NetBSD: distinfo,v 1.11 2024/08/20 13:23:10 adam Exp $
 
-BLAKE2s (pytest-localserver-0.8.1.tar.gz) = bf2472343caa3b1277e10561e2eda41795056bf8ff1a2076a39a10e0aeb0fbc5
-SHA512 (pytest-localserver-0.8.1.tar.gz) = d0707d70b3c5caf346c7461cfca203f903277458596839cc2b1d1d48b6d1e6252e51ebcb9c21dc28fd3b98ce8368cb38e771c2a4226a5fc1dec4007f0b243cc2
-Size (pytest-localserver-0.8.1.tar.gz) = 29088 bytes
+BLAKE2s (pytest_localserver-0.9.0.tar.gz) = fa2068dfa6ae0c09fbcf7717628861e7bf71ef0c9278fd5f076e7b9cae24565b
+SHA512 (pytest_localserver-0.9.0.tar.gz) = 15aa2db9d5a9ca841499d455de7002cd2cb6288c165605f44bb88d5ce3e06b9ce02eacd226853734017fe41075e1cfcdd5cd5c422ee240086ef0cf95fc450011
+Size (pytest_localserver-0.9.0.tar.gz) = 30222 bytes



Home | Main Index | Thread Index | Old Index