From owner-svn-ports-branches@freebsd.org Thu Aug 3 01:00:59 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D626DBD072; Thu, 3 Aug 2017 01:00:59 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DC2CE829EF; Thu, 3 Aug 2017 01:00:58 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7310wa9031085; Thu, 3 Aug 2017 01:00:58 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7310ves031081; Thu, 3 Aug 2017 01:00:57 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708030100.v7310ves031081@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 3 Aug 2017 01:00:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r447191 - in branches/2017Q3/www: py-django110 py-django111 py-django18 py-django19 X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in branches/2017Q3/www: py-django110 py-django111 py-django18 py-django19 X-SVN-Commit-Revision: 447191 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2017 01:00:59 -0000 Author: feld Date: Thu Aug 3 01:00:57 2017 New Revision: 447191 URL: https://svnweb.freebsd.org/changeset/ports/447191 Log: MFH: r447190 www/py-django: Add missing runtime dependency pytz is now a required dependency for Django 1.11 and is strongly recommended in older releases. Django 1.11: https://github.com/django/django/commit/414ad25b090a63eaaf297b1164c8f7d814a710a2 Older releases: docs/topics/i18n/timezones.txt "3. Should I install pytz? Yes. Django has a policy of not requiring external dependencies, and for this reason pytz_ is optional. However, it's much safer to install it." Reviewed by: lwhsu Differential Revision: https://reviews.freebsd.org/D11835 Approved by: ports-secteam (with hat) Modified: branches/2017Q3/www/py-django110/Makefile branches/2017Q3/www/py-django111/Makefile branches/2017Q3/www/py-django18/Makefile branches/2017Q3/www/py-django19/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/py-django110/Makefile ============================================================================== --- branches/2017Q3/www/py-django110/Makefile Thu Aug 3 00:58:59 2017 (r447190) +++ branches/2017Q3/www/py-django110/Makefile Thu Aug 3 01:00:57 2017 (r447191) @@ -3,7 +3,7 @@ PORTNAME= django PORTVERSION= 1.10.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www python MASTER_SITES= CHEESESHOP \ https://www.djangoproject.com/m/releases/${PORTVERSION}/ @@ -17,6 +17,8 @@ COMMENT= High-level Python Web Framework LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz NO_ARCH= yes USES= cpe python shebangfix Modified: branches/2017Q3/www/py-django111/Makefile ============================================================================== --- branches/2017Q3/www/py-django111/Makefile Thu Aug 3 00:58:59 2017 (r447190) +++ branches/2017Q3/www/py-django111/Makefile Thu Aug 3 01:00:57 2017 (r447191) @@ -3,6 +3,7 @@ PORTNAME= django PORTVERSION= 1.11.4 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP \ https://www.djangoproject.com/m/releases/${PORTVERSION}/ @@ -16,6 +17,8 @@ COMMENT= High-level Python Web Framework LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz NO_ARCH= yes USES= cpe python shebangfix Modified: branches/2017Q3/www/py-django18/Makefile ============================================================================== --- branches/2017Q3/www/py-django18/Makefile Thu Aug 3 00:58:59 2017 (r447190) +++ branches/2017Q3/www/py-django18/Makefile Thu Aug 3 01:00:57 2017 (r447191) @@ -3,7 +3,7 @@ PORTNAME= django PORTVERSION= 1.8.18 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www python MASTER_SITES= CHEESESHOP \ https://www.djangoproject.com/m/releases/${PORTVERSION:R}/ @@ -17,6 +17,8 @@ COMMENT= High-level Python Web Framework (1.8.x LTS) LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz NO_ARCH= yes USES= cpe python shebangfix Modified: branches/2017Q3/www/py-django19/Makefile ============================================================================== --- branches/2017Q3/www/py-django19/Makefile Thu Aug 3 00:58:59 2017 (r447190) +++ branches/2017Q3/www/py-django19/Makefile Thu Aug 3 01:00:57 2017 (r447191) @@ -3,7 +3,7 @@ PORTNAME= django PORTVERSION= 1.9.13 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www python MASTER_SITES= CHEESESHOP \ https://www.djangoproject.com/m/releases/${PORTVERSION:R}/ @@ -17,6 +17,11 @@ COMMENT= High-level Python Web Framework LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz + +DEPRECATED= Unsupported upstream +EXPIRATION_DATE=2017-09-01 NO_ARCH= yes USES= cpe python shebangfix