diff options
author | Dave Woodfall <dave@slackbuilds.org> | 2021-05-06 18:14:57 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-08 01:41:54 +0700 |
commit | c9e80cae1c0fcac752160ba38597ca59b21e45a4 (patch) | |
tree | 4879d92c98fd8d22f645ef3db610a238c52fe4e9 | |
parent | 6c138a48d6a5e4c7f7ce21aaa8b484d68e5e2f44 (diff) |
network/deis: Fix REQUIRES for python2.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | network/deis/deis.SlackBuild | 2 | ||||
-rw-r--r-- | network/deis/deis.info | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/network/deis/deis.SlackBuild b/network/deis/deis.SlackBuild index 3ea477ee6178..523ef9b694a6 100644 --- a/network/deis/deis.SlackBuild +++ b/network/deis/deis.SlackBuild @@ -69,7 +69,7 @@ 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 +python2 setup.py install --root=$PKG 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 diff --git a/network/deis/deis.info b/network/deis/deis.info index 1d1c3ba93d27..7ac410ee687b 100644 --- a/network/deis/deis.info +++ b/network/deis/deis.info @@ -5,6 +5,6 @@ DOWNLOAD="https://pypi.python.org/packages/source/d/deis/deis-1.6.1.tar.gz" MD5SUM="dda95188c7bb4562c97eeeefc4eed8f9" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="docopt python-dateutil termcolor PyYAML python-tabulate ndg_httpsclient" +REQUIRES="docopt python-dateutil termcolor PyYAML python2-tabulate ndg_httpsclient" MAINTAINER="Dimitris Zlatanidis" EMAIL="d.zlatanidis@gmail.com" |