# HG changeset patch # User Christophe Lincoln # Date 1244766310 -7200 # Node ID 67863a5bedd0150c5196fcca6eefbaba5a881a57 # Parent a967d0e8c6f13f8b58848006254f1c9288695251 Add: python-paste* diff -r a967d0e8c6f1 -r 67863a5bedd0 python-paste/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-paste/receipt Fri Jun 12 02:25:10 2009 +0200 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="python-paste" +VERSION="1.7.2" +CATEGORY="development" +SHORT_DESC="Tools for using a Web Server Gateway Interface stack." +MAINTAINER="pankso@slitaz.org" +SOURCE="Paste" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://pythonpaste.org/" +WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL" +DEPENDS="python" +BUILD_DEPENDS="python python-dev" +TAGS="python" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +} diff -r a967d0e8c6f1 -r 67863a5bedd0 python-pastedeploy/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-pastedeploy/receipt Fri Jun 12 02:25:10 2009 +0200 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="python-pastedeploy" +VERSION="1.3.3" +CATEGORY="development" +SHORT_DESC="Load, configure, and compose WSGI applications and servers." +MAINTAINER="pankso@slitaz.org" +SOURCE="PasteDeploy" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://pythonpaste.org/" +WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL" +DEPENDS="python python-paste" +BUILD_DEPENDS="$DEPENDS python-dev" +TAGS="python" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +} diff -r a967d0e8c6f1 -r 67863a5bedd0 python-pastescript/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-pastescript/receipt Fri Jun 12 02:25:10 2009 +0200 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="python-pastescript" +VERSION="1.7.3" +CATEGORY="development" +SHORT_DESC="A pluggable command-line frontend, including commands to setup package file layouts." +MAINTAINER="pankso@slitaz.org" +SOURCE="PasteScript" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://pythonpaste.org/" +WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL" +DEPENDS="python python-paste python-pastedeploy" +BUILD_DEPENDS="$DEPENDS python-dev" +TAGS="python" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +} diff -r a967d0e8c6f1 -r 67863a5bedd0 python-turbogears/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-turbogears/receipt Fri Jun 12 02:25:10 2009 +0200 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="python-turbogears" +VERSION="1.0.8" +CATEGORY="network" +SHORT_DESC="Python web application framework." +MAINTAINER="pankso@slitaz.org" +SOURCE="TurboGears" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://www.turbogears.org/" +WGET_URL="http://files.turbogears.org/eggs/$TARBALL" +DEPENDS="python psycopg sqlobject python-kid python-cheetah python-cherrypy \ +python-paste python-pastedeploy python-pastescript python-formencode \ +python-decoratortools" +BUILD_DEPENDS="$DEPENDS python-dev setuptools" + +# Rules to configure and make the package. +compile_rules() +{ + # Use tgsetup.py to bootstrap installation with all deps. If this is + cd $src/tools + DESTDIR="../_pkg/usr/lib/python2.5/site-packages" + mkdir -p $DESTDIR + PYTHONPATH=$DESTDIR python tgsetup.py -U -d $DESTDIR --prefix="../_pkg/usr" +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs + rm $fs/usr/lib/python2.5/site-packages/site.py* +}