move list_stable_unreleased_changes.sh to releases repo

Change-Id: I5dfc95c90d957c364516a7eab06a34d8ccc6b02a
Depends-On: Ibef585f5a6fb427a073fe069ab47db992a80f120
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2017-02-08 15:49:27 -05:00
parent 959a33401a
commit a5497966d7
2 changed files with 0 additions and 42 deletions

View File

@ -225,25 +225,6 @@ the change but leaving out the email message boilerplate. This mode
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_stable_unreleased_changes.sh
---------------------------------
Runs list_unreleased_changes.sh with the given branch for all
repositories tagged with ``stable:follows-policy``.
::
./list_stable_unreleased_changes.sh stable/liberty
is equivalent to:
::
./list_unreleased_changes.sh stable/liberty $(list-deliverables --repos --series liberty)
make_stable_branch.sh
---------------------

View File

@ -1,23 +0,0 @@
#!/bin/bash
#
# Convenience wrapper to show the unreleased changes in all projects
# claiming to have stable branches, 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 --tag stable:follows-policy)"
# NOTE(tonyb): The purpose of this script is to 'quick check' for unreleased
# changes. Without an email address release-notes will barf so set a fake
# email address if one isn't already present.
export EMAIL=${EMAIL:-noone@nowhere.com}
$(dirname $0)/list_unreleased_changes.sh $1 $repos