2006-06-20 10:24:08 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2007-10-20 00:07:48 +00:00
|
|
|
# check for git short hash
|
2010-10-06 14:36:58 +00:00
|
|
|
if ! test "$revision"; then
|
2011-02-01 11:19:49 +00:00
|
|
|
revision=$(cd "$1" && git describe --tags --match N 2> /dev/null)
|
2007-10-20 00:07:48 +00:00
|
|
|
fi
|
|
|
|
|
2011-07-21 13:16:12 +00:00
|
|
|
# Shallow Git clones (--depth) do not have the N tag:
|
|
|
|
# use 'git-YYYY-MM-DD-hhhhhhh'.
|
|
|
|
test "$revision" || revision=$(cd "$1" &&
|
|
|
|
git log -1 --pretty=format:"git-%cd-%h" --date=short 2> /dev/null)
|
|
|
|
|
|
|
|
# Snapshots from gitweb are in a directory called ffmpeg-hhhhhhh or
|
|
|
|
# ffmpeg-HEAD-hhhhhhh.
|
|
|
|
if [ -z "$revision" ]; then
|
|
|
|
srcdir=$(cd "$1" && pwd)
|
|
|
|
case "$srcdir" in
|
|
|
|
*/ffmpeg-[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f])
|
|
|
|
git_hash="${srcdir##*-}";;
|
|
|
|
*/ffmpeg-HEAD-[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f])
|
|
|
|
git_hash="${srcdir##*-}";;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2009-03-05 23:17:11 +00:00
|
|
|
# no revision number found
|
2011-06-19 17:51:20 +00:00
|
|
|
test "$revision" || revision=$(cd "$1" && cat RELEASE 2> /dev/null)
|
2007-10-20 00:05:04 +00:00
|
|
|
|
2011-07-21 13:16:12 +00:00
|
|
|
# Append the Git hash if we have one
|
|
|
|
test "$revision" && test "$git_hash" && revision="$revision-$git_hash"
|
|
|
|
|
2009-03-05 23:17:11 +00:00
|
|
|
# releases extract the version number from the VERSION file
|
2010-01-07 19:23:50 +00:00
|
|
|
version=$(cd "$1" && cat VERSION 2> /dev/null)
|
2010-10-06 14:36:58 +00:00
|
|
|
test "$version" || version=$revision
|
2008-09-26 21:37:50 +00:00
|
|
|
|
2009-03-05 23:17:11 +00:00
|
|
|
test -n "$3" && version=$version-$3
|
|
|
|
|
2010-07-26 23:43:59 +00:00
|
|
|
if [ -z "$2" ]; then
|
|
|
|
echo "$version"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2011-03-17 15:57:37 +00:00
|
|
|
NEW_REVISION="#define FFMPEG_VERSION \"$version\""
|
2009-02-24 22:54:58 +00:00
|
|
|
OLD_REVISION=$(cat version.h 2> /dev/null)
|
2006-06-20 10:24:08 +00:00
|
|
|
|
|
|
|
# Update version.h only on revision changes to avoid spurious rebuilds
|
|
|
|
if test "$NEW_REVISION" != "$OLD_REVISION"; then
|
2008-06-19 16:57:38 +00:00
|
|
|
echo "$NEW_REVISION" > "$2"
|
2006-06-20 10:24:08 +00:00
|
|
|
fi
|