From 01896ce33536f7edef54df7de0649d49d79ae2da Mon Sep 17 00:00:00 2001 From: Tzafrir Cohen Date: Tue, 3 Aug 2010 16:31:08 +0300 Subject: install version script to all projects ("all" - asterisk, dahdi-linux, dahdi-tools, libpri ATM. See also PROJ_PAT in version_hack) * Adapt version_hack to also work with other projects - a slightly more complex sed. * Other minor fixes. * Install it (in the setup) by default as a post-checkout and post-merge script, to have .version updated on checkout and on pull. --- setup | 7 +++++++ version_hook | 12 +++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/setup b/setup index 4802fb9..e9a1e2a 100755 --- a/setup +++ b/setup @@ -43,4 +43,11 @@ esac ln -s $TOOLS_DIR/AUTHORS . git config --add svn.authorsfile AUTHORS +# Make sure we have a proper .version file after checkout / pull +for hook in post-checout post-merge; do + if [ ! -r .git/hooks/$hook ]; then + ln -s ../../$TOOLS_DIR/version_hook .git/hooks/$hook + fi +done + ln -s $TOOLS_DIR/${name}_gitignore .gitignore diff --git a/version_hook b/version_hook index bcadcfa..e3a813a 100755 --- a/version_hook +++ b/version_hook @@ -3,12 +3,14 @@ # version_hook: set a .version file in a git repository based on a # svn.asterisk.org SVN repository -# FIXME: any way to detect that? -PROJECT="dahdi/linux" +# Originally by Shaun Ruffel + +# FIXME: Nicer formatting. Preprocess? +PROJ_PAT="\(dahdi/linux\|dahdi/tools\|asterisk\/libpri\)" # Do not update the .version file if it's part of the repository -git ls-files | grep ^\.version -if [ $? -eq 0 ]; then +# This normally means we're on a tags/ branch. +if git ls-files | grep -q ^\.version; then exit 0 fi @@ -25,7 +27,7 @@ if [ -z "$SVN_REV" ]; then exit 0 fi -PARTS=`LANG=C git log --pretty=full | grep git-svn | head -1 | awk '{print $2;}' | sed -e s:^.*/svn/${PROJECT}/:: | sed -e 's:/: :g' | sed -e 's/@.*$//g'` +PARTS=`LANG=C git log --pretty=full | grep '^ *git-svn-id:' | head -1 | awk '{print $2;}' | sed -e "s:^.*/svn/${PROJ_PAT}/::" -e 's:/: :g' -e 's/@.*$//g'` BRANCH=0 TEAM=0 -- cgit v1.2.3