pkgsrc-Changes archive

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

CVS commit: pkgsrc/www/py-django-timezone-field



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Jan 23 07:56:20 UTC 2024

Modified Files:
        pkgsrc/www/py-django-timezone-field: Makefile PLIST distinfo

Log Message:
py-django-timezone-field: updated to 6.1.0

6.1.0 (2023-11-25)

Add support for django 5.0
Add support for python 3.12
Fix issue with Factory timezone on some BSD systems

6.0.1 (2023-09-07)

Use correct default backend when running with django 3.X

6.0 (2023-08-20)

BREAKING: pytz removed from dependencies. If you use this package with use_pytz=True, you'll need to install pytz yourself.
Drop support for django 2.2
Drop support for python 3.7


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/www/py-django-timezone-field/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/py-django-timezone-field/PLIST
cvs rdiff -u -r1.5 -r1.6 pkgsrc/www/py-django-timezone-field/distinfo

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

Modified files:

Index: pkgsrc/www/py-django-timezone-field/Makefile
diff -u pkgsrc/www/py-django-timezone-field/Makefile:1.6 pkgsrc/www/py-django-timezone-field/Makefile:1.7
--- pkgsrc/www/py-django-timezone-field/Makefile:1.6    Thu Jul 13 10:03:29 2023
+++ pkgsrc/www/py-django-timezone-field/Makefile        Tue Jan 23 07:56:20 2024
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.6 2023/07/13 10:03:29 wiz Exp $
+# $NetBSD: Makefile,v 1.7 2024/01/23 07:56:20 adam Exp $
 
-DISTNAME=      django-timezone-field-4.2.1
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   2
+DISTNAME=      django_timezone_field-6.1.0
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/_/-/g}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=d/django-timezone-field/}
 
@@ -11,12 +10,17 @@ HOMEPAGE=   https://github.com/mfogel/djan
 COMMENT=       Database and form fields for pytz timezone objects
 LICENSE=       modified-bsd
 
-DEPENDS+=      ${PYPKGPREFIX}-django>=3:../../www/py-django3
-TEST_DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
+TOOL_DEPENDS+= ${PYPKGPREFIX}-poetry-core>=1.0.0:../../devel/py-poetry-core
+DEPENDS+=      ${PYPKGPREFIX}-django>=3.2:../../www/py-django
 
 USE_LANGUAGES= # none
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/pyversion.mk"
+.if ${PYTHON_VERSION} < 309
+DEPENDS+=      ${PYPKGPREFIX}-backports.zoneinfo-[0-9]*:../../time/py-backports.zoneinfo
+.endif
+
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/www/py-django-timezone-field/PLIST
diff -u pkgsrc/www/py-django-timezone-field/PLIST:1.2 pkgsrc/www/py-django-timezone-field/PLIST:1.3
--- pkgsrc/www/py-django-timezone-field/PLIST:1.2       Sat May  8 06:07:05 2021
+++ pkgsrc/www/py-django-timezone-field/PLIST   Tue Jan 23 07:56:20 2024
@@ -1,12 +1,23 @@
-@comment $NetBSD: PLIST,v 1.2 2021/05/08 06:07:05 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.3 2024/01/23 07:56:20 adam Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.txt
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
 ${PYSITELIB}/timezone_field/__init__.py
 ${PYSITELIB}/timezone_field/__init__.pyc
 ${PYSITELIB}/timezone_field/__init__.pyo
+${PYSITELIB}/timezone_field/backends/__init__.py
+${PYSITELIB}/timezone_field/backends/__init__.pyc
+${PYSITELIB}/timezone_field/backends/__init__.pyo
+${PYSITELIB}/timezone_field/backends/base.py
+${PYSITELIB}/timezone_field/backends/base.pyc
+${PYSITELIB}/timezone_field/backends/base.pyo
+${PYSITELIB}/timezone_field/backends/pytz.py
+${PYSITELIB}/timezone_field/backends/pytz.pyc
+${PYSITELIB}/timezone_field/backends/pytz.pyo
+${PYSITELIB}/timezone_field/backends/zoneinfo.py
+${PYSITELIB}/timezone_field/backends/zoneinfo.pyc
+${PYSITELIB}/timezone_field/backends/zoneinfo.pyo
 ${PYSITELIB}/timezone_field/choices.py
 ${PYSITELIB}/timezone_field/choices.pyc
 ${PYSITELIB}/timezone_field/choices.pyo
@@ -22,6 +33,3 @@ ${PYSITELIB}/timezone_field/models.pyo
 ${PYSITELIB}/timezone_field/rest_framework.py
 ${PYSITELIB}/timezone_field/rest_framework.pyc
 ${PYSITELIB}/timezone_field/rest_framework.pyo
-${PYSITELIB}/timezone_field/utils.py
-${PYSITELIB}/timezone_field/utils.pyc
-${PYSITELIB}/timezone_field/utils.pyo

Index: pkgsrc/www/py-django-timezone-field/distinfo
diff -u pkgsrc/www/py-django-timezone-field/distinfo:1.5 pkgsrc/www/py-django-timezone-field/distinfo:1.6
--- pkgsrc/www/py-django-timezone-field/distinfo:1.5    Tue Oct 26 11:30:33 2021
+++ pkgsrc/www/py-django-timezone-field/distinfo        Tue Jan 23 07:56:20 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.5 2021/10/26 11:30:33 nia Exp $
+$NetBSD: distinfo,v 1.6 2024/01/23 07:56:20 adam Exp $
 
-BLAKE2s (django-timezone-field-4.2.1.tar.gz) = e0ef85aa55abcea0b976d5f4947e416da2eadbe795b5b0fcc114259a59dcf2e6
-SHA512 (django-timezone-field-4.2.1.tar.gz) = d87640c1368af782a07e54612ce5b9bcee72c45f53e481079fb61d442d6abc3dea0d70a8575b154226454a84e3891bc206b987e9e752fa12aecd4987f7a1c48e
-Size (django-timezone-field-4.2.1.tar.gz) = 8871 bytes
+BLAKE2s (django_timezone_field-6.1.0.tar.gz) = 3404dbda48391517f3f8de75f1d71ff344362e99c1bf5e65776854ebb209deed
+SHA512 (django_timezone_field-6.1.0.tar.gz) = ae834f92b643463cb670f02ad8ec29506ae161920fe2c1523cff3ff4719791dfa5c2adf777c487699a4026f61509eb004272b18f47db7886e26bbef6373fd632
+Size (django_timezone_field-6.1.0.tar.gz) = 12430 bytes



Home | Main Index | Thread Index | Old Index