From owner-svn-ports-all@FreeBSD.ORG Thu Apr 17 02:33:56 2014 Return-Path: Delivered-To: svn-ports-all@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 9D6648A1; Thu, 17 Apr 2014 02:33:56 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7D9CB158C; Thu, 17 Apr 2014 02:33:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3H2Xuck075299; Thu, 17 Apr 2014 02:33:56 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3H2XuP3075297; Thu, 17 Apr 2014 02:33:56 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201404170233.s3H2XuP3075297@svn.freebsd.org> From: Steve Wills Date: Thu, 17 Apr 2014 02:33:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351436 - head/www/py-formalchemy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Apr 2014 02:33:56 -0000 Author: swills Date: Thu Apr 17 02:33:55 2014 New Revision: 351436 URL: http://svnweb.freebsd.org/changeset/ports/351436 QAT: https://qat.redports.org/buildarchive/r351436/ Log: - Stage - Pet portlint PR: ports/188709 Submitted by: Bartek Rutkowski Approved by: portmgr@ (blanket) Deleted: head/www/py-formalchemy/pkg-plist Modified: head/www/py-formalchemy/Makefile head/www/py-formalchemy/pkg-descr Modified: head/www/py-formalchemy/Makefile ============================================================================== --- head/www/py-formalchemy/Makefile Thu Apr 17 02:23:24 2014 (r351435) +++ head/www/py-formalchemy/Makefile Thu Apr 17 02:33:55 2014 (r351436) @@ -10,7 +10,9 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= FormAlchemy-${DISTVERSION} MAINTAINER= ghostonthewire@gmail.com -COMMENT= Toolkit for creating HTML form elements manually or from SQLAlchemy mapped classes +COMMENT= Toolkit for creating HTML form elements + +LICENSE= MIT BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy06>=0.4.5:${PORTSDIR}/databases/py-sqlalchemy06 \ ${PYTHON_PKGNAMEPREFIX}Tempita>=0.4:${PORTSDIR}/textproc/py-Tempita \ @@ -18,9 +20,7 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sq RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PYTHON= yes -USE_PYDISTUTILS= easy_install -PYDISTUTILS_PKGNAME= FormAlchemy -PYDISTUTILS_NOEGGINFO= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/py-formalchemy/pkg-descr ============================================================================== --- head/www/py-formalchemy/pkg-descr Thu Apr 17 02:23:24 2014 (r351435) +++ head/www/py-formalchemy/pkg-descr Thu Apr 17 02:33:55 2014 (r351436) @@ -1,8 +1,3 @@ -[ from the website ] - -Introduction -============ - FormAlchemy greatly speeds development with SQLAlchemy mapped classes (models) in a HTML forms environment. @@ -12,34 +7,4 @@ HTML code should be returned by introspe and generate ready-to-use HTML code that will fit the developer's application. -Of course, FormAlchemy can't figure out everything, i.e, the developer -might want to display only a few columns from the given model. Thus, -FormAlchemy is also highly customizable. - -Features -======== - -- Generates HTML form fields and tables from SQLAlchemy mapped classes - or manually added Fields -- Works with declarative or classic mapper definitions -- Render and edits single objects or collections (grids) -- Handles object relationships (including many-to-many), not just - simple data types -- Synonym support -- Composite and custom type support -- Supports all composite primary keys and most CFKs -- Pre-fills input fields with current or default value -- Highly customizable HTML output -- Validates input and displays errors in-line -- Syncs model instances with input data -- Easy-to-use, extensible API -- SQLAlchemy 0.4 (0.4.5 or later) and 0.5 compatible - - -Limitations -=========== - -- Currently, only handles composite foreign keys of primitive Python - types - WWW: http://code.google.com/p/formalchemy/