File: orig-tar.sh

package info (click to toggle)
plexus-bsh-factory 1.0~alpha7-4.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 148 kB
  • sloc: xml: 302; java: 172; sh: 12; makefile: 4
file content (17 lines) | stat: -rwxr-xr-x 455 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e

VERSION=$2
TAR=../plexus-bsh-factory_$VERSION.orig.tar.gz
DIR=plexus-bsh-factory-$VERSION
TAG=$(echo "plexus-bsh-factory-$VERSION" | sed 's,~\(alpha\|beta\),-\1-,' | sed 's/alpha-7/alpha-7-SNAPSHOT/')

svn export http://svn.codehaus.org/plexus/tags/$TAG/ $DIR
tar -c -z -f $TAR $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