development/webpy: Removed from 12.1 repository

This commit is contained in:
Heinz Wiesinger 2010-05-11 20:30:36 +02:00
parent 58db93f78a
commit 47b6482cae
4 changed files with 0 additions and 106 deletions

View file

@ -1,8 +0,0 @@
web.py is a simple and powerful web framework for Python. It
provides a simple database abstraction, a template engine, and
abstractions for HTTP requests. A simple webserver is also included,
which can be used to quickly try and test code.
web.py does not have any additional requirements than stock Python
from Slackware Linux. To use the database functionality, you could
install pysqlite2, psycopg2, or MySQLdb modules.

View file

@ -1,19 +0,0 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|' on
# the right side marks the last column you can put a character in. You must make
# exactly 11 lines for the formatting to be correct. It's also customary to
# leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
webpy: web.py (a Python web framework)
webpy:
webpy: web.py is a simple and powerful web framework for Python. It
webpy: provides a simple database abstraction, a template engine, and
webpy: abstractions for HTTP requests. A simple webserver is also included,
webpy: which can be used to quickly try and test code.
webpy:
webpy: web.py was donated to the public domain by Aaron Swartz, and is
webpy: available from: http://webpy.org/
webpy:
webpy:

View file

@ -1,71 +0,0 @@
#!/bin/sh
# Slackware build script for web.py
# Copyright (c) 2007 Daniel de Kok <moc.mikciat@leinad>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Exit on most errors
set -e
PRGNAM=webpy
DISTNAM=web.py
VERSION=0.2
ARCH=${ARCH:-noarch}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xzvf $CWD/$DISTNAM-$VERSION.tar.gz
cd $DISTNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
python setup.py bdist
tar zxvf dist/$DISTNAM-$VERSION.linux-i686.tar.gz -C $PKG
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cat << EOF > $PKG/usr/doc/$PRGNAM-$VERSION/README
web.py does not include any documentation yet, a tutorial can be found
on the web.py website: http://webpy.org/
web.py was written by Aaron Swartz, and is in the public domain.
EOF
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz

View file

@ -1,8 +0,0 @@
PRGNAM="webpy"
VERSION="0.2"
HOMEPAGE="http://webpy.org/"
DOWNLOAD="http://webpy.org/web.py-0.2.tar.gz"
MD5SUM="0cee2d4ebcdf8a0bf26369f1eebc427d"
MAINTAINER="Daniel de Kok"
EMAIL="danieldk@pobox.com"
APPROVED="rworkman"