351b878093
Branches and tags are really just refs in git so rather than open-codeing that and having 2 for loops just call everything a ref. While we're there sort tags in reverse order this has the cosmetic advantage that series are chronological order ie: 1.1.0-1215-g8dc48120 : openstackdocstheme===1.18.1 origin/master : openstackdocstheme===1.18.1 origin/stable/newton : openstackdocstheme===1.5.0 origin/stable/ocata : openstackdocstheme===1.6.1 origin/stable/pike : openstackdocstheme===1.16.1 folsom-eol : grizzly-eol : havana-eol : icehouse-eol : juno-eol : kilo-eol : openstackdocstheme===1.1.0 liberty-eol : openstackdocstheme===1.2.6 mitaka-eol : openstackdocstheme===1.3.0 becomes: 1.1.0-1215-g8dc48120 : openstackdocstheme===1.18.1 origin/master : openstackdocstheme===1.18.1 origin/stable/newton : openstackdocstheme===1.5.0 origin/stable/ocata : openstackdocstheme===1.6.1 origin/stable/pike : openstackdocstheme===1.16.1 mitaka-eol : openstackdocstheme===1.3.0 liberty-eol : openstackdocstheme===1.2.6 kilo-eol : openstackdocstheme===1.1.0 juno-eol : icehouse-eol : havana-eol : grizzly-eol : folsom-eol : Change-Id: If32cb11f1bcd3aefdc3717d3e943b0fa15a42002
39 lines
1.2 KiB
Bash
Executable File
39 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
# Note(tonyb): Expand HEAD into something that's hopefully more human
|
|
# readable
|
|
declare -a refs=($(git describe --always) origin/master)
|
|
refs+=($(git branch --no-color -r --list 'origin/stable/*'))
|
|
refs+=($(git tag --list '*-eol' | sort -r))
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: $0 dependency-name" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
function search {
|
|
git grep -hEi "^${1}[=><!]" "${2}:${3}" 2>/dev/null
|
|
}
|
|
|
|
printf '\nRequirements\n------------\n'
|
|
for ref in ${refs[@]}; do
|
|
printf "%-22s: %s\n" $ref "$(search $1 $ref global-requirements.txt)"
|
|
done
|
|
|
|
printf '\nConstraints\n-----------\n'
|
|
for ref in ${refs[@]}; do
|
|
printf "%-22s: %s\n" $ref "$(search $1 $ref upper-constraints.txt)"
|
|
done
|