network/bottle: Update EMAIL.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Philip Lacroix 2015-09-11 01:48:16 +07:00 committed by Willy Sudiarto Raharjo
parent d0add4f89d
commit 4e7c680524
4 changed files with 11 additions and 10 deletions

View File

@ -1,4 +1,4 @@
Bottle is a fast and simple micro-framework for small web applications. It
bottle is a fast and simple micro-framework for small web applications. It
offers request dispatching (Routes) with url parameter support, templates,
a built-in HTTP Server and adapters for many third party WSGI/HTTP-server and
template engines - all in a single file and with no dependencies other than

View File

@ -1,8 +1,8 @@
#!/bin/sh
# Slackware build script for Bottle
# Slackware build script for bottle
# Copyright 2015 Philip Lacroix <philnx at posteo dot de>
# Copyright 2015 Philip Lacroix <slackph at posteo dot de>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -55,8 +55,6 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 \
-o -perm 400 \) -exec chmod 644 {} \;
PRGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
python setup.py install --root=$PKG
# Python 3 support.
@ -64,9 +62,12 @@ if $(python3 -c 'import sys' 2>/dev/null); then
python3 setup.py install --root=$PKG
fi
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" \
| grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
PRGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
# Install documentation.
mkdir -p $PRGDOC
cp -a README.rst PKG-INFO $PRGDOC/
cat $CWD/$PRGNAM.SlackBuild > $PRGDOC/$PRGNAM.SlackBuild

View File

@ -7,4 +7,4 @@ DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="Philip Lacroix"
EMAIL="philnx at posteo dot de"
EMAIL="slackph at posteo dot de"

View File

@ -6,9 +6,9 @@
# customary to leave one space after the ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
bottle: Bottle (Python web framework)
bottle: bottle (Python web framework)
bottle:
bottle: Bottle is a fast, simple and lightweight WSGI micro web-framework
bottle: bottle is a fast, simple and lightweight WSGI micro web-framework
bottle: for Python. It is distributed as a single file module and has no
bottle: dependencies other than the Python Standard Library.
bottle: