mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
network/bottle: Update EMAIL.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
d0add4f89d
commit
4e7c680524
4 changed files with 11 additions and 10 deletions
|
@ -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,
|
offers request dispatching (Routes) with url parameter support, templates,
|
||||||
a built-in HTTP Server and adapters for many third party WSGI/HTTP-server and
|
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
|
template engines - all in a single file and with no dependencies other than
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/sh
|
#!/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.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use of this script, with or without modification, is
|
# 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 \
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 \
|
||||||
-o -perm 400 \) -exec chmod 644 {} \;
|
-o -perm 400 \) -exec chmod 644 {} \;
|
||||||
|
|
||||||
PRGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
|
|
||||||
|
|
||||||
python setup.py install --root=$PKG
|
python setup.py install --root=$PKG
|
||||||
|
|
||||||
# Python 3 support.
|
# Python 3 support.
|
||||||
|
@ -64,9 +62,12 @@ if $(python3 -c 'import sys' 2>/dev/null); then
|
||||||
python3 setup.py install --root=$PKG
|
python3 setup.py install --root=$PKG
|
||||||
fi
|
fi
|
||||||
|
|
||||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" \
|
||||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
| 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
|
mkdir -p $PRGDOC
|
||||||
cp -a README.rst PKG-INFO $PRGDOC/
|
cp -a README.rst PKG-INFO $PRGDOC/
|
||||||
cat $CWD/$PRGNAM.SlackBuild > $PRGDOC/$PRGNAM.SlackBuild
|
cat $CWD/$PRGNAM.SlackBuild > $PRGDOC/$PRGNAM.SlackBuild
|
||||||
|
|
|
@ -7,4 +7,4 @@ DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
REQUIRES=""
|
REQUIRES=""
|
||||||
MAINTAINER="Philip Lacroix"
|
MAINTAINER="Philip Lacroix"
|
||||||
EMAIL="philnx at posteo dot de"
|
EMAIL="slackph at posteo dot de"
|
||||||
|
|
|
@ -6,9 +6,9 @@
|
||||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||||
|
|
||||||
|-----handy-ruler------------------------------------------------------|
|
|-----handy-ruler------------------------------------------------------|
|
||||||
bottle: Bottle (Python web framework)
|
bottle: bottle (Python web framework)
|
||||||
bottle:
|
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: for Python. It is distributed as a single file module and has no
|
||||||
bottle: dependencies other than the Python Standard Library.
|
bottle: dependencies other than the Python Standard Library.
|
||||||
bottle:
|
bottle:
|
||||||
|
|
Loading…
Reference in a new issue