Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 3 Aug 2017 01:00:57 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
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
Message-ID:  <201708030100.v7310ves031081@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708030100.v7310ves031081>