pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/py-django-registration
Module Name: pkgsrc
Committed By: adam
Date: Mon Jan 27 12:03:16 UTC 2025
Modified Files:
pkgsrc/www/py-django-registration: Makefile PLIST distinfo
Log Message:
py-django-registration: updated to 5.1.0
Version 5.1.0
* Adopted "DjangoVer" versioning.
* Supported Django versions are now 4.2, 5.0, and 5.1.
* Supported Python versions are now 3.9, 3.10, 3.11, 3.12, and 3.13.
* The base :class:`~django_registration.forms.RegistrationForm` has been
completely rewritten, though in a backwards-compatible way. It is no longer a
subclass of Django's ``UserCreationForm``, which means it is far more
flexible with respect to custom user models (and for many cases, no longer
requires a custom form subclass just to handle a custom user model).
* :class:`~django_registration.views.ActivationView` has also been rewritten,
and with it parts of :ref:`the built-in activation-based workflow
<activation-workflow>`. The primary change here is that ``ActivationView``
now only attempts to activate the user account on an HTTP ``POST`` request
(previously it would do so on ``GET``, which was increasingly unsafe due to
email clients auto-following links). This is backwards-incompatible: the
activation view now displays a form on ``GET``, and the templates involved
have changed. See :ref:`the template documentation <default-templates>` for
details of the required templates.
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/www/py-django-registration/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/py-django-registration/PLIST \
pkgsrc/www/py-django-registration/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-registration/Makefile
diff -u pkgsrc/www/py-django-registration/Makefile:1.15 pkgsrc/www/py-django-registration/Makefile:1.16
--- pkgsrc/www/py-django-registration/Makefile:1.15 Mon Nov 11 07:29:19 2024
+++ pkgsrc/www/py-django-registration/Makefile Mon Jan 27 12:03:16 2025
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.15 2024/11/11 07:29:19 wiz Exp $
+# $NetBSD: Makefile,v 1.16 2025/01/27 12:03:16 adam Exp $
-DISTNAME= django-registration-3.4
-PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+DISTNAME= django_registration-5.1.0
+PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_PYPI:=d/django-registration/}
@@ -10,13 +10,11 @@ HOMEPAGE= https://github.com/ubernostrum
COMMENT= User-registration application for Django
LICENSE= modified-bsd
-TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=61.0:../../devel/py-setuptools
+TOOL_DEPENDS+= ${PYPKGPREFIX}-pdm_backend-[0-9]*:../../devel/py-pdm_backend
DEPENDS+= ${PYPKGPREFIX}-confusable_homoglyphs>=3.0:../../converters/py-confusable_homoglyphs
-DEPENDS+= ${PYPKGPREFIX}-django>=3.2:../../www/py-django
+DEPENDS+= ${PYPKGPREFIX}-django>=4.2:../../www/py-django
USE_LANGUAGES= # none
-PYTHON_VERSIONS_INCOMPATIBLE= 27
-
.include "../../lang/python/wheel.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/www/py-django-registration/PLIST
diff -u pkgsrc/www/py-django-registration/PLIST:1.8 pkgsrc/www/py-django-registration/PLIST:1.9
--- pkgsrc/www/py-django-registration/PLIST:1.8 Thu Feb 8 14:46:49 2024
+++ pkgsrc/www/py-django-registration/PLIST Mon Jan 27 12:03:16 2025
@@ -1,19 +1,24 @@
-@comment $NetBSD: PLIST,v 1.8 2024/02/08 14:46:49 adam Exp $
-${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS
-${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
+@comment $NetBSD: PLIST,v 1.9 2025/01/27 12:03:16 adam Exp $
${PYSITELIB}/${WHEEL_INFODIR}/METADATA
${PYSITELIB}/${WHEEL_INFODIR}/RECORD
${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
-${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
+${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
+${PYSITELIB}/${WHEEL_INFODIR}/licenses/LICENSE
${PYSITELIB}/django_registration/__init__.py
${PYSITELIB}/django_registration/__init__.pyc
${PYSITELIB}/django_registration/__init__.pyo
+${PYSITELIB}/django_registration/_backports.py
+${PYSITELIB}/django_registration/_backports.pyc
+${PYSITELIB}/django_registration/_backports.pyo
${PYSITELIB}/django_registration/backends/__init__.py
${PYSITELIB}/django_registration/backends/__init__.pyc
${PYSITELIB}/django_registration/backends/__init__.pyo
${PYSITELIB}/django_registration/backends/activation/__init__.py
${PYSITELIB}/django_registration/backends/activation/__init__.pyc
${PYSITELIB}/django_registration/backends/activation/__init__.pyo
+${PYSITELIB}/django_registration/backends/activation/forms.py
+${PYSITELIB}/django_registration/backends/activation/forms.pyc
+${PYSITELIB}/django_registration/backends/activation/forms.pyo
${PYSITELIB}/django_registration/backends/activation/urls.py
${PYSITELIB}/django_registration/backends/activation/urls.pyc
${PYSITELIB}/django_registration/backends/activation/urls.pyo
Index: pkgsrc/www/py-django-registration/distinfo
diff -u pkgsrc/www/py-django-registration/distinfo:1.8 pkgsrc/www/py-django-registration/distinfo:1.9
--- pkgsrc/www/py-django-registration/distinfo:1.8 Thu Feb 8 14:46:49 2024
+++ pkgsrc/www/py-django-registration/distinfo Mon Jan 27 12:03:16 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/02/08 14:46:49 adam Exp $
+$NetBSD: distinfo,v 1.9 2025/01/27 12:03:16 adam Exp $
-BLAKE2s (django-registration-3.4.tar.gz) = 66340cc7d1772e8bf7df6d49b41980d39ef54ad5a99981a0aea7cb277c370096
-SHA512 (django-registration-3.4.tar.gz) = 610da72654b00844dffed073be9cc36ffabe8aaf93b0cee8eb0ddc58cde82ca4c9a262481557136103af780405f2224222a8b06c2100ea6cfb0c22a6ddaab912
-Size (django-registration-3.4.tar.gz) = 89040 bytes
+BLAKE2s (django_registration-5.1.0.tar.gz) = 63f2d85907470df8ed558e32be9465d2f92d1cf31212c196ba5152de34b39289
+SHA512 (django_registration-5.1.0.tar.gz) = f74077d022b8d2667f30a962d6dc76c26fc773a0572bf5152247f8f13af1db87f8715b050499abeed891fd77f3dbb1c9e4a08bb7082ea3c9866a31c943383352
+Size (django_registration-5.1.0.tar.gz) = 93367 bytes
Home |
Main Index |
Thread Index |
Old Index