File: orig-tar.sh

package info (click to toggle)
maven-install-plugin 2.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 812 kB
  • ctags: 155
  • sloc: xml: 1,633; java: 1,364; sh: 12; makefile: 5
file content (16 lines) | stat: -rwxr-xr-x 477 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e

VERSION=$2
TAR=../maven-install-plugin_$VERSION.orig.tar.xz
DIR=maven-install-plugin-$VERSION
TAG=$(echo "maven-install-plugin-$VERSION" | sed -re's/~(alpha|beta)/-\1-/')

svn export http://svn.apache.org/repos/asf/maven/plugins/tags/${TAG}/ $DIR
XZ_OPT=--best tar -c -J -f $TAR --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