system/powerline-status: Added python3 support.

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2019-11-30 20:40:51 +01:00 committed by Willy Sudiarto Raharjo
parent 95f8b2cca3
commit 23f831f1a8
No known key found for this signature in database
GPG key ID: 887B8374D7333381
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,5 @@
Powerline is a statusline plugin for vim, and provides statuslines
and prompts for several other applications, including zsh, bash,
tmux, IPython, Awesome, i3 and Qtile.
Optional dependency: python3

View file

@ -2,7 +2,7 @@
# Slackware build script for powerline-status
# Copyright 2016-2018 Dimitris Zlatanidis Orestiada, Greece
# Copyright 2016-2019 Dimitris Zlatanidis Orestiada, Greece
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -24,7 +24,7 @@
PRGNAM=powerline-status
VERSION=${VERSION:-2.7}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@ -71,6 +71,11 @@ find -L . \
python setup.py install --root=$PKG
# Python 3 support.
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