Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Feb 2014 08:10:14 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r342248 - in head/www: . py-django-crispy-forms
Message-ID:  <201402020810.s128AE6a025885@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Sun Feb  2 08:10:14 2014
New Revision: 342248
URL: http://svnweb.freebsd.org/changeset/ports/342248
QAT: https://qat.redports.org/buildarchive/r342248/

Log:
  www/py-django-crispy-forms: The best way to have Django DRY forms [NEW PORT]
  
  The best way to have Django DRY forms. Build programmatic reusable layouts
  out of components, having full control of the rendered HTML without writing
  HTML in templates. All this without breaking the standard way of doing things
  in Django, so it plays nice with any other form application.
  
  WWW: https://github.com/maraujop/django-crispy-forms
  
  PR:		ports/186158
  Submitted by:	Johannes Jost Meixner <xmj@chaot.net>

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

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sun Feb  2 07:46:00 2014	(r342247)
+++ head/www/Makefile	Sun Feb  2 08:10:14 2014	(r342248)
@@ -1500,6 +1500,7 @@
     SUBDIR += py-django-caching-app-plugins
     SUBDIR += py-django-classy-tags
     SUBDIR += py-django-cms
+    SUBDIR += py-django-crispy-forms
     SUBDIR += py-django-devel
     SUBDIR += py-django-dpaste
     SUBDIR += py-django-evolution

Added: head/www/py-django-crispy-forms/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-crispy-forms/Makefile	Sun Feb  2 08:10:14 2014	(r342248)
@@ -0,0 +1,22 @@
+# Created by: Johannes Meixner <xmj@chaot.net>
+# $FreeBSD$
+
+PORTNAME=	crispy-forms
+PORTVERSION=	1.4.0
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}django-
+DISTNAME=	django-${PORTNAME}-${PORTVERSION}
+
+MAINTAINER=	xmj@chaot.net
+COMMENT=	The best way to have Django DRY forms
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django<1.7:${PORTSDIR}/www/py-django
+
+USE_PYTHON=		yes
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/www/py-django-crispy-forms/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-crispy-forms/distinfo	Sun Feb  2 08:10:14 2014	(r342248)
@@ -0,0 +1,2 @@
+SHA256 (django-crispy-forms-1.4.0.tar.gz) = d0c9531ebdff8dc255f625e677ec2fab326522e3f4cd8f7a3e891d773d281510
+SIZE (django-crispy-forms-1.4.0.tar.gz) = 47444

Added: head/www/py-django-crispy-forms/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-crispy-forms/pkg-descr	Sun Feb  2 08:10:14 2014	(r342248)
@@ -0,0 +1,6 @@
+The best way to have Django DRY forms. Build programmatic reusable layouts out
+of components, having full control of the rendered HTML without writing HTML in
+templates. All this without breaking the standard way of doing things in Django,
+so it plays nice with any other form application.
+
+WWW: https://github.com/maraujop/django-crispy-forms



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