File: orig-tar.sh

package info (click to toggle)
stax-ex 1.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 348 kB
  • ctags: 200
  • sloc: java: 523; xml: 195; sh: 19; makefile: 4
file content (24 lines) | stat: -rwxr-xr-x 597 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
#!/bin/sh -e

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

svn export https://svn.java.net/svn/stax-ex~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' \
    $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