File: make_version

package info (click to toggle)
libss7 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 324 kB
  • ctags: 863
  • sloc: ansic: 5,499; makefile: 138; sh: 60
file content (72 lines) | stat: -rwxr-xr-x 1,424 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/bin/sh

if [ -f ${1}/.version ]; then
	cat ${1}/.version
elif [ -d .svn ]; then
    PARTS=`LANG=C svn info ${1} | ${GREP} URL | ${AWK} '{print $2;}' | sed -e 's:^.*/svn/libss7/::' | sed -e 's:/: :g'`
    BRANCH=0
    TEAM=0
    TAG=0

    REV=`svnversion -c ${1} | cut -d: -f2`

    BASE=`LANG=C svn pg svnmerge-integrated ${1} | cut -d: -f1`

	if [ "${PARTS}" = "trunk" ] ; then
	echo SVN-trunk-r${REV}
	exit 0
	fi

    for PART in $PARTS ; do
      if [ ${TAG} != 0 ] ; then
	    if [ "${PART}" = "autotag_for_be" ] ; then
	      continue
	    fi
	    if [ "${PART}" = "autotag_for_sx00i" ] ; then
	      continue
	    fi
	    RESULT="${PART}"
	    break
      fi

      if [ ${BRANCH} != 0 ] ; then
        if [ -z ${RESULT} ] ; then
          RESULT="${PART}"
        else
          RESULT="${RESULT}-${PART}"
        fi
	    break
      fi

      if [ ${TEAM} != 0 ] ; then
        if [ -z ${RESULT} ] ; then
           RESULT="${PART}"
        else
          RESULT="${RESULT}-${PART}"
        fi
        continue
      fi

      if [ "${PART}" = "branches" ] ; then
        BRANCH=1
        RESULT="branch"
        continue
      fi

      if [ "${PART}" = "tags" ] ; then
        TAG=1
        continue
      fi

      if [ "${PART}" = "team" ] ; then
        TEAM=1
        continue
      fi
    done

    if [ ${TAG} != 0 ] ; then
	echo ${RESULT}
    else
	echo SVN-${RESULT}-r${REV}${BASE:+-${BASE}}
    fi
fi