python/python-tblib: Updated for version 1.3.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
100c811130
commit
ee86361fec
|
@ -1,4 +1,5 @@
|
|||
Traceback fiddling library. For now allows you to pickle tracebacks and
|
||||
raise exceptions with pickled tracebacks in different processes. This
|
||||
allows better error handling when running code over multiple processes
|
||||
(imagine multiprocessing, billiard, futures, celery etc).
|
||||
A traceback serialization library that allows you to pickle tracebacks and
|
||||
raise exceptions with pickled tracebacks in different processes. This allows
|
||||
better error handling when running code over multiple processes (imagine
|
||||
multiprocessing, billiard, futures, celery etc). It also parses traceback
|
||||
strings and raise with the parsed tracebacks.
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for python-tblib
|
||||
|
||||
# Copyright 2015 Brenton Earl <brent@exitstatusone.com>
|
||||
# Copyright 2015-2016 Brenton Earl <brent@exitstatusone.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,14 +23,13 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=python-tblib
|
||||
SRCNAM=tblib
|
||||
VERSION=${VERSION:-1.1.0}
|
||||
VERSION=${VERSION:-1.3.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -41,8 +40,8 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
@ -60,9 +59,9 @@ set -e
|
|||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $SRCNAM-$VERSION
|
||||
tar xvf $CWD/$SRCNAM-$VERSION.tar.gz
|
||||
cd $SRCNAM-$VERSION
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
|
@ -76,7 +75,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
|
|||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a PKG-INFO LICENSE README.rst $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS.rst CHANGELOG.rst LICENSE README.rst $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="python-tblib"
|
||||
VERSION="1.1.0"
|
||||
VERSION="1.3.0"
|
||||
HOMEPAGE="https://github.com/ionelmc/python-tblib"
|
||||
DOWNLOAD="https://pypi.python.org/packages/source/t/tblib/tblib-1.1.0.tar.gz"
|
||||
MD5SUM="a5131b5b58a5495130e6ab1f8c305832"
|
||||
DOWNLOAD="https://github.com/ionelmc/python-tblib/archive/v1.3.0/python-tblib-1.3.0.tar.gz"
|
||||
MD5SUM="c13c854e9a0a070f9514c4b5d575fb39"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="six"
|
||||
|
|
|
@ -6,14 +6,14 @@
|
|||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
python-tblib: python-tblib (Traceback fiddling library)
|
||||
python-tblib: python-tblib (Traceback serialization library)
|
||||
python-tblib:
|
||||
python-tblib: Traceback fiddling library. For now allows you to pickle tracebacks
|
||||
python-tblib: A traceback serialization library that allows you to pickle tracebacks
|
||||
python-tblib: and raise exceptions with pickled tracebacks in different processes.
|
||||
python-tblib: This allows better error handling when running code over multiple
|
||||
python-tblib: processes (imagine multiprocessing, billiard, futures, celery etc).
|
||||
python-tblib: It also parses traceback strings and raise with the parsed tracebacks.
|
||||
python-tblib:
|
||||
python-tblib: Home page: https://github.com/ionelmc/python-tblib
|
||||
python-tblib:
|
||||
python-tblib:
|
||||
python-tblib:
|
||||
|
|
Loading…
Reference in New Issue