[go: up one dir, main page]

File: orig-tar.sh

package info (click to toggle)
tiles-autotag 1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 936 kB
  • ctags: 615
  • sloc: java: 3,697; xml: 1,346; sh: 11; makefile: 4
file content (20 lines) | stat: -rwxr-xr-x 596 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh -e
#
# Removes unwanted content from the upstream sources.
# Called by uscan with '--upstream-version' <version> <file>
#

VERSION=$2
TAR=../tiles-autotag_$VERSION.orig.tar.xz
DIR=tiles-autotag-$VERSION
TAG=$(echo "tiles-autotag-$VERSION" | sed -re's/~(alpha|beta|rc)/-\1-/')

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