pkgsrc-Changes archive

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

CVS commit: pkgsrc/time/py-tempora



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Nov 28 17:15:22 UTC 2023

Modified Files:
        pkgsrc/time/py-tempora: Makefile PLIST distinfo

Log Message:
py-tempora: updated to 5.5.0

v5.5.0

Features

- Stopwatch now uses ``time.monotonic``.

v5.4.0

Features

- Require Python 3.8 or later.

v5.3.0

Removed use of ``datetime.utc**`` functions
deprecated in Python 3.12.

v5.2.2

Fixed bug in tests that would fail when a leap year
was about a year away.

v5.2.1

Restored dependency on ``jaraco.functools``, still
used in timing module.

v5.2.0

Remove dependency on jaraco.functools.

v5.1.1

Packaging refresh.

v5.1.0

Introduced ``infer_datetime`` and added some type hints.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 pkgsrc/time/py-tempora/Makefile
cvs rdiff -u -r1.9 -r1.10 pkgsrc/time/py-tempora/PLIST
cvs rdiff -u -r1.12 -r1.13 pkgsrc/time/py-tempora/distinfo

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

Modified files:

Index: pkgsrc/time/py-tempora/Makefile
diff -u pkgsrc/time/py-tempora/Makefile:1.20 pkgsrc/time/py-tempora/Makefile:1.21
--- pkgsrc/time/py-tempora/Makefile:1.20        Sat Oct 28 19:57:21 2023
+++ pkgsrc/time/py-tempora/Makefile     Tue Nov 28 17:15:22 2023
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.20 2023/10/28 19:57:21 wiz Exp $
+# $NetBSD: Makefile,v 1.21 2023/11/28 17:15:22 adam Exp $
 
-DISTNAME=      tempora-5.0.2
+DISTNAME=      tempora-5.5.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    time python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=t/tempora/}
 
@@ -11,14 +10,14 @@ HOMEPAGE=   https://github.com/jaraco/temp
 COMMENT=       Objects and routines pertaining to date and time
 LICENSE=       mit
 
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=56:../../devel/py-setuptools
 TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=3.4.1:../../devel/py-setuptools_scm
 TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
 DEPENDS+=      ${PYPKGPREFIX}-jaraco.functools>=1.20:../../devel/py-jaraco.functools
 DEPENDS+=      ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-checkdocs-[0-9]*:../../devel/py-test-checkdocs
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-flake8-[0-9]*:../../devel/py-test-flake8
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-freezegun-[0-9]*:../../devel/py-test-freezegun
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-freezer-[0-9]*:../../devel/py-test-freezegun
 
 USE_LANGUAGES= # none
 
@@ -28,8 +27,5 @@ post-install:
        cd ${DESTDIR}${PREFIX}/bin && \
        ${MV} calc-prorate calc-prorate-${PYVERSSUFFIX} || ${TRUE}
 
-do-test:
-       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX}
-
 .include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/time/py-tempora/PLIST
diff -u pkgsrc/time/py-tempora/PLIST:1.9 pkgsrc/time/py-tempora/PLIST:1.10
--- pkgsrc/time/py-tempora/PLIST:1.9    Sat Oct 28 19:57:21 2023
+++ pkgsrc/time/py-tempora/PLIST        Tue Nov 28 17:15:22 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2023/10/28 19:57:21 wiz Exp $
+@comment $NetBSD: PLIST,v 1.10 2023/11/28 17:15:22 adam Exp $
 bin/calc-prorate-${PYVERSSUFFIX}
 ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
@@ -12,12 +12,6 @@ ${PYSITELIB}/tempora/__init__.pyo
 ${PYSITELIB}/tempora/schedule.py
 ${PYSITELIB}/tempora/schedule.pyc
 ${PYSITELIB}/tempora/schedule.pyo
-${PYSITELIB}/tempora/tests/test_schedule.py
-${PYSITELIB}/tempora/tests/test_schedule.pyc
-${PYSITELIB}/tempora/tests/test_schedule.pyo
-${PYSITELIB}/tempora/tests/test_timing.py
-${PYSITELIB}/tempora/tests/test_timing.pyc
-${PYSITELIB}/tempora/tests/test_timing.pyo
 ${PYSITELIB}/tempora/timing.py
 ${PYSITELIB}/tempora/timing.pyc
 ${PYSITELIB}/tempora/timing.pyo

Index: pkgsrc/time/py-tempora/distinfo
diff -u pkgsrc/time/py-tempora/distinfo:1.12 pkgsrc/time/py-tempora/distinfo:1.13
--- pkgsrc/time/py-tempora/distinfo:1.12        Sun Nov  6 18:18:37 2022
+++ pkgsrc/time/py-tempora/distinfo     Tue Nov 28 17:15:22 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.12 2022/11/06 18:18:37 adam Exp $
+$NetBSD: distinfo,v 1.13 2023/11/28 17:15:22 adam Exp $
 
-BLAKE2s (tempora-5.0.2.tar.gz) = 66f2974c50d71afe9b05a28453bc3c274db193f9a5c7a45cf431794fc97b99c7
-SHA512 (tempora-5.0.2.tar.gz) = d0fe086b92e21622444b941c583e3432420b1826e60aa4b90bab31907a98b4989dd21ca99b5554e965f87e23c9d65d9bce8e434d801985f99f187b7dad2a715a
-Size (tempora-5.0.2.tar.gz) = 19530 bytes
+BLAKE2s (tempora-5.5.0.tar.gz) = 4b1d4137f308baef87a4a42b5629bd4527897ae601153744ec01f969abe53ad0
+SHA512 (tempora-5.5.0.tar.gz) = 7cf1d7f826e71e03bb733f082f0ac1e8746f1db64776c436fe683369c70164902140df9547757d8ed489366a5f7b336415aec076ea3c4b0b7b633ed09527f01b
+Size (tempora-5.5.0.tar.gz) = 20877 bytes



Home | Main Index | Thread Index | Old Index