summaryrefslogtreecommitdiffstats
path: root/debian/orig-tar.sh
blob: 04b29047e8aab7a4b577007b822e008bd87b329c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

set -e

SVNROOT=$1
VERSION=$2
REVISION=`svn info ${SVNROOT} | grep "Last Changed Rev:" | cut -d' ' -f4`

DIR=kbuild-${REVISION}
TAR=../kbuild_${VERSION}.orig.tar.gz

svn co -r ${REVISION} ${SVNROOT} ${DIR}
tar -c -z  --exclude '*/src/kWorker/tests-gpl2/*' --exclude '*/kBuild/bin*' --exclude '*/out/*' --exclude '*/.svn*' --exclude '*/src/kmk/doc/make.texi' -f ${TAR} ${DIR}
rm -rf ${DIR}

# move to directory 'tarballs'
if [ -r .svn/deb-layout ]; then
  . .svn/deb-layout
  mv ${TAR} ${origDir}
  echo "moved ${TAR} to ${origDir}"
fi

echo "Done, now you can run \ngbp import-orig ${TAR}"