diff options
author | adam <adam@pkgsrc.org> | 2017-08-02 10:45:09 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2017-08-02 10:45:09 +0000 |
commit | 7c01d9d4132f978162fd6a0eeb0cd0fd8d1b2b9a (patch) | |
tree | 9f3f746929df0c839ee4d17c4ceb2848c05f1dc6 /www/py-django | |
parent | fa12cacee34c16f840397bedae4fcd9bdfbac4a6 (diff) | |
download | pkgsrc-7c01d9d4132f978162fd6a0eeb0cd0fd8d1b2b9a.tar.gz |
Django 1.11.4:
Bugfixes:
Fixed a regression in 1.11.3 on Python 2 where non-ASCII format values for date/time widgets results in an empty value in the widget’s HTML.
Fixed QuerySet.union() and difference() when combining with a queryset raising EmptyResultSet.
Fixed a regression in pickling of LazyObject on Python 2 when the wrapped object doesn’t have __reduce__().
Fixed crash in runserver’s autoreload with Python 2 on Windows with non-str environment variables.
Corrected Field.has_changed() to return False for disabled form fields: BooleanField, MultipleChoiceField, MultiValueField, FileField, ModelChoiceField, and ModelMultipleChoiceField.
Fixed QuerySet.count() for union(), difference(), and intersection() queries..
Fixed ClearableFileInput rendering as a subwidget of MultiWidget. Custom clearable_file_input.html widget templates will need to adapt for the fact that context values checkbox_name, checkbox_id, is_initial, input_text, initial_text, and clear_checkbox_label are now attributes of widget rather than appearing in the top-level context.
Fixed queryset crash when using a GenericRelation to a proxy model
Diffstat (limited to 'www/py-django')
-rw-r--r-- | www/py-django/Makefile | 11 | ||||
-rw-r--r-- | www/py-django/distinfo | 10 |
2 files changed, 10 insertions, 11 deletions
diff --git a/www/py-django/Makefile b/www/py-django/Makefile index 0f0ec634944..9d5e00cbdc4 100644 --- a/www/py-django/Makefile +++ b/www/py-django/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.87 2017/07/03 11:10:41 adam Exp $ +# $NetBSD: Makefile,v 1.88 2017/08/02 10:45:09 adam Exp $ -DISTNAME= Django-1.11.3 +DISTNAME= Django-1.11.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= www python MASTER_SITES= http://www.djangoproject.com/m/releases/${PKGVERSION_NOREV:R}/ @@ -17,10 +17,9 @@ REPLACE_PYTHON+= ${WRKSRC}/django/conf/project_template/manage.py-tpl DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz post-install: - ${MV} ${DESTDIR}${PREFIX}/bin/django-admin \ - ${DESTDIR}${PREFIX}/bin/django-admin${PYVERSSUFFIX} || ${TRUE} - ${MV} ${DESTDIR}${PREFIX}/bin/django-admin.py \ - ${DESTDIR}${PREFIX}/bin/django-admin${PYVERSSUFFIX}.py || ${TRUE} + cd ${DESTDIR}${PREFIX}/bin && \ + ${MV} django-admin django-admin${PYVERSSUFFIX} && \ + ${MV} django-admin.py django-admin${PYVERSSUFFIX}.py || ${TRUE} .include "../../lang/python/application.mk" .include "../../lang/python/egg.mk" diff --git a/www/py-django/distinfo b/www/py-django/distinfo index 763379ff4a8..05adc1eab0e 100644 --- a/www/py-django/distinfo +++ b/www/py-django/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.68 2017/07/03 11:10:41 adam Exp $ +$NetBSD: distinfo,v 1.69 2017/08/02 10:45:09 adam Exp $ -SHA1 (Django-1.11.3.tar.gz) = 30f691c39fa47eed966f0a449c739d05ee74389e -RMD160 (Django-1.11.3.tar.gz) = 9d03cd112869d9e3c11c7d1f4d7616aec002e9cb -SHA512 (Django-1.11.3.tar.gz) = d016da12757ca724c8914f67d52dd30d83785fa082704479b85e5a673e2d2b799988ac233404bfb1ace3477d92087b228aeca388261aa7dc15f19904a69e540f -Size (Django-1.11.3.tar.gz) = 7872014 bytes +SHA1 (Django-1.11.4.tar.gz) = 2fd515ec779ab9bced0f96d92a22de9b726beadf +RMD160 (Django-1.11.4.tar.gz) = 17925e46904c586e120ed8766eb6debbe98a4bdb +SHA512 (Django-1.11.4.tar.gz) = 4a96b25f6a2211b2985deaafc04ed5c167eed8835f51b8234bd479787f99f257faffbaa11de85fa28736540b0decf85dd386ca041e1b9888b958f04a3b0066c6 +Size (Django-1.11.4.tar.gz) = 7870752 bytes |