2010-05-12 13:27:55 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# ========= |
|
2013-12-11 16:09:41 +00:00
|
|
|
# \\ / F ield | foam-extend: Open Source CFD
|
2010-05-12 13:27:55 +00:00
|
|
|
# \\ / O peration |
|
2013-12-11 16:09:41 +00:00
|
|
|
# \\ / A nd | For copyright notice see file Copyright
|
2010-05-12 13:27:55 +00:00
|
|
|
# \\/ M anipulation |
|
2011-01-13 17:21:49 +00:00
|
|
|
#------------------------------------------------------------------------------
|
2010-05-12 13:27:55 +00:00
|
|
|
# License
|
2013-12-11 16:09:41 +00:00
|
|
|
# This file is part of foam-extend.
|
2010-05-12 13:27:55 +00:00
|
|
|
#
|
2013-12-11 16:09:41 +00:00
|
|
|
# foam-extend is free software: you can redistribute it and/or modify it
|
2010-05-12 13:27:55 +00:00
|
|
|
# under the terms of the GNU General Public License as published by the
|
2013-12-11 16:09:41 +00:00
|
|
|
# Free Software Foundation, either version 3 of the License, or (at your
|
2010-05-12 13:27:55 +00:00
|
|
|
# option) any later version.
|
|
|
|
#
|
2013-12-11 16:09:41 +00:00
|
|
|
# foam-extend is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
2010-05-12 13:27:55 +00:00
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2013-12-11 16:09:41 +00:00
|
|
|
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
2010-05-12 13:27:55 +00:00
|
|
|
#
|
|
|
|
# Script
|
|
|
|
# foamVersion
|
|
|
|
#
|
|
|
|
# Description
|
|
|
|
# Report on OpenFOAM version, and source code revision number.
|
|
|
|
# This implementation is using the Subversion revision control system
|
|
|
|
# for retrieving the revision number.
|
|
|
|
#
|
2013-07-18 01:02:34 +00:00
|
|
|
# Author:
|
2010-05-12 13:27:55 +00:00
|
|
|
# Martin Beaudoin, Hydro-Quebec, (2009)
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
Script=${0##*/}
|
|
|
|
|
|
|
|
usage() {
|
|
|
|
while [ "$#" -ge 1 ]; do echo "$1"; shift; done
|
|
|
|
cat<<USAGE
|
|
|
|
|
|
|
|
Usage: $Script [-revision] [-help]
|
|
|
|
|
|
|
|
Report on the version of OpenFOAM, and if available, the source code revision number.
|
|
|
|
|
2013-07-18 01:02:34 +00:00
|
|
|
If the source code revision number is not directly available, then the string
|
2010-05-12 13:27:55 +00:00
|
|
|
"exported" will be reported for the revision number.
|
|
|
|
|
2013-07-18 01:02:34 +00:00
|
|
|
Options:
|
2010-05-12 13:27:55 +00:00
|
|
|
-revision : Report only the revision number
|
|
|
|
-help : this help
|
|
|
|
|
|
|
|
USAGE
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Initialize the SVN client command
|
|
|
|
SVN_CMD='svn'
|
|
|
|
|
|
|
|
# initialize the Revision number to "exported" by default.
|
|
|
|
# This is the expected information reported by svnversion when the source code is not from a
|
|
|
|
# svn working copy
|
|
|
|
FOAM_DEV_SVN_REVISION_NUMBER="exported"
|
|
|
|
|
|
|
|
if [ -e $WM_PROJECT_DIR/.svn ]
|
|
|
|
then
|
|
|
|
# Check if a svn client in available
|
|
|
|
status=`$SVN_CMD --version --quiet >& /dev/null`
|
|
|
|
|
|
|
|
if [ "$?" -eq 0 ]
|
|
|
|
then
|
|
|
|
# We are not using svnversion here because it is recursive, and this can take a while.
|
|
|
|
#
|
|
|
|
# We are forcing LC_ALL=C in order to get rid of any locale variations in the ouput of
|
|
|
|
# the command $SVN_CMD
|
|
|
|
#
|
|
|
|
# We are grabbing the revision number associated to "Last Changed Rev:" for the svn repository
|
|
|
|
# branch associated with $WM_PROJECT_DIR. That way, we will not pickup changes in revision number
|
|
|
|
# coming from other parts of the Subversion repository.
|
|
|
|
#
|
|
|
|
FOAM_DEV_SVN_REVISION_NUMBER=`LC_ALL=C $SVN_CMD info $WM_PROJECT_DIR | grep "Last Changed Rev:" | awk '{print $4}'`;
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
-revision)
|
|
|
|
shift
|
2013-07-18 01:43:15 +00:00
|
|
|
# Only output the svn version number. Handy when called from Makefiles or scripts
|
2010-05-12 13:27:55 +00:00
|
|
|
echo $FOAM_DEV_SVN_REVISION_NUMBER
|
|
|
|
;;
|
|
|
|
-help)
|
|
|
|
shift
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
|
2013-07-18 01:43:15 +00:00
|
|
|
if [ $FOAM_DEV_SVN_REVISION_NUMBER ]
|
|
|
|
then
|
|
|
|
echo "OpenFOAM version $WM_PROJECT_VERSION, revision $FOAM_DEV_SVN_REVISION_NUMBER"
|
|
|
|
else
|
|
|
|
echo "OpenFOAM version $WM_PROJECT_VERSION"
|
|
|
|
fi
|
|
|
|
;;
|
2010-05-12 13:27:55 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|