From dsh@vlink.ru  Sat Jun 23 13:30:47 2007
Return-Path: <dsh@vlink.ru>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 3CBB516A400
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 23 Jun 2007 13:30:47 +0000 (UTC)
	(envelope-from dsh@vlink.ru)
Received: from sagitta.internal.vlink.ru (sagitta.internal.vlink.ru [85.172.168.1])
	by mx1.freebsd.org (Postfix) with ESMTP id C019B13C45B
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 23 Jun 2007 13:30:45 +0000 (UTC)
	(envelope-from dsh@vlink.ru)
Received: from sagitta.internal.vlink.ru (localhost [127.0.0.1])
	by sagitta.internal.vlink.ru (Postfix) with ESMTP id 063B31F460E;
	Sat, 23 Jun 2007 17:30:44 +0400 (MSD)
Received: from localhost.my.domain (wizard.vlink.ru [85.172.168.67])
	by sagitta.internal.vlink.ru (Postfix) with ESMTP id AF3AA1F454E;
	Sat, 23 Jun 2007 17:30:43 +0400 (MSD)
Received: from localhost.my.domain (localhost [127.0.0.1])
	by localhost.my.domain (8.13.8/8.13.8) with ESMTP id l5NDUgU3057336;
	Sat, 23 Jun 2007 17:30:42 +0400 (MSD)
	(envelope-from dsh@localhost.my.domain)
Received: (from dsh@localhost)
	by localhost.my.domain (8.13.8/8.13.8/Submit) id l5NDUfOo057332;
	Sat, 23 Jun 2007 17:30:41 +0400 (MSD)
	(envelope-from dsh)
Message-Id: <200706231330.l5NDUfOo057332@localhost.my.domain>
Date: Sat, 23 Jun 2007 17:30:41 +0400 (MSD)
From: Denis Shaposhnikov <dsh@vlink.ru>
Reply-To: Denis Shaposhnikov <dsh@vlink.ru>
To: FreeBSD-gnats-submit@freebsd.org
Subject: New port: www/py-pylons (Pylons Web Framework)
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         113970
>Category:       ports
>Synopsis:       New port: www/py-pylons (Pylons Web Framework)
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jun 23 13:40:02 GMT 2007
>Closed-Date:    Mon Jun 25 18:19:12 GMT 2007
>Last-Modified:  Mon Jun 25 18:20:20 GMT 2007
>Originator:     Denis Shaposhnikov
>Release:        FreeBSD 7.0-CURRENT i386
>Organization:
>Environment:
System: FreeBSD localhost.my.domain 7.0-CURRENT FreeBSD 7.0-CURRENT #4: Sun Mar 18 15:18:43 MSK 2007 dsh@localhost.my.domain:/var/FreeBSD/obj/var/FreeBSD/src/sys/MYNERIC i386


	
>Description:

The Pylons web framework is aimed at making webapps and large
programmatic website development in Python easy. Several key points:
        
* A framework to make writing web applications in Python easy
        
* Inspired by Rails and TurboGears
        
* Utilizes a minimalist, component-based philosophy that makes it easy
  to expand on
        
* Harness existing knowledge about Python

Pylons makes it easy to expand on your knowledge of Python to master
Pylons for web development. Using a MVC style dispath, Python
knowledge is used at various levels:
        
* The Controller is just a basic Python class, called for each
  request. Customizing the response is as easy as overriding __call__
  to make your webapp work how you want.
        
* Myghty templating compiles directly to Python byte-code for speed
  and utilizes Python for template control rather than creating its
  own template syntax for "for, while, etc"

WWW: http://www.pylonshq.com/

>How-To-Repeat:
	
