Removed a reference to quantum and removed a dead file

Change-Id: Id1159b1d9f32d6af696159e64321312cdc374276
This commit is contained in:
Alex Gaynor 2013-09-26 08:24:07 -07:00
parent 391b0572e6
commit d3c8bb436a
2 changed files with 0 additions and 31 deletions
tests/files
tools

@ -59,7 +59,6 @@ python-keystoneclient>=0.3.2
python-memcached
python-neutronclient>=2.2.3,<3
python-novaclient>=2.12.0
python-quantumclient>=2.2.0
python-swiftclient>=1.2
python-troveclient
pytz>=2010h

@ -1,30 +0,0 @@
#!/bin/bash
GIT_DIR=${GIT_DIR-~/git/openstack}
FETCH_REMOTE=${FETCH_REMOTE-}
REMOTE_BRANCH=${REMOTE_BRANCH-gerrit/master}
PROJECTS=${PROJECTS-"nova glance keystone cinder quantum horizon swift heat ceilometer oslo-incubator python-novaclient python-glanceclient python-keystoneclient python-cinderclient python-quantumclient python-swiftclient"}
fetch() {
for p in $PROJECTS; do
cd $GIT_DIR/$p
git fetch gerrit
done
}
concat() {
path=$1; shift
for p in $PROJECTS; do
cd $GIT_DIR/$p
git cat-file -p $REMOTE_BRANCH:$path
done | tr A-Z a-z| sed 's/#.*$//; s/ *$//; /^ *$/d' | sort | uniq
}
[ -n "$FETCH_REMOTE" ] && fetch
concat tools/pip-requires > $GIT_DIR/requirements/tools/pip-requires
(sed p $GIT_DIR/requirements/tools/pip-requires;
concat tools/test-requires ) |
sort | uniq -u > $GIT_DIR/requirements/tools/test-requires