diff options
author | Marek Wodzinski <majek@w7i.pl> | 2019-07-04 14:35:58 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-07-04 22:14:25 +0700 |
commit | bf7e9298158aeab7cd93cd3ab7fe49ba37d73d7e (patch) | |
tree | 0d3f2ceba53f82111b5c9cafedcb91315acb570d /system/ansible/ansible.SlackBuild | |
parent | f75fabe5f58199dab44fca505f0699315f60b4a4 (diff) |
system/ansible: Updated for version 2.8.2, switch to python3.
- update to 2.8.2
- switch to python3
- update dependencies (paramiko is no longer hard requirement)
- add note about additional dependencies required at run time (for example some modules may still require paramiko)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/ansible/ansible.SlackBuild')
-rw-r--r-- | system/ansible/ansible.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/ansible/ansible.SlackBuild b/system/ansible/ansible.SlackBuild index e71acb4b276ec..6b479aa2aae45 100644 --- a/system/ansible/ansible.SlackBuild +++ b/system/ansible/ansible.SlackBuild @@ -25,7 +25,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=ansible -VERSION=${VERSION:-2.7.11} +VERSION=${VERSION:-2.8.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -71,7 +71,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 +python3 setup.py install --root=$PKG # Copy docs, remove git traces, compress manpages cp -a docs/man $PKG/usr/man |