Move other-requirements.txt to bindep.txt

The default filename for documenting binary dependencies has been
changed from "other-requirements.txt" to "bindep.txt" with the release
of bindep 2.1.0. While the previous name is still supported, it will
be deprecated.

Move the file around to follow this change.

Note that this change is self-testing, the OpenStack CI infrastructure
will use a "bindep.txt" file to setup nodes for testing.

For more information about bindep, see also:
http://docs.openstack.org/infra/manual/drivers.html#package-requirements
http://docs.openstack.org/infra/bindep/

As well as this announcement:
http://lists.openstack.org/pipermail/openstack-dev/2016-August/101590.html

Change-Id: If4db21748c4cf2b457e02efdd92b33eee44e2319
This commit is contained in:
Andreas Jaeger 2016-08-12 21:14:42 +02:00 committed by Tony Breeds
parent 6ce2bf2095
commit 1f3975247a
2 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ REPODIR=${REPODIR:-$BASE/new}
root=$(dirname $0)/..
sudo -H pip install bindep
sudo apt-get install -y --force-yes $(bindep -b python -f $root/other-requirements.txt)
sudo apt-get install -y --force-yes $(bindep -b python -f $root/bindep.txt)
# And use ccache explitly
export PATH=/usr/lib/ccache:$PATH