From a83d7144fb1bfaf61a0bbebc0944cff07995edfd Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Wed, 8 Feb 2017 15:25:42 -0500 Subject: [PATCH] move list_library_unreleased_changes.sh to releases repo Change-Id: Ifffc6bd7a756e30f3b32cd03ba60cbae44da8a4b Depends-On: I8fd0895ff830a5a0d7e7076ba167d19abf46d194 Signed-off-by: Doug Hellmann --- README.rst | 7 ------- list_library_unreleased_changes.sh | 27 --------------------------- 2 files changed, 34 deletions(-) delete mode 100755 list_library_unreleased_changes.sh diff --git a/README.rst b/README.rst index 2af2167..6438544 100644 --- a/README.rst +++ b/README.rst @@ -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 --------------------------------- diff --git a/list_library_unreleased_changes.sh b/list_library_unreleased_changes.sh deleted file mode 100755 index 3420c7a..0000000 --- a/list_library_unreleased_changes.sh +++ /dev/null @@ -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) " - 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