Remove bindep pin

Without this patch, we are stuck to an old version of bindep
and distro. There is no reason to pin or patch bindep anymore.

This is a problem because more recent distributions like
opensuse leap 15 will have profile detection issues.

This should fix it.

Change-Id: Ia3637b3801590cda92be433ca3ba79f62e15512a
This commit is contained in:
Jean-Philippe Evrard 2018-07-26 20:27:03 +02:00
parent 49b7f78953
commit 06b5321eda
2 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ fi
$(dirname $0)/fetch_wheels.sh
if [[ "${PROJECT}" == "infra" ]]; then
$(dirname $0)/setup_pip.sh
$(dirname $0)/pip_install.sh bindep==2.6.0 ${PIP_PACKAGES}
$(dirname $0)/pip_install.sh bindep ${PIP_PACKAGES}
$(dirname $0)/install_packages.sh
$(dirname $0)/cleanup.sh
exit 0
@ -57,7 +57,7 @@ fi
if [[ "${PLUGIN}" == "no" ]]; then
$(dirname $0)/create_user.sh
$(dirname $0)/setup_pip.sh
$(dirname $0)/pip_install.sh bindep==2.6.0
$(dirname $0)/pip_install.sh bindep
PACKAGES=($(bindep -f /opt/loci/pydep.txt -b -l newline ${PROJECT} ${PROFILES} ${python3} || :))
$(dirname $0)/pip_install.sh ${PACKAGES[@]}
fi

View File

@ -3,7 +3,7 @@
set -eux
$(dirname $0)/setup_pip.sh
pip install bindep==2.6.0
pip install bindep
$(dirname $0)/install_packages.sh
$(dirname $0)/clone_project.sh