File: orig-tar.sh

package info (click to toggle)
maven-deploy-plugin 2.8.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 880 kB
  • ctags: 269
  • sloc: xml: 1,973; java: 1,811; sh: 8; makefile: 5
file content (10 lines) | stat: -rwxr-xr-x 316 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh -e

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

svn export https://svn.apache.org/repos/asf/maven/plugins/tags/${TAG}/ $DIR
XZ_OPT=--best tar -c -J -f $TAR $DIR
rm -rf $DIR ../$TAG