pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/py-django
Module Name: pkgsrc
Committed By: adam
Date: Mon Apr 14 14:20:54 UTC 2025
Modified Files:
pkgsrc/www/py-django: Makefile PLIST distinfo
Log Message:
py-django: updated to 5.2
Django 5.2.
The release notes showcase a composite of new features. A few highlights are:
All models are automatically imported in the shell by default.
Django now supports composite primary keys! The new django.db.models.CompositePrimaryKey allows tables to be created with a primary key consisting of multiple fields.
Overriding a BoundField got a lot easier: this can now be set on a form, field or project level.
To generate a diff of this commit:
cvs rdiff -u -r1.141 -r1.142 pkgsrc/www/py-django/Makefile
cvs rdiff -u -r1.51 -r1.52 pkgsrc/www/py-django/PLIST
cvs rdiff -u -r1.114 -r1.115 pkgsrc/www/py-django/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/Makefile
diff -u pkgsrc/www/py-django/Makefile:1.141 pkgsrc/www/py-django/Makefile:1.142
--- pkgsrc/www/py-django/Makefile:1.141 Thu Mar 6 16:05:55 2025
+++ pkgsrc/www/py-django/Makefile Mon Apr 14 14:20:53 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.141 2025/03/06 16:05:55 adam Exp $
+# $NetBSD: Makefile,v 1.142 2025/04/14 14:20:53 adam Exp $
-DISTNAME= Django-5.1.7
+DISTNAME= Django-5.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
CATEGORIES= www python
MASTER_SITES= https://www.djangoproject.com/m/releases/${PKGVERSION_NOREV:R}/
@@ -11,7 +11,7 @@ HOMEPAGE= https://www.djangoproject.com/
COMMENT= Django, a high-level Python Web framework
LICENSE= modified-bsd
-TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=75.8.2:../../devel/py-setuptools
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=78:../../devel/py-setuptools
DEPENDS+= ${PYPKGPREFIX}-asgiref>=3.8.1:../../www/py-asgiref
DEPENDS+= ${PYPKGPREFIX}-sqlparse>=0.3.1:../../databases/py-sqlparse
Index: pkgsrc/www/py-django/PLIST
diff -u pkgsrc/www/py-django/PLIST:1.51 pkgsrc/www/py-django/PLIST:1.52
--- pkgsrc/www/py-django/PLIST:1.51 Tue Oct 8 17:42:20 2024
+++ pkgsrc/www/py-django/PLIST Mon Apr 14 14:20:53 2025
@@ -1,12 +1,12 @@
-@comment $NetBSD: PLIST,v 1.51 2024/10/08 17:42:20 adam Exp $
+@comment $NetBSD: PLIST,v 1.52 2025/04/14 14:20:53 adam Exp $
bin/django-admin-${PYVERSSUFFIX}
-${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS
-${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
-${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.python
${PYSITELIB}/${WHEEL_INFODIR}/METADATA
${PYSITELIB}/${WHEEL_INFODIR}/RECORD
${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
+${PYSITELIB}/${WHEEL_INFODIR}/licenses/AUTHORS
+${PYSITELIB}/${WHEEL_INFODIR}/licenses/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/licenses/LICENSE.python
${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
${PYSITELIB}/django/__init__.py
${PYSITELIB}/django/__init__.pyc
@@ -4268,6 +4268,9 @@ ${PYSITELIB}/django/core/checks/async_ch
${PYSITELIB}/django/core/checks/caches.py
${PYSITELIB}/django/core/checks/caches.pyc
${PYSITELIB}/django/core/checks/caches.pyo
+${PYSITELIB}/django/core/checks/commands.py
+${PYSITELIB}/django/core/checks/commands.pyc
+${PYSITELIB}/django/core/checks/commands.pyo
${PYSITELIB}/django/core/checks/compatibility/__init__.py
${PYSITELIB}/django/core/checks/compatibility/__init__.pyc
${PYSITELIB}/django/core/checks/compatibility/__init__.pyo
@@ -4661,6 +4664,9 @@ ${PYSITELIB}/django/db/backends/postgres
${PYSITELIB}/django/db/backends/postgresql/client.py
${PYSITELIB}/django/db/backends/postgresql/client.pyc
${PYSITELIB}/django/db/backends/postgresql/client.pyo
+${PYSITELIB}/django/db/backends/postgresql/compiler.py
+${PYSITELIB}/django/db/backends/postgresql/compiler.pyc
+${PYSITELIB}/django/db/backends/postgresql/compiler.pyo
${PYSITELIB}/django/db/backends/postgresql/creation.py
${PYSITELIB}/django/db/backends/postgresql/creation.pyc
${PYSITELIB}/django/db/backends/postgresql/creation.pyo
@@ -4796,6 +4802,9 @@ ${PYSITELIB}/django/db/models/expression
${PYSITELIB}/django/db/models/fields/__init__.py
${PYSITELIB}/django/db/models/fields/__init__.pyc
${PYSITELIB}/django/db/models/fields/__init__.pyo
+${PYSITELIB}/django/db/models/fields/composite.py
+${PYSITELIB}/django/db/models/fields/composite.pyc
+${PYSITELIB}/django/db/models/fields/composite.pyo
${PYSITELIB}/django/db/models/fields/files.py
${PYSITELIB}/django/db/models/fields/files.pyc
${PYSITELIB}/django/db/models/fields/files.pyo
@@ -4823,6 +4832,9 @@ ${PYSITELIB}/django/db/models/fields/rel
${PYSITELIB}/django/db/models/fields/reverse_related.py
${PYSITELIB}/django/db/models/fields/reverse_related.pyc
${PYSITELIB}/django/db/models/fields/reverse_related.pyo
+${PYSITELIB}/django/db/models/fields/tuple_lookups.py
+${PYSITELIB}/django/db/models/fields/tuple_lookups.pyc
+${PYSITELIB}/django/db/models/fields/tuple_lookups.pyo
${PYSITELIB}/django/db/models/functions/__init__.py
${PYSITELIB}/django/db/models/functions/__init__.pyc
${PYSITELIB}/django/db/models/functions/__init__.pyo
@@ -4832,6 +4844,9 @@ ${PYSITELIB}/django/db/models/functions/
${PYSITELIB}/django/db/models/functions/datetime.py
${PYSITELIB}/django/db/models/functions/datetime.pyc
${PYSITELIB}/django/db/models/functions/datetime.pyo
+${PYSITELIB}/django/db/models/functions/json.py
+${PYSITELIB}/django/db/models/functions/json.pyc
+${PYSITELIB}/django/db/models/functions/json.pyo
${PYSITELIB}/django/db/models/functions/math.py
${PYSITELIB}/django/db/models/functions/math.pyc
${PYSITELIB}/django/db/models/functions/math.pyo
@@ -4939,6 +4954,7 @@ ${PYSITELIB}/django/forms/jinja2/django/
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/checkbox_option.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/checkbox_select.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/clearable_file_input.html
+${PYSITELIB}/django/forms/jinja2/django/forms/widgets/color.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/date.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/datetime.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/email.html
@@ -4953,11 +4969,13 @@ ${PYSITELIB}/django/forms/jinja2/django/
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/password.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/radio.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/radio_option.html
+${PYSITELIB}/django/forms/jinja2/django/forms/widgets/search.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/select.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/select_date.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/select_option.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/splitdatetime.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/splithiddendatetime.html
+${PYSITELIB}/django/forms/jinja2/django/forms/widgets/tel.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/text.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/textarea.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/time.html
@@ -4990,6 +5008,7 @@ ${PYSITELIB}/django/forms/templates/djan
${PYSITELIB}/django/forms/templates/django/forms/widgets/checkbox_option.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/checkbox_select.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/clearable_file_input.html
+${PYSITELIB}/django/forms/templates/django/forms/widgets/color.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/date.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/datetime.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/email.html
@@ -5004,11 +5023,13 @@ ${PYSITELIB}/django/forms/templates/djan
${PYSITELIB}/django/forms/templates/django/forms/widgets/password.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/radio.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/radio_option.html
+${PYSITELIB}/django/forms/templates/django/forms/widgets/search.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/select.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/select_date.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/select_option.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/splitdatetime.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/splithiddendatetime.html
+${PYSITELIB}/django/forms/templates/django/forms/widgets/tel.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/text.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/textarea.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/time.html
@@ -5289,9 +5310,6 @@ ${PYSITELIB}/django/utils/ipv6.pyo
${PYSITELIB}/django/utils/itercompat.py
${PYSITELIB}/django/utils/itercompat.pyc
${PYSITELIB}/django/utils/itercompat.pyo
-${PYSITELIB}/django/utils/jslex.py
-${PYSITELIB}/django/utils/jslex.pyc
-${PYSITELIB}/django/utils/jslex.pyo
${PYSITELIB}/django/utils/log.py
${PYSITELIB}/django/utils/log.pyc
${PYSITELIB}/django/utils/log.pyo
Index: pkgsrc/www/py-django/distinfo
diff -u pkgsrc/www/py-django/distinfo:1.114 pkgsrc/www/py-django/distinfo:1.115
--- pkgsrc/www/py-django/distinfo:1.114 Thu Mar 6 16:05:55 2025
+++ pkgsrc/www/py-django/distinfo Mon Apr 14 14:20:53 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.114 2025/03/06 16:05:55 adam Exp $
+$NetBSD: distinfo,v 1.115 2025/04/14 14:20:53 adam Exp $
-BLAKE2s (Django-5.1.7.tar.gz) = 2717b7b864c8740e0ad059a8cd60146f5657e6239ed1c10397bc15dde2cc9833
-SHA512 (Django-5.1.7.tar.gz) = 8c0d2d79eab1c60f4a50c94e5f584f0ed70835a8b3ac64f4c5c0397fc186cf8e9188926ad08545323a139976efc207c8429faa7f0b5948b21cef98482124980a
-Size (Django-5.1.7.tar.gz) = 10716510 bytes
+BLAKE2s (Django-5.2.tar.gz) = 2885a8e3f8c06275b609d41e24dfee7fe278901fdea444099a096dcf71b5bcb6
+SHA512 (Django-5.2.tar.gz) = b2b676b622ab2b4d52a7eebf23dd0660756c263830e850e49ff55a81657877eab5dcb2005829a904177231645f93edd0d60f1317b29d5484c02d7539135c972f
+Size (Django-5.2.tar.gz) = 10824891 bytes
Home |
Main Index |
Thread Index |
Old Index