~ubuntu-branches/ubuntu/quantal/freehep-io/quantal

« back to all changes in this revision

Viewing changes to debian/orig-tar.sh

  • Committer: Package Import Robot
  • Author(s): Torsten Werner, Giovanni Mascellani, Torsten Werner
  • Date: 2011-08-31 13:24:44 UTC
  • Revision ID: package-import@ubuntu.com-20110831132444-y2vxnsvabzkl0erc
Tags: 2.0.2-4
* Team upload

[ Giovanni Mascellani ]
* default-jdk moved from Build-Depends-Indep to Build-Depends
* Added real watch file
* Fixed my email address.

[ Torsten Werner ]
* Remove Java runtime from Depends.
* Update Standards-Version: 3.9.1.
* Switch to source format 3.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
VERSION=$2
 
4
DOWNLOADED_FILE=$3
 
5
PACKAGE=$(dpkg-parsechangelog | sed -n 's/^Source: //p')
 
6
TAR=../${PACKAGE}_${VERSION}.orig.tar.gz
 
7
DIR=${PACKAGE}-${VERSION}
 
8
 
 
9
svn export svn://svn.freehep.org/svn/freehep/tags/$PACKAGE-$VERSION $DIR
 
10
GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude '*.class' $DIR
 
11
rm -rf $DIR
 
12
 
 
13
rm -f $DOWNLOADED_FILE
 
14