move list_library_unreleased_changes.sh to releases repo

Change-Id: Ifffc6bd7a756e30f3b32cd03ba60cbae44da8a4b
Depends-On: I8fd0895ff830a5a0d7e7076ba167d19abf46d194
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2017-02-08 15:25:42 -05:00
parent 4bd9f7f578
commit a83d7144fb
2 changed files with 0 additions and 34 deletions

View File

@ -243,13 +243,6 @@ is equivalent to:
./list_unreleased_changes.sh stable/kilo $(list-deliverables --repos --code-only --team Oslo)
list_library_unreleased_changes.sh
----------------------------------
Runs list_unreleased_changes.sh for all libraries managed by any
project.
list_stable_unreleased_changes.sh
---------------------------------

View File

@ -1,27 +0,0 @@
#!/bin/bash
#
# Convenience wrapper to show the unreleased changes in all
# libraries, so we don't have to remember the incantation.
if [[ $# -ne 2 ]]; then
echo "Usage: $(basename $0) <branch> <releases-dir>"
exit 1
fi
SERIES=${1:-master}
RELEASES_DIR=$2
TOOLSDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $TOOLSDIR/functions
# Set up the virtualenv where the list-deliverables command will be
# found. This is done outside of the invocation below because
# otherwise we get the tox output mixed up in the repo list output and
# try to do things like look at the history of "venv" and
# "installing".
(cd $RELEASES_DIR && tox -e venv --notest)
echo "Finding $SERIES library repositories..."
repos="$($RELEASES_DIR/.tox/venv/bin/list-deliverables --repos --type library --series $SERIES)"
$TOOLSDIR/list_unreleased_changes.sh $SERIES $repos