From owner-svn-ports-head@FreeBSD.ORG Mon Jun 1 18:37:07 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E815E06; Mon, 1 Jun 2015 18:37:07 +0000 (UTC) (envelope-from rm@FreeBSD.org) 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 20C401299; Mon, 1 Jun 2015 18:37:07 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t51Ib6OV038456; Mon, 1 Jun 2015 18:37:06 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t51Ib60h038452; Mon, 1 Jun 2015 18:37:06 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201506011837.t51Ib60h038452@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Mon, 1 Jun 2015 18:37:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388248 - in head/www: . py-collective.templateengines 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.20 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: Mon, 01 Jun 2015 18:37:07 -0000 Author: rm Date: Mon Jun 1 18:37:05 2015 New Revision: 388248 URL: https://svnweb.freebsd.org/changeset/ports/388248 Log: collective.templateengines is an template engine abstraction layer for Python. It defines generic Zope interfaces for communicating with various Python template engines to achieve higher code reuse value. WWW: https://pypi.python.org/pypi/collective.templateengines/ PR: 199946 Submitted by: Michelle Sullivan Added: head/www/py-collective.templateengines/ head/www/py-collective.templateengines/Makefile (contents, props changed) head/www/py-collective.templateengines/distinfo (contents, props changed) head/www/py-collective.templateengines/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Jun 1 18:34:09 2015 (r388247) +++ head/www/Makefile Mon Jun 1 18:37:05 2015 (r388248) @@ -1482,6 +1482,7 @@ SUBDIR += py-cherrypy SUBDIR += py-cherrypy-old SUBDIR += py-clientform + SUBDIR += py-collective.templateengines SUBDIR += py-cssmin SUBDIR += py-cssselect SUBDIR += py-cssutils Added: head/www/py-collective.templateengines/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-collective.templateengines/Makefile Mon Jun 1 18:37:05 2015 (r388248) @@ -0,0 +1,21 @@ +# Created by: Michelle Sullivan +# $FreeBSD$ + +PORTNAME= collective.templateengines +PORTVERSION= 0.3.5 +CATEGORIES= www python zope +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope + +MAINTAINER= michelle@sorbs.net +COMMENT= Template engine abstraction layer for Python + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Products.CMFCore>=2.1.0:${PORTSDIR}/devel/py-Products.CMFCore + +USES= python:2 zip +USE_PYTHON= distutils autoplist + +.include Added: head/www/py-collective.templateengines/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-collective.templateengines/distinfo Mon Jun 1 18:37:05 2015 (r388248) @@ -0,0 +1,2 @@ +SHA256 (zope/collective.templateengines-0.3.5.zip) = 126f85710bc56b7b04125308341d82077721205df8c9815010eea672b66d52d7 +SIZE (zope/collective.templateengines-0.3.5.zip) = 25926 Added: head/www/py-collective.templateengines/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-collective.templateengines/pkg-descr Mon Jun 1 18:37:05 2015 (r388248) @@ -0,0 +1,5 @@ +collective.templateengines is an template engine abstraction layer for Python. +It defines generic Zope interfaces for communicating with various Python +template engines to achieve higher code reuse value. + +WWW: https://pypi.python.org/pypi/collective.templateengines/