~ubuntu-branches/ubuntu/dapper/autofs/dapper

« back to all changes in this revision

Viewing changes to debian/scripts/source.unpack

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2005-10-06 14:42:32 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20051006144232-6h2yly3gss95xjfl
Tags: 4.1.4-8
* Added a debian/compat file instead of setting DH_COMPAT.
* When purging, check if /usr/bin/ucf exists, and don't use it if it
  doesn't. (Closes: #330556)
* Ship .md5sum files for ucf with the md5sums from the conffiles in sarge,
  so the user won't be asked by ucf on the initial upgrade from sarge to
  an ucf-enabled version. (Closes: #331688)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
mkdir -p $STAMP_DIR/upstream/tarballs/ $SOURCE_DIR
7
7
if [ ! -z "$SRC_TAR_DIR" -a -d "$SRC_TAR_DIR" ];then
8
 
        files=$(find $SRC_TAR_DIR -type f|sort)
 
8
        files=$(find $SRC_TAR_DIR -type f | grep -v CVS/ | sort)
9
9
else
10
10
        VER=$(dpkg-parsechangelog 2>&1|egrep ^Version|cut -d " " -f 2|cut -d "-" -f 1)
11
11
        SRC=$(dpkg-parsechangelog 2>&1|egrep ^Source|cut -d " " -f 2-)