>Fix:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	py-pylons
#	py-pylons/Makefile
#	py-pylons/distinfo
#	py-pylons/pkg-descr
#	py-pylons/pkg-plist
#
echo c - py-pylons
mkdir -p py-pylons > /dev/null 2>&1
echo x - py-pylons/Makefile
sed 's/^X//' >py-pylons/Makefile << 'END-of-py-pylons/Makefile'
X# New ports collection makefile for:	py-pylons
X# Date created:		Thu Jun 21 16:05:21 MSD 2007
X# Whom:			Denis Shaposhnikov <dsh@vlink.ru>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	pylons
XPORTVERSION=	0.9.5
XCATEGORIES=	www python
XMASTER_SITES=	http://pylonshq.com/download/0.9.5/
XPKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
XDISTNAME=	Pylons-${PORTVERSION}
X
XMAINTAINER=	dsh@vlink.ru
XCOMMENT=	Pylons Web Framework
X
XBUILD_DEPENDS=	${EASY_INSTALL_CMD}:${PORTSDIR}/devel/py-setuptools
XRUN_DEPENDS=	${BUILD_DEPENDS} \
X		${PYTHON_PKGNAMEPREFIX}Paste>=1.3:${PORTSDIR}/www/py-paste \
X		${PYTHON_PKGNAMEPREFIX}PasteDeploy>=1.3:${PORTSDIR}/www/py-pastedeploy \
X		${PYTHON_PKGNAMEPREFIX}PasteScript>=1.3.2:${PORTSDIR}/www/py-pastescript \
X		${PYTHON_PKGNAMEPREFIX}beaker>=0.6.3:${PORTSDIR}/www/py-beaker \
X		${PYTHON_PKGNAMEPREFIX}decorator>=2.0.1:${PORTSDIR}/devel/py-decorator \
X		${PYTHON_PKGNAMEPREFIX}formencode>=0.7:${PORTSDIR}/www/py-formencode \
X		${PYTHON_PKGNAMEPREFIX}mako>=0.1.5:${PORTSDIR}/textproc/py-mako \
X		${PYTHON_PKGNAMEPREFIX}nose>=0.9.2:${PORTSDIR}/devel/py-nose \
X		${PYTHON_PKGNAMEPREFIX}routes>=1.6.3:${PORTSDIR}/www/py-routes \
X		${PYTHON_PKGNAMEPREFIX}simplejson>=1.7.1:${PORTSDIR}/devel/py-simplejson \
X		${PYTHON_PKGNAMEPREFIX}webhelpers>=0.3:${PORTSDIR}/www/py-webhelpers \
X		myghty>=1.1:${PORTSDIR}/www/myghty
X
XUSE_PYTHON=	yes
XUSE_PYDISTUTILS=	yes
X
XPYPYLONS_EGG=	Pylons-${PORTVERSION}-py${PYTHON_VER}.egg
X
XPLIST_SUB=	EASY_INSTALL_CMD=${EASY_INSTALL_CMD} \
X		PYPYLONS_EGG=${PYPYLONS_EGG}
X
XEASY_INSTALL_CMD?=	easy_install-${PYTHON_VER}
X
XDOCSDIR=	${TARGETDIR}/share/doc/py-${PORTNAME}
X
Xpost-install:
X	${FIND} ${PYTHON_SITELIBDIR}/${PYPYLONS_EGG} \
X		-type d -exec ${CHMOD} 755 {} +
X	${FIND} ${PYTHON_SITELIBDIR}/${PYPYLONS_EGG} \
X		-type f -exec ${CHMOD} ${SHAREMODE} {} +
X
X.if !defined(NOPORTDOCS)
X	${MKDIR} ${DOCSDIR}
X	(cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} \* ${DOCSDIR})
X.endif
X
X.include <bsd.port.mk>
END-of-py-pylons/Makefile
echo x - py-pylons/distinfo
sed 's/^X//' >py-pylons/distinfo << 'END-of-py-pylons/distinfo'
XMD5 (Pylons-0.9.5.tar.gz) = 929825ab20610f4ec15038c2a590d8cf
XSHA256 (Pylons-0.9.5.tar.gz) = 03f6a049cd2d2ddcedfdd54dcfca213bd0e394bd00528a0d9c114cb1ec1c45ff
XSIZE (Pylons-0.9.5.tar.gz) = 179468
END-of-py-pylons/distinfo
echo x - py-pylons/pkg-descr
sed 's/^X//' >py-pylons/pkg-descr << 'END-of-py-pylons/pkg-descr'
XThe Pylons web framework is aimed at making webapps and large
Xprogrammatic website development in Python easy. Several key points:
X        
X* A framework to make writing web applications in Python easy
X        
X* Inspired by Rails and TurboGears
X        
X* Utilizes a minimalist, component-based philosophy that makes it easy
X  to expand on
X        
X* Harness existing knowledge about Python
X
XPylons makes it easy to expand on your knowledge of Python to master
XPylons for web development. Using a MVC style dispath, Python
Xknowledge is used at various levels:
X        
X* The Controller is just a basic Python class, called for each
X  request. Customizing the response is as easy as overriding __call__
X  to make your webapp work how you want.
X        
X* Myghty templating compiles directly to Python byte-code for speed
X  and utilizes Python for template control rather than creating its
X  own template syntax for "for, while, etc"
X
XWWW: http://www.pylonshq.com/
END-of-py-pylons/pkg-descr
echo x - py-pylons/pkg-plist
sed 's/^X//' >py-pylons/pkg-plist << 'END-of-py-pylons/pkg-plist'
X@unexec %%EASY_INSTALL_CMD%% -N -m -q %D/%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/EGG-INFO/PKG-INFO
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/EGG-INFO/SOURCES.txt
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/EGG-INFO/dependency_links.txt
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/EGG-INFO/entry_points.txt
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/EGG-INFO/not-zip-safe
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/EGG-INFO/requires.txt
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/EGG-INFO/top_level.txt
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/__init__.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/__init__.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/__init__.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/commands.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/commands.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/commands.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/config.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/config.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/config.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/controllers.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/controllers.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/controllers.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/database.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/database.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/database.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorator.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorator.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorator.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorators/__init__.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorators/__init__.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorators/__init__.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorators/_decorator.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorators/_decorator.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorators/_decorator.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorators/cache.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorators/cache.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorators/cache.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorators/rest.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorators/rest.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorators/rest.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/error.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/error.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/error.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/helpers.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/helpers.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/helpers.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/i18n/__init__.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/i18n/__init__.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/i18n/__init__.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/i18n/translation.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/i18n/translation.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/i18n/translation.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/legacy.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/legacy.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/legacy.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/bar-bg.png
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/bg.jpg
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/hatch-yellow.png
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/header.png
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/highlight.png
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/icon-16.png
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/logo.gif
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/main-nav-bg-on.png
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/main-nav-bg.png
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/plus.jpg
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/tab-brown.png
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/tab-white.png
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/tab-yellow-highlight.png
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/tab-yellow.png
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img/warning.gif
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/style/orange.css
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/middleware.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/middleware.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/middleware.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/__init__.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/__init__.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/__init__.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/controller.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+egg+.egg-info/paste_deploy_config.ini_tmpl_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/__init__.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/config/__init__.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/config/environment.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/config/middleware.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/config/routing.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/controllers/__init__.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/controllers/error.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/controllers/template.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/docs/index.txt_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/i18n/__init__.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/lib/__init__.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/lib/app_globals.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/lib/base.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/lib/helpers.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/models/__init__.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/public/index.html_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/templates/autohandler
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/tests/__init__.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/tests/functional/__init__.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/tests/test_models.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/websetup.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/README.txt_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/development.ini_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/ez_setup/README.txt
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/ez_setup/__init__.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/ez_setup/__init__.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/ez_setup/__init__.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/setup.cfg_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/setup.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/test.ini_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+egg+.egg-info/paste_deploy_config.ini_tmpl_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+package+/__init__.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+package+/controllers/__init__.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+package+/helpers.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+package+/public/index.html_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+package+/routing.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+package+/templates/autohandler
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+package+/tests/__init__.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+package+/wsgiapp.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/README.txt_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/development.ini_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/ez_setup/README.txt
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/ez_setup/__init__.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/ez_setup/__init__.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/ez_setup/__init__.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/setup.cfg_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/setup.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/test.ini_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/restcontroller.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/test_controller.py_tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templating.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templating.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templating.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/util.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/util.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/util.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/wsgiapp.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/wsgiapp.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/wsgiapp.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/__init__.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/__init__.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/__init__.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/conftest.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/conftest.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/conftest.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/__init__.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/__init__.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/__init__.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/test_controller.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/test_controller.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/test_controller.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/test_decorator_cache.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/test_decorator_cache.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/test_decorator_cache.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/test_deprecated.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/test_deprecated.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/test_deprecated.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/test_xmlrpc.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/test_xmlrpc.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units/test_xmlrpc.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/app_globals.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/app_globals.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/app_globals.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/base_with_xmlrpc.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/base_with_xmlrpc.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/base_with_xmlrpc.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/cache_controller.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/cache_controller.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/cache_controller.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/controller_sample.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/controller_sample.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/controller_sample.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/controller_xmlrpc.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/controller_xmlrpc.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/controller_xmlrpc.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/development.ini
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_controller_cache_decorator.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_controller_cache_decorator.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_controller_cache_decorator.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_controller_xmlrpc.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_controller_xmlrpc.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_controller_xmlrpc.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_cheetah.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_cheetah.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_cheetah.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_i18n.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_i18n.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_i18n.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_sample1.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_sample1.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_sample1.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_sample2.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_sample2.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_sample2.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_sample3.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_sample3.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_sample3.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_sample4.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_sample4.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/functional_sample_controller_sample4.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/messages.ja.mo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/messages.ja.po
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/messages.pot
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/middleware_cheetah_engine.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/middleware_cheetah_engine.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/middleware_cheetah_engine.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/middleware_def_engine.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/middleware_def_engine.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/middleware_def_engine.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/middleware_two_engines.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/middleware_two_engines.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/middleware_two_engines.pyo
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/test_myghty.myt
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/testcheetah.tmpl
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest/testkid.kid
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/test_make_project.py
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/test_make_project.pyc
X%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/test_make_project.pyo
X%%DOCSDIR%%/adding_docs.txt
X%%DOCSDIR%%/application_configuration.txt
X%%DOCSDIR%%/application_setup.txt
X%%DOCSDIR%%/caching.txt
X%%DOCSDIR%%/deployment.txt
X%%DOCSDIR%%/error_documents.txt
X%%DOCSDIR%%/faq.txt
X%%DOCSDIR%%/flickrsearch.txt
X%%DOCSDIR%%/form_handling.txt
X%%DOCSDIR%%/getting_started.txt
X%%DOCSDIR%%/hosting.txt
X%%DOCSDIR%%/index.txt
X%%DOCSDIR%%/install.txt
X%%DOCSDIR%%/interactive_debugger.txt
X%%DOCSDIR%%/internationalization.txt
X%%DOCSDIR%%/logging.txt
X%%DOCSDIR%%/pudge_template/at.png
X%%DOCSDIR%%/pudge_template/class.html
X%%DOCSDIR%%/pudge_template/common.html
X%%DOCSDIR%%/pudge_template/document.html
X%%DOCSDIR%%/pudge_template/layout.css
X%%DOCSDIR%%/pudge_template/layout.html
X%%DOCSDIR%%/pudge_template/master-index.html
X%%DOCSDIR%%/pudge_template/member.html
X%%DOCSDIR%%/pudge_template/module-index.html
X%%DOCSDIR%%/pudge_template/module.html
X%%DOCSDIR%%/pudge_template/package-index.html
X%%DOCSDIR%%/pudge_template/pudge.css
X%%DOCSDIR%%/pudge_template/rst.css
X%%DOCSDIR%%/pudge_template/silvercity.css
X%%DOCSDIR%%/pudge_template/transitions.html
X%%DOCSDIR%%/pylonsdev.txt
X%%DOCSDIR%%/quick_wiki.txt
X%%DOCSDIR%%/security_policy.txt
X%%DOCSDIR%%/template_plugins.txt
X%%DOCSDIR%%/testing_web_application.txt
X%%DOCSDIR%%/webserver_config.txt
X%%DOCSDIR%%/windowsnotes.txt
X%%DOCSDIR%%/wsgi.txt
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/i18n
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/decorators
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+egg+.egg-info
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/config
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/controllers
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/docs
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/i18n
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/lib
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/models
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/public
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/templates
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/tests/functional
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+/tests
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/+package+
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project/ez_setup
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/default_project
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+egg+.egg-info
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+package+/controllers
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+package+/public
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+package+/templates
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+package+/tests
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/+package+
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project/ez_setup
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates/minimal_project
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/templates
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/img
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media/style
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons/media
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/pylons
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_units
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps/filestotest
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests/test_webapps
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/tests
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%/EGG-INFO
X@dirrm %%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%
X@dirrm %%DOCSDIR%%/pudge_template
X@dirrm %%DOCSDIR%%
X@exec %%EASY_INSTALL_CMD%% -N -q %D/%%PYTHON_SITELIBDIR%%/%%PYPYLONS_EGG%%
END-of-py-pylons/pkg-plist
exit

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sat Jun 23 13:40:12 UTC 2007 
Responsible-Changed-Why:  
freebsd-python@ wants to have py- PRs 

