pkgsrc-Changes archive

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

CVS commit: pkgsrc/sysutils/py-loguru



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Nov 27 15:31:19 UTC 2023

Modified Files:
        pkgsrc/sysutils/py-loguru: Makefile PLIST distinfo

Log Message:
py-loguru: updated to 0.7.2

0.7.2 (2023-09-11)

Add support for formatting of ExceptionGroup errors
Fix possible RuntimeError when using multiprocessing.set_start_method() after importing the logger
Fix formatting of possible __notes__ attached to an Exception

0.7.1 (2023-09-04)

Add a new context optional argument to logger.add() specifying multiprocessing context (like "spawn" or "fork") to be used internally instead of the default one
Add support for true colors on Windows using ANSI/VT console when available
Fix possible deadlock when calling logger.complete() with concurrent logging of an asynchronous sink
Fix file possibly rotating too early or too late when re-starting an application around midnight
Fix inverted "<hide>" and "<strike>" color tags
Fix possible untraceable errors raised when logging non-unpicklable Exception instances while using enqueue=True
Fix possible errors raised when logging non-picklable Exception instances while using enqueue=True
Fix missing seconds and microseconds when formatting timezone offset that requires such accuracy
Raise ValueError if an attempt to use nanosecond precision for time formatting is detected


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/py-loguru/Makefile \
    pkgsrc/sysutils/py-loguru/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/sysutils/py-loguru/PLIST

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/sysutils/py-loguru/Makefile
diff -u pkgsrc/sysutils/py-loguru/Makefile:1.2 pkgsrc/sysutils/py-loguru/Makefile:1.3
--- pkgsrc/sysutils/py-loguru/Makefile:1.2      Fri Aug  4 09:52:31 2023
+++ pkgsrc/sysutils/py-loguru/Makefile  Mon Nov 27 15:31:19 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2023/08/04 09:52:31 adam Exp $
+# $NetBSD: Makefile,v 1.3 2023/11/27 15:31:19 adam Exp $
 
-DISTNAME=      loguru-0.7.0
+DISTNAME=      loguru-0.7.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    sysutils python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=l/loguru/}
@@ -11,7 +11,6 @@ COMMENT=      Python logging made (stupidly) 
 LICENSE=       mit
 
 TEST_DEPENDS+= ${PYPKGPREFIX}-freezegun>=1.2.2:../../devel/py-freezegun
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=4.0.0:../../devel/py-test-cov
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-mypy-plugins>=1.10.1:../../devel/py-test-mypy-plugins
 
@@ -19,8 +18,5 @@ USE_LANGUAGES=        # none
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
-do-test:
-       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests
-
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"
Index: pkgsrc/sysutils/py-loguru/distinfo
diff -u pkgsrc/sysutils/py-loguru/distinfo:1.2 pkgsrc/sysutils/py-loguru/distinfo:1.3
--- pkgsrc/sysutils/py-loguru/distinfo:1.2      Fri Aug  4 09:52:31 2023
+++ pkgsrc/sysutils/py-loguru/distinfo  Mon Nov 27 15:31:19 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2023/08/04 09:52:31 adam Exp $
+$NetBSD: distinfo,v 1.3 2023/11/27 15:31:19 adam Exp $
 
-BLAKE2s (loguru-0.7.0.tar.gz) = a95961d78d01585b41e2af181d5a1717b0461cec05c4f77a1596b3a5b182a8b1
-SHA512 (loguru-0.7.0.tar.gz) = 9644645174c492cebfb9397d901a589684da467eedfc45f77eee7b0323bb0e98b1c4f40c99d259553b0bd11853ae1b5679d9874515a65aec87792b332e062e20
-Size (loguru-0.7.0.tar.gz) = 131961 bytes
+BLAKE2s (loguru-0.7.2.tar.gz) = 0e87dadc328ba7868b3f8ae4b16973d8c8d8ca88f44258d8afe109799b0653af
+SHA512 (loguru-0.7.2.tar.gz) = 68cb7172f6f65fa1b9f9659b0ef7e361cc2423014b18e4a2b0f32c78616df6ae5bc7b64423a1e9d20f66347894170bcad69c36bf1e11d2ef4ef589313f3b85a4
+Size (loguru-0.7.2.tar.gz) = 145103 bytes

Index: pkgsrc/sysutils/py-loguru/PLIST
diff -u pkgsrc/sysutils/py-loguru/PLIST:1.1 pkgsrc/sysutils/py-loguru/PLIST:1.2
--- pkgsrc/sysutils/py-loguru/PLIST:1.1 Thu Aug 25 11:12:32 2022
+++ pkgsrc/sysutils/py-loguru/PLIST     Mon Nov 27 15:31:19 2023
@@ -1,9 +1,9 @@
-@comment $NetBSD: PLIST,v 1.1 2022/08/25 11:12:32 adam Exp $
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+@comment $NetBSD: PLIST,v 1.2 2023/11/27 15:31:19 adam Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
 ${PYSITELIB}/loguru/__init__.py
 ${PYSITELIB}/loguru/__init__.pyc
 ${PYSITELIB}/loguru/__init__.pyi



Home | Main Index | Thread Index | Old Index