2006-06-20 13:24:08 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
2007-10-20 03:05:04 +03:00
|
|
|
# check for SVN revision number
|
2009-02-25 01:10:36 +02:00
|
|
|
revision=$(cat snapshot_version 2> /dev/null)
|
2009-02-25 01:04:52 +02:00
|
|
|
test $revision || revision=$(cd "$1" && LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2)
|
2009-02-25 00:54:58 +02:00
|
|
|
test $revision || revision=$(cd "$1" && grep revision .svn/entries 2>/dev/null | cut -d '"' -f2)
|
|
|
|
test $revision || revision=$(cd "$1" && sed -n -e '/^dir$/{n;p;q}' .svn/entries 2>/dev/null)
|
2007-10-20 03:05:04 +03:00
|
|
|
test $revision && revision=SVN-r$revision
|
2006-06-23 18:07:35 +03:00
|
|
|
|
2007-10-20 03:07:48 +03:00
|
|
|
# check for git short hash
|
|
|
|
if ! test $revision; then
|
2009-02-25 00:54:58 +02:00
|
|
|
revision=$(cd "$1" && git log -1 --pretty=format:%h)
|
2007-10-20 03:07:48 +03:00
|
|
|
test $revision && revision=git-$revision
|
|
|
|
fi
|
|
|
|
|
2009-03-06 01:17:11 +02:00
|
|
|
# no revision number found
|
2007-10-20 03:05:04 +03:00
|
|
|
test $revision || revision=UNKNOWN
|
|
|
|
|
2009-03-06 01:17:11 +02:00
|
|
|
# releases extract the version number from the VERSION file
|
|
|
|
version=$(cat VERSION 2> /dev/null)
|
|
|
|
test $version || version=$revision
|
2008-09-27 00:37:50 +03:00
|
|
|
|
2009-03-06 01:17:11 +02:00
|
|
|
test -n "$3" && version=$version-$3
|
|
|
|
|
|
|
|
NEW_REVISION="#define FFMPEG_VERSION \"$version\""
|
2009-02-25 00:54:58 +02:00
|
|
|
OLD_REVISION=$(cat version.h 2> /dev/null)
|
2006-06-20 13:24:08 +03:00
|
|
|
|
|
|
|
# Update version.h only on revision changes to avoid spurious rebuilds
|
|
|
|
if test "$NEW_REVISION" != "$OLD_REVISION"; then
|
2008-06-19 19:57:38 +03:00
|
|
|
echo "$NEW_REVISION" > "$2"
|
2006-06-20 13:24:08 +03:00
|
|
|
fi
|