File: make_version

package info (click to toggle)
asterisk 1%3A1.8.13.1~dfsg1-3%2Bdeb7u3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 49,336 kB
  • sloc: ansic: 497,975; sh: 11,763; cpp: 5,934; makefile: 3,065; perl: 3,019; yacc: 2,147; xml: 498; sql: 387; tcl: 113; php: 62; python: 42
file content (79 lines) | stat: -rwxr-xr-x 1,820 bytes parent folder | download | duplicates (2)
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
73
74
75
76
77
78
79
#!/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/asterisk/::' | sed -e 's:/: :g'`
    BRANCH=0
    TEAM=0
    TAG=0

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

    INTEGRATED=`LANG=C svn pg automerge-propname ${1}`
    if [ -z "${INTEGRATED}" ] ; then
        INTEGRATED=svnmerge-integrated
    fi

    BASE=`LANG=C svn pg ${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
else
    echo "UNKNOWN__and_probably_unsupported"
fi