File: orig-tar.sh

package info (click to toggle)
plexus-io 1.0~alpha5-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 344 kB
  • ctags: 572
  • sloc: java: 2,945; xml: 137; makefile: 17; sh: 11
file content (16 lines) | stat: -rw-r--r-- 371 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e

TAR=../plexus-io_$2.orig.tar.gz
DIR=plexus-io-$2
TAG=$(echo plexus-io-$2 | sed 's,~alpha,-alpha-,')

svn export http://svn.codehaus.org/plexus/plexus-components/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