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"
33 lines
971 B
Makefile
33 lines
971 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2010/07/14 13:23:37 jihbed Exp $
|
|
#
|
|
|
|
DISTNAME= Pylons-1.0.tar
|
|
EGG_NAME= ${DISTNAME:S/.tar//}
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/P/p/S/.tar//}
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://pypi.python.org/packages/source/P/Pylons/
|
|
EXTRACT_SUFX= .gz
|
|
|
|
MAINTAINER= kamelderouiche@yahoo.com
|
|
HOMEPAGE= http://www.pylonshq.com/
|
|
COMMENT= Pylons Web Framework
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-simplejson>=2.1.1:../../converters/py-simplejson
|
|
DEPENDS+= ${PYPKGPREFIX}-cheetah>=2.0.1:../../devel/py-cheetah
|
|
DEPENDS+= ${PYPKGPREFIX}-nose>=0.11.3:../../devel/py-nose
|
|
DEPENDS+= ${PYPKGPREFIX}-webob>=0.9.8:../../wip/py-webob
|
|
DEPENDS+= ${PYPKGPREFIX}-Paste>=1.7.2:../../www/py-paste
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
WRKSRC= ${WRKDIR}/Pylons-1.0
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= intltool msgfmt
|
|
USE_LANGUAGES= # none
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${PYTHONBIN} tests/conftest.py
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|