From 44f5e093bb02394fd73d8a16e32a009a85392446 Mon Sep 17 00:00:00 2001 From: Nikos Giotis Date: Tue, 13 Feb 2018 16:45:58 +0000 Subject: python/snowballstemmer: Add python3 support. Signed-off-by: David Spencer --- python/snowballstemmer/README | 7 ++++--- python/snowballstemmer/snowballstemmer.SlackBuild | 7 +++++-- 2 files changed, 9 insertions(+), 5 deletions(-) (limited to 'python') diff --git a/python/snowballstemmer/README b/python/snowballstemmer/README index 67f94626da..5281197006 100644 --- a/python/snowballstemmer/README +++ b/python/snowballstemmer/README @@ -1,6 +1,6 @@ snowballstemmer -This package provides 16 stemmer algorithms (15 + Poerter English stemmer) +This package provides 16 stemmer algorithms (15 + Poerter English stemmer) generated from Snowball algorithms. It includes following language algorithms: @@ -21,5 +21,6 @@ It includes following language algorithms: Swedish Turkish -This is a pure Python stemming library. -PyStemmer is an optional dependency. \ No newline at end of file +This is a pure Python stemming library. + +Optional dependencies: PyStemmer, python3 diff --git a/python/snowballstemmer/snowballstemmer.SlackBuild b/python/snowballstemmer/snowballstemmer.SlackBuild index fc7db032be..9be1e48385 100644 --- a/python/snowballstemmer/snowballstemmer.SlackBuild +++ b/python/snowballstemmer/snowballstemmer.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for snowballstemmer -# Copyright 2017 Nikos Giotis +# Copyright 2017,2018 Nikos Giotis , Athens, GR # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ PRGNAM=snowballstemmer VERSION=${VERSION:-1.2.1} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -70,6 +70,9 @@ find -L . \ -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 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 -- cgit v1.2.3