http://www.freebsd.org/cgi/query-pr.cgi?pr=113970 

From: Denis Shaposhnikov <dsh@vlink.ru>
To: FreeBSD-gnats-submit@FreeBSD.org,  freebsd-ports-bugs@FreeBSD.org
Cc:  
Subject: Re: ports/113970: New port: www/py-pylons (Pylons Web Framework)
Date: Sat, 23 Jun 2007 17:42:42 +0400

 On 06/23/07 17:40, FreeBSD-gnats-submit@FreeBSD.org wrote:
 
 > Thank you very much for your problem report.
 > It has the internal identification `ports/113970'.
 
 Dear commiter, please commit ports/113968 and ports/113969 before this port.
 
 Thank you!
 
 -- 
 DSS5-RIPE DSS-RIPN 2:550/5068@fidonet 2:550/5069@fidonet
 xmpp:dsh@vlink.ru mailto:dsh@vlink.ru http://neva.vlink.ru/~dsh/
Responsible-Changed-From-To: freebsd-python->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Sat Jun 23 15:19:07 UTC 2007 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=113970 
State-Changed-From-To: open->closed 
State-Changed-By: miwi 
State-Changed-When: Mon Jun 25 18:19:11 UTC 2007 
State-Changed-Why:  
New port added. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=113970 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/113970: commit references a PR
Date: Mon, 25 Jun 2007 18:19:32 +0000 (UTC)

 miwi        2007-06-25 18:19:25 UTC
 
   FreeBSD ports repository
 
   Modified files:
     www                  Makefile 
   Added files:
     www/py-pylons        Makefile distinfo pkg-descr pkg-plist 
   Log:
   The Pylons web framework is aimed at making webapps and large
   programmatic website development in Python easy. Several key points:
   
   * A framework to make writing web applications in Python easy
   
   * Inspired by Rails and TurboGears
   
   * Utilizes a minimalist, component-based philosophy that makes it easy
     to expand on
   
   * Harness existing knowledge about Python
   
   Pylons makes it easy to expand on your knowledge of Python to master
   Pylons for web development. Using a MVC style dispath, Python
   knowledge is used at various levels:
   
   * The Controller is just a basic Python class, called for each
     request. Customizing the response is as easy as overriding __call__
     to make your webapp work how you want.
   
   * Myghty templating compiles directly to Python byte-code for speed
     and utilizes Python for template control rather than creating its
     own template syntax for "for, while, etc"
   
   WWW: http://www.pylonshq.com/
   
   PR:             ports/113970
   Submitted by:   Denis Shaposhnikov <dsh at vlink.ru>
   
   Revision  Changes    Path
   1.1854    +1 -0      ports/www/Makefile
   1.1       +56 -0     ports/www/py-pylons/Makefile (new)
   1.1       +3 -0      ports/www/py-pylons/distinfo (new)
   1.1       +25 -0     ports/www/py-pylons/pkg-descr (new)
   1.1       +292 -0    ports/www/py-pylons/pkg-plist (new)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
