File: orig-tar.sh

package info (click to toggle)
portlet-api-2.0-spec 1.0-2.1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 612 kB
  • ctags: 720
  • sloc: java: 1,655; xml: 76; sh: 11; makefile: 4
file content (16 lines) | stat: -rwxr-xr-x 500 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e

VERSION=$2
TAR=../portlet-api-2.0-spec_$VERSION.orig.tar.gz
DIR=portlet-api-2.0-spec-$VERSION
TAG=$(echo "portlet-api_2.0_spec-$VERSION" | sed -re's/~(alpha|beta)/-\1-/')

svn export http://svn.apache.org/repos/asf/portals/portlet-spec/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