From owner-svn-ports-head@FreeBSD.ORG Sun Feb 2 08:10:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C46E1AEB; Sun, 2 Feb 2014 08:10:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A5FAE16B8; Sun, 2 Feb 2014 08:10:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s128AFjn025893; Sun, 2 Feb 2014 08:10:15 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s128AE6a025885; Sun, 2 Feb 2014 08:10:14 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201402020810.s128AE6a025885@svn.freebsd.org> From: Kubilay Kocak Date: Sun, 2 Feb 2014 08:10:14 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Feb 2014 08:10:15 -0000 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 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 +# $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 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