cherrypy: picked up port

This commit is contained in:
Danny Rawlins 2008-04-11 13:37:42 +10:00
parent 926204bbcd
commit 9365861409
3 changed files with 15 additions and 12 deletions

View File

@ -2,7 +2,7 @@ drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/python2.5/
drwxr-xr-x root/root usr/lib/python2.5/site-packages/
-rw-r--r-- root/root usr/lib/python2.5/site-packages/CherryPy-3.0.2-py2.5.egg-info
-rw-r--r-- root/root usr/lib/python2.5/site-packages/CherryPy-3.0.3-py2.5.egg-info
drwxr-xr-x root/root usr/lib/python2.5/site-packages/cherrypy/
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/__init__.py
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/__init__.pyc
@ -75,6 +75,8 @@ drwxr-xr-x root/root usr/lib/python2.5/site-packages/cherrypy/test/
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/helper.pyc
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/modpy.py
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/modpy.pyc
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/modwsgi.py
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/modwsgi.pyc
drwxr-xr-x root/root usr/lib/python2.5/site-packages/cherrypy/test/static/
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/static/dirback.jpg
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/static/index.html
@ -103,6 +105,8 @@ drwxr-xr-x root/root usr/lib/python2.5/site-packages/cherrypy/test/static/
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/test_objectmapping.pyc
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/test_proxy.py
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/test_proxy.pyc
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/test_refleaks.py
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/test_refleaks.pyc
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/test_routes.py
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/test_routes.pyc
-rw-r--r-- root/root usr/lib/python2.5/site-packages/cherrypy/test/test_session.py

View File

@ -1 +1 @@
d0b10db126a708b763f243ef764ad21a CherryPy-3.0.2.tar.gz
a9c5efd94ff1b87f0f1cc29d09875670 CherryPy-3.0.3.tar.gz

View File

@ -1,18 +1,17 @@
# Description: Pythonic, object-oriented web development framework.
# URL: http://www.cherrypy.org/
# Maintainer: unmaintained
# Packager: James Mills, prologic at shortcircuit dot net dot au
#
# Depends on: python
# URL: http://www.cherrypy.org/
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: James Mills, prologic at shortcircuit dot net dot au
# Depends on: python
name=cherrypy
version=3.0.2
version=3.0.3
release=1
source=(http://download.cherrypy.org/cherrypy/$version/CherryPy-$version.tar.gz)
build() {
cd CherryPy-$version
python setup.py install --root=$PKG
rm -rf $PKG/usr/lib/python*/site-packages/$name/tutorial
chown -R root:root $PKG
cd CherryPy-$version
python setup.py install --root=$PKG
rm -rf $PKG/usr/lib/python*/site-packages/cherrypy/tutorial
}