File: orig-tar.sh

package info (click to toggle)
xmlstreambuffer 1.5.4-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 544 kB
  • sloc: java: 4,546; xml: 301; sh: 20; makefile: 4
file content (25 lines) | stat: -rwxr-xr-x 647 bytes parent folder | download | duplicates (3)
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
#!/bin/sh -e

VERSION=$2
TAR=../xmlstreambuffer_$VERSION.orig.tar.xz
DIR=xmlstreambuffer-$VERSION
TAG=$(echo "streambuffer-$VERSION" | sed -re's/~(alpha|beta)/-\1-/')

svn export https://svn.java.net/svn/xmlstreambuffer~svn/tags/${TAG}/ $DIR
XZ_OPT=--best tar -c -J -f $TAR \
    --exclude '*.jar' \
    --exclude '*.class' \
    --exclude '*.ipr' \
    --exclude '*.iml' \
    --exclude '.settings' \
    --exclude '.project' \
    --exclude '.classpath' \
    --exclude '*.zip' \
 $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