Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 858827A2A6 for ; Fri, 2 Dec 2016 12:21:19 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 01030855A3; Fri, 2 Dec 2016 12:21:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 832EC85592 for ; Fri, 2 Dec 2016 12:21:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id A_6awWK9ZAov for ; Fri, 2 Dec 2016 12:21:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0B7D48557D for ; Fri, 2 Dec 2016 12:21:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 93C72FBA6; Fri, 2 Dec 2016 12:21:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1480681277253950" MIME-Version: 1.0 Date: Fri, 2 Dec 2016 12:21:17 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-django To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20161202122117.93C72FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1480681277253950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Fri Dec 2 12:21:17 UTC 2016 Modified Files: pkgsrc/www/py-django: Makefile distinfo Log Message: Changes 1.10.4: Bugfixes * Quoted the Oracle test user’s password in queries to fix the “ORA-00922: missing or invalid option” error when the password starts with a number or special character. * Fixed incorrect app_label / model_name arguments for allow_migrate() in makemigrations migration consistency checks. * Made Model.delete(keep_parents=True) preserve parent reverse relationships in multi-table inheritance. * Fixed a QuerySet.update() crash on SQLite when updating a DateTimeField with an F() expression and a timedelta. * Prevented LocaleMiddleware from redirecting on URLs that should return 404 when using prefix_default_language=False. * Prevented an unnecessary index from being created on an InnoDB ForeignKey when the field was added after the model was created. To generate a diff of this commit: cvs rdiff -u -r1.79 -r1.80 pkgsrc/www/py-django/Makefile cvs rdiff -u -r1.61 -r1.62 pkgsrc/www/py-django/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1480681277253950 Content-Disposition: inline Content-Length: 1659 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-django/Makefile diff -u pkgsrc/www/py-django/Makefile:1.79 pkgsrc/www/py-django/Makefile:1.80 --- pkgsrc/www/py-django/Makefile:1.79 Sun Nov 6 09:08:52 2016 +++ pkgsrc/www/py-django/Makefile Fri Dec 2 12:21:17 2016 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.79 2016/11/06 09:08:52 wen Exp $ +# $NetBSD: Makefile,v 1.80 2016/12/02 12:21:17 adam Exp $ -DISTNAME= Django-1.10.3 +DISTNAME= Django-1.10.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= www python MASTER_SITES= http://www.djangoproject.com/m/releases/${PKGVERSION_NOREV:R}/ Index: pkgsrc/www/py-django/distinfo diff -u pkgsrc/www/py-django/distinfo:1.61 pkgsrc/www/py-django/distinfo:1.62 --- pkgsrc/www/py-django/distinfo:1.61 Sun Nov 6 09:08:52 2016 +++ pkgsrc/www/py-django/distinfo Fri Dec 2 12:21:17 2016 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.61 2016/11/06 09:08:52 wen Exp $ +$NetBSD: distinfo,v 1.62 2016/12/02 12:21:17 adam Exp $ -SHA1 (Django-1.10.3.tar.gz) = 72badffcac16f052d41c0938f83ba7db761e5fe4 -RMD160 (Django-1.10.3.tar.gz) = d0f8615270ddc045f0a038b893106895dae718d5 -SHA512 (Django-1.10.3.tar.gz) = aeaaa158913190624173f64ef54354b6e4b4331fded902a6777173aa61434ff10f013d2f6470e50bba95816b6b4515f5fba00b963466b63e97c3ac41caaa6f13 -Size (Django-1.10.3.tar.gz) = 7733727 bytes +SHA1 (Django-1.10.4.tar.gz) = 8629ec973aa868f03cd24fbd772ef9c0cf037e38 +RMD160 (Django-1.10.4.tar.gz) = 682378cd8f44866ef3453900daef0471d777cdfd +SHA512 (Django-1.10.4.tar.gz) = 0ea5d0eb4779c5e87de959be5f77205775c27853fd4baab63ca6a2628306471467c5d772957cde10d78a8aa0416c9ec8f6598721f51b6cba93ecb223dc90eac6 +Size (Django-1.10.4.tar.gz) = 7735213 bytes --_----------=_1480681277253950--