File: orig-tar.sh

package info (click to toggle)
libjoda-time-java 2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 11,832 kB
  • sloc: java: 80,804; xml: 6,062; sh: 11; makefile: 5
file content (16 lines) | stat: -rwxr-xr-x 465 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e

VERSION=$2
TAR=../libjoda-time-java_$VERSION.orig.tar.gz
DIR=libjoda-time-java-$VERSION
TAG=$(echo "v${VERSION}00" | sed -e's,\.,_,g')

svn export http://joda-time.svn.sourceforge.net/svnroot/joda-time/tags/${TAG} $DIR
GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude '*.class' $DIR
rm -rf $DIR ../$TAG

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