From 64c0d92483489866ba27be1bc1f842eac832274e Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Sun, 16 Feb 2014 18:09:20 +0000 Subject: [PATCH] Gentoo is now able to install apache-libcloud. Refs #278. --- bootstrap-salt.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 043d5db..b265cc2 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -3206,6 +3206,13 @@ __gentoo_post_dep() { __emerge --oneshot 'sys-devel/libtool' # the -o option asks it to emerge the deps but not the package. __gentoo_config_protection + + if [ $_INSTALL_CLOUD -eq $BS_TRUE ]; then + check_pip_allowed "You need to allow pip based installations(-P) in order to install apache-libcloud" + __emerge -v 'dev-python/pip' + pip install -U apache-libcloud>=$_LIBCLOUD_MIN_VERSION + fi + __emerge -vo 'app-admin/salt' }