1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
#!/bin/sh
#
# Copyright (c) 2004-2006 The Trustees of Indiana University and Indiana
# University Research and Technology
# Corporation. All rights reserved.
# Copyright (c) 2004-2005 The University of Tennessee and The University
# of Tennessee Research Foundation. All rights
# reserved.
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008-2020 Cisco Systems, Inc. All rights reserved
# Copyright (c) 2015-2020 Intel, Inc. All rights reserved.
# Copyright (c) 2021-2022 IBM Corporation. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
# PMIX_GET_VERSION(version_file, variable_prefix)
# -----------------------------------------------
# parse version_file for version information, setting
# the following shell variables:
#
# prefix_VERSION
# prefix_BASE_VERSION
# prefix_MAJOR_VERSION
# prefix_MINOR_VERSION
# prefix_RELEASE_VERSION
# prefix_GREEK_VERSION
# prefix_REPO_REV
# prefix_TARBALL_VERSION
# prefix_RELEASE_DATE
srcfile="$1"
option="$2"
if test -z "$srcfile"; then
option="--help"
else
if test -f "$srcfile"; then
srcdir=`dirname $srcfile`
pmix_vers=`sed -n "
t clear
: clear
s/^major/PMIX_MAJOR_VERSION/
s/^minor/PMIX_MINOR_VERSION/
s/^release/PMIX_RELEASE_VERSION/
s/^greek/PMIX_GREEK_VERSION/
s/^std_major/PMIX_STD_MAJOR_VERSION/
s/^std_minor/PMIX_STD_MINOR_VERSION/
s/^std_abi_stable/PMIX_STD_ABI_STABLE_VERSION/
s/^std_abi_provisional/PMIX_STD_ABI_PROVISIONAL_VERSION/
s/^repo_rev/PMIX_REPO_REV/
s/^tarball_version/PMIX_TARBALL_VERSION/
s/^date/PMIX_RELEASE_DATE/
t print
b
: print
p" < "$srcfile"`
eval "$pmix_vers"
PMIX_VERSION="$PMIX_MAJOR_VERSION.$PMIX_MINOR_VERSION.$PMIX_RELEASE_VERSION"
PMIX_VERSION="${PMIX_VERSION}${PMIX_GREEK_VERSION}"
PMIX_STD_VERSION="$PMIX_STD_MAJOR_VERSION.$PMIX_STD_MINOR_VERSION"
PMIX_STD_ABI_STABLE_VERSION="$PMIX_STD_ABI_STABLE_VERSION"
PMIX_STD_ABI_PROVISIONAL_VERSION="$PMIX_STD_ABI_PROVISIONAL_VERSION"
if test "$PMIX_TARBALL_VERSION" = ""; then
PMIX_TARBALL_VERSION=$PMIX_VERSION
fi
# If repo_rev was not set in the VERSION file, then get it now
if test "$PMIX_REPO_REV" = ""; then
# See if we can find the "git" command.
git_happy=0
git --version > /dev/null 2>&1
if test $? -eq 0; then
git_happy=1
fi
# If we're in a git repo and we found the git command, use
# git describe to get the repo rev
if test -r "$srcdir/.git" && test $git_happy -eq 1; then
if test "$srcdir" != "`pwd`"; then
git_save_dir=`pwd`
cd "$srcdir"
PMIX_REPO_REV=`git describe --tags --always`
cd "$git_save_dir"
unset git_save_dir
else
PMIX_REPO_REV=`git describe --tags --always`
fi
else
PMIX_REPO_REV=`$srcdir/config/getdate.sh '+%Y-%m-%d'`
fi
fi
fi
if test "$option" = ""; then
option="--full"
fi
fi
case "$option" in
--full|-v|--version)
echo $PMIX_VERSION
;;
--major)
echo $PMIX_MAJOR_VERSION
;;
--minor)
echo $PMIX_MINOR_VERSION
;;
--release)
echo $PMIX_RELEASE_VERSION
;;
--greek)
echo $PMIX_GREEK_VERSION
;;
--std-version)
echo $PMIX_STD_VERSION
;;
--std-abi-stable-version)
echo $PMIX_STD_ABI_STABLE_VERSION
;;
--std-abi-provisional-version)
echo $PMIX_STD_ABI_PROVISIONAL_VERSION
;;
--repo-rev)
echo $PMIX_REPO_REV
;;
--tarball)
echo $PMIX_TARBALL_VERSION
;;
--release-date)
echo $PMIX_RELEASE_DATE
;;
--all)
echo ${PMIX_VERSION} : ${PMIX_MAJOR_VERSION} : ${PMIX_MINOR_VERSION} : ${PMIX_RELEASE_VERSION} : ${PMIX_GREEK_VERSION} : ${PMIX_REPO_REV} : ${PMIX_TARBALL_VERSION}
;;
-h|--help)
cat <<EOF
$0 <srcfile> <option>
<srcfile> - Text version file
<option> - One of:
--full - Full version number
--major - Major version number
--minor - Minor version number
--release - Release version number
--greek - Greek (alpha, beta, etc) version number
--repo-rev - Repository version
--tarball - Show tarball filename version string
--all - Show all version numbers, separated by :
--release-date - Show the release date
--help - This message
EOF
;;
*)
echo "Unrecognized option $option. Run $0 --help for options"
;;
esac
# All done
exit 0
|