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 | |
parent | f75fabe5f58199dab44fca505f0699315f60b4a4 (diff) | |
download | slackbuilds-bf7e9298158aeab7cd93cd3ab7fe49ba37d73d7e.tar.gz |
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')
-rw-r--r-- | system/ansible/README | 3 | ||||
-rw-r--r-- | system/ansible/ansible.SlackBuild | 4 | ||||
-rw-r--r-- | system/ansible/ansible.info | 8 |
3 files changed, 9 insertions, 6 deletions
diff --git a/system/ansible/README b/system/ansible/README index 0d4f3e9188..ce2e1e89e0 100644 --- a/system/ansible/README +++ b/system/ansible/README @@ -5,3 +5,6 @@ configuration, software deployment, and other IT needs. It comes as an easy-to-use and powerful alternative to infrastructure management tools such as CFEngine, Chef, Puppet, and SaltStack. + +Note: for some modules to run, you may need to install additional +dependencies. diff --git a/system/ansible/ansible.SlackBuild b/system/ansible/ansible.SlackBuild index e71acb4b27..6b479aa2aa 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 diff --git a/system/ansible/ansible.info b/system/ansible/ansible.info index b92bf3e69e..baed02e1e4 100644 --- a/system/ansible/ansible.info +++ b/system/ansible/ansible.info @@ -1,10 +1,10 @@ PRGNAM="ansible" -VERSION="2.7.11" +VERSION="2.8.2" HOMEPAGE="https://www.ansible.com" -DOWNLOAD="https://releases.ansible.com/ansible/ansible-2.7.11.tar.gz" -MD5SUM="d7cf72075b4cbb33ac965b789c5d5a4b" +DOWNLOAD="https://releases.ansible.com/ansible/ansible-2.8.2.tar.gz" +MD5SUM="6860a44bf6badad6a4f77091b53b04e3" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="paramiko PyYAML Jinja2" +REQUIRES="cryptography python3-PyYAML Jinja2" MAINTAINER="Marek Wodzinski" EMAIL="majek@w7i.pl" |