[asterisk-commits] trunk - commit revision 7207
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Sun Nov 27 21:59:40 CST 2005
Author: kpfleming
Date: Sun Nov 27 21:59:39 2005
New Revision: 7207
URL: http://svn.digium.com/view/asterisk?rev=7207&view=rev
Log:
make version-string computation based on SVN branch/revision numbers
Added:
trunk/build_tools/make_svn_branch_name (with props)
Modified:
trunk/Makefile
Modified: trunk/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/Makefile?rev=7207&r1=7206&r2=7207&view=diff
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Sun Nov 27 21:59:39 2005
@@ -305,22 +305,26 @@
LIBEDIT=editline/libedit.a
ifneq ($(wildcard .version),)
- ASTERISKVERSION=$(shell cat .version)
- ASTERISKVERSIONNUM=$(shell awk -F. '{printf "%02d%02d%02d", $$1, $$2, $$3}' .version)
- RPMVERSION=$(shell sed 's/[-\/:]/_/g' .version)
+ ASTERISKVERSION:=$(shell cat .version)
+ ASTERISKVERSIONNUM:=$(shell awk -F. '{printf "%02d%02d%02d", $$1, $$2, $$3}' .version)
+ RPMVERSION:=$(shell sed 's/[-\/:]/_/g' .version)
else
RPMVERSION=unknown
endif
-ifneq ($(wildcard CVS),)
+# CVS mirrors of SVN have .svnrevision files showing
+# which SVN revision they are based on, and .svnbranch
+# showing the branch they are made from
+ifneq ($(wildcard .svnrevision),)
ASTERISKVERSIONNUM=999999
- ifneq ($(wildcard CVS/Tag),)
- ASTERISKVERSION=$(shell echo "CVS-`sed 's/^T//g' CVS/Tag`-`date +"%D-%T"`")
+ ASTERISKVERSION:=SVN-$(shell cat .svnbranch)-r$(shell cat .svnrevision)
+else
+ ifneq ($(wildcard .svn),)
+ ASTERISKVERSIONNUM=999999
+ ASTERISKVERSION=SVN-$(shell build_tools/make_svn_branch_name)
else
- ASTERISKVERSION=CVS HEAD
+ ASTERISKVERSIONNUM=000000
endif
-else
- ASTERISKVERSIONNUM=000000
endif
ASTCFLAGS+= $(DEBUG_THREADS)
Added: trunk/build_tools/make_svn_branch_name
URL: http://svn.digium.com/view/asterisk/trunk/build_tools/make_svn_branch_name?rev=7207&view=auto
==============================================================================
--- trunk/build_tools/make_svn_branch_name (added)
+++ trunk/build_tools/make_svn_branch_name Sun Nov 27 21:59:39 2005
@@ -1,0 +1,50 @@
+#!/bin/sh
+
+PARTS=`svn info | grep URL | awk '{print $2;}' | sed -e s:^.*/svn/asterisk/:: | sed -e 's:/: :'`
+BRANCH=0
+TEAM=0
+
+REV=`svn info | grep -e 'Last Changed Rev' | awk '{print $4;}'`
+
+if [ "${PARTS}" == "trunk" ]
+then
+ echo 'trunk'-r${REV}
+ exit 0
+fi
+
+for PART in $PARTS
+do
+ if [ ${BRANCH} != 0 ]
+ then
+ RESULT="${RESULT}-${PART}"
+ break
+ fi
+
+ if [ ${TEAM} != 0 ]
+ then
+ RESULT="${RESULT}-${PART}"
+ continue
+ fi
+
+ if [ "${PART}" == "branches" ]
+ then
+ BRANCH=1
+ RESULT="branch"
+ continue
+ fi
+
+ if [ "${PART}" == "tags" ]
+ then
+ BRANCH=1
+ RESULT="tag"
+ continue
+ fi
+
+ if [ "${PART}" == "team" ]
+ then
+ TEAM=1
+ continue
+ fi
+done
+
+echo ${RESULT}-r${REV}
Propchange: trunk/build_tools/make_svn_branch_name
------------------------------------------------------------------------------
svn:executable = *
More information about the asterisk-commits
mailing list