File: orig-tar.sh

package info (click to toggle)
geronimo-concurrent-1.0-spec 1.0~alpha-1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 160 kB
  • sloc: java: 202; xml: 47; sh: 7; makefile: 5
file content (14 lines) | stat: -rwxr-xr-x 502 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -e
#
# Removes unwanted content from the upstream sources.
# Called by uscan with '--upstream-version' <version> <file>
#

VERSION=$2
TAR=../geronimo-concurrent-1.0-spec_$VERSION.orig.tar.xz
DIR=geronimo-concurrent-1.0-spec-$VERSION
TAG=$(echo "geronimo-concurrent_1.0_spec-$VERSION" | sed -re's/~(alpha|beta|rc)/-\1/')

svn export http://svn.apache.org/repos/asf/geronimo/specs/tags/${TAG}/ $DIR
XZ_OPT=--best tar -c -J -f $TAR --exclude '*.jar' --exclude '*.class' $DIR
rm -rf $DIR ../$TAG