Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Nov 2015 21:10:50 +0000 (UTC)
From:      Rene Ladan <rene@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r402329 - in head/www: . py-django-overextends
Message-ID:  <201511232110.tANLAoxm021090@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rene
Date: Mon Nov 23 21:10:50 2015
New Revision: 402329
URL: https://svnweb.freebsd.org/changeset/ports/402329

Log:
  A Django reusable app providing the overextends template tag, a drop-in
  replacement for Django's extends tag, which allows you to use circular
  template inheritance.
  
  The primary use-case for overextends is to simultaneously override and extend
  templates from other reusable apps, in your own Django project.
  
  WWW: https://github.com/stephenmcd/django-overextends

Added:
  head/www/py-django-overextends/
  head/www/py-django-overextends/Makefile   (contents, props changed)
  head/www/py-django-overextends/distinfo   (contents, props changed)
  head/www/py-django-overextends/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Mon Nov 23 20:46:47 2015	(r402328)
+++ head/www/Makefile	Mon Nov 23 21:10:50 2015	(r402329)
@@ -1546,6 +1546,7 @@
     SUBDIR += py-django-mezzanine-grappelli
     SUBDIR += py-django-mptt
     SUBDIR += py-django-openid-auth
+    SUBDIR += py-django-overextends
     SUBDIR += py-django-photologue
     SUBDIR += py-django-picklefield
     SUBDIR += py-django-pipeline

Added: head/www/py-django-overextends/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-overextends/Makefile	Mon Nov 23 21:10:50 2015	(r402329)
@@ -0,0 +1,22 @@
+# Created by: René Ladan <rene@freebsd.org>
+# $FreeBSD$
+
+PORTNAME=	django-overextends
+PORTVERSION=	0.4.0
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	rene@freebsd.org
+COMMENT=	Django reusable app enabling circular template inheritance
+
+LICENSE=	BSD2CLAUSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django>=1.7:${PORTSDIR}/www/py-django
+
+NO_ARCH=	yes
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/www/py-django-overextends/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-overextends/distinfo	Mon Nov 23 21:10:50 2015	(r402329)
@@ -0,0 +1,2 @@
+SHA256 (django-overextends-0.4.0.tar.gz) = 63eed9add4282bc932d76c69abad2c20436d0984b62040fbdffd5872eadb7da6
+SIZE (django-overextends-0.4.0.tar.gz) = 7759

Added: head/www/py-django-overextends/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-overextends/pkg-descr	Mon Nov 23 21:10:50 2015	(r402329)
@@ -0,0 +1,8 @@
+A Django reusable app providing the overextends template tag, a drop-in
+replacement for Django's extends tag, which allows you to use circular
+template inheritance.
+
+The primary use-case for overextends is to simultaneously override and extend
+templates from other reusable apps, in your own Django project.
+
+WWW: https://github.com/stephenmcd/django-overextends



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