remove list_oslo_unreleased_changes.sh

This is a simple wrapper, not often used. The version that lists all
libraries is more common, and has been migrated to the releases repo in
an earlier commit.

Change-Id: I0ceec83c816379620f161f64ea60ce1b89b01c3f
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2017-02-08 15:32:58 -05:00
parent a83d7144fb
commit 959a33401a
2 changed files with 0 additions and 35 deletions

View File

@ -226,23 +226,6 @@ is useful for examining the list of unreleased changes in a project
to decide if a release is warranted and to pick a version number.
list_oslo_unreleased_changes.sh
-------------------------------
Runs list_unreleased_changes.sh for all of the Oslo library
repositories.
::
./list_oslo_unreleased_changes.sh stable/kilo
is equivalent to:
::
./list_unreleased_changes.sh stable/kilo $(list-deliverables --repos --code-only --team Oslo)
list_stable_unreleased_changes.sh
---------------------------------

View File

@ -1,18 +0,0 @@
#!/bin/bash
#
# Convenience wrapper to show the unreleased changes in Oslo
# libraries, so we don't have to remember the incantation.
if [[ $# -ne 1 ]]; then
echo "Usage: $(basename $0) <branch>"
exit 1
fi
if [[ -z "$VIRTUAL_ENV" ]]; then
tox -e venv --notest
source ./.tox/venv/bin/activate
fi
repos="$(list-repos --code-only --team oslo | grep -v incubator)"
$(dirname $0)/list_unreleased_changes.sh $1 $repos