aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/gbp-svn-tag
blob: 20431dd2c55bd11ae3321ba98471ee1c5f616bfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
#
# Helper script to tag a version in SVN if using git-svn(1)

DIST=$(dpkg-parsechangelog | awk "/^Distribution:/{ print \$2; }")
VERSION=$(dpkg-parsechangelog | awk "/^Version:/{ print \$2; }")
PKG=$(dpkg-parsechangelog | awk "/^Source:/{ print \$2; }")


if [ "$DIST" = "UNRELEASED" ]; then
    echo "Distribution is unreleased"
    exit 1
elif [ -z "$VERSION" ]; then
    echo "Can't read package version"
    exit 1
fi

git svn tag -m"Tagging $PKG ($VERSION)" $VERSION