gis/polyline: Require Python 3.

This commit is contained in:
Benjamin Trigona-Harany 2018-10-24 12:59:18 -07:00 committed by Willy Sudiarto Raharjo
parent 835c22fcbc
commit 6936150902
No known key found for this signature in database
GPG Key ID: 887B8374D7333381
2 changed files with 4 additions and 6 deletions

View File

@ -2,7 +2,7 @@
# Slackware build script for polyline
# Copyright 2015 Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
# Copyright 2015-2018 Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -69,10 +69,8 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
python setup.py install --root=$PKG
if $(python3 -c 'import sys' 2>/dev/null); then
python3 setup.py install --root=$PKG
fi
python2 setup.py install --root=$PKG
python3 setup.py install --root=$PKG
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \

View File

@ -5,6 +5,6 @@ DOWNLOAD="https://files.pythonhosted.org/packages/source/p/polyline/polyline-1.3
MD5SUM="802f43c5134f5a2386657f60dca9602b"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="six"
REQUIRES="six python3-six"
MAINTAINER="Benjamin Trigona-Harany"
EMAIL="slackbuilds@jaxartes.net"