python/dulwich: Add python3 support.

dulwich is a dependency of hg-git, a mercurial plugin: mercurial is
python3-only in current, so its plugins need python3 support.

Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
newHeiko 2021-02-19 16:12:17 +01:00 committed by Robby Workman
parent f706b0bc33
commit 73fc67c82c

View file

@ -57,6 +57,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