~ubuntu-branches/ubuntu/maverick/tomcat6/maverick-updates

« back to all changes in this revision

Viewing changes to debian/orig-tar.sh

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2010-01-23 19:40:38 UTC
  • mfrom: (2.2.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100123194038-0tnrf6kiy0wrjrw9
Tags: 6.0.20-dfsg1-1
* Fix debian/orig-tar.sh to exclude binary only standard.jar and jstl.jar.
  (Closes: #528119)
* Upload a cleaned tarball.
* Add ${misc:Depends} in debian/control.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
VERSION=$2
4
4
TAR=../tomcat6_$VERSION.orig.tar.gz
5
5
DIR=tomcat6-$VERSION
6
 
TAG=$(echo TOMCAT-$VERSION | sed 's/./_/g')
 
6
TAG=$(echo TOMCAT_$VERSION | sed -e 's/\./_/g')
7
7
 
8
8
svn export http://svn.apache.org/repos/asf/tomcat/tc6.0.x/tags/$TAG $DIR
9
 
tar -c -z -f $TAR $DIR
 
9
tar -c -z -f $TAR --exclude 'standard.jar' --exclude 'jstl.jar' $DIR
10
10
rm -rf $DIR ../$TAG
11
11
 
12
12
# move to directory 'tarballs'