Binary files /tmp/HvL75r9Rn7/openchange-0.11/buildtools/waf and /tmp/H2L2PeHysG/openchange-0.11.dfsg1/buildtools/waf differ diff -Nru openchange-0.11/debian/changelog openchange-0.11.dfsg1/debian/changelog --- openchange-0.11/debian/changelog 2011-09-28 12:41:53.000000000 +0000 +++ openchange-0.11.dfsg1/debian/changelog 2012-02-07 15:22:46.000000000 +0000 @@ -1,3 +1,9 @@ +openchange (1:0.11.dfsg1-1) unstable; urgency=low + + * Repack orig tarball to exclude waf. Closes: #654494 + + -- Jelmer Vernooij Tue, 07 Feb 2012 16:21:04 +0100 + openchange (1:0.11-2) unstable; urgency=low * Upload to unstable. diff -Nru openchange-0.11/mapiproxy/libmapistore/configure openchange-0.11.dfsg1/mapiproxy/libmapistore/configure --- openchange-0.11/mapiproxy/libmapistore/configure 2011-02-16 23:04:06.000000000 +0000 +++ openchange-0.11.dfsg1/mapiproxy/libmapistore/configure 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -#!/bin/sh - -PREVPATH=`dirname $0` - -if [ -f $PREVPATH/../../buildtools/waf ]; then - WAF=../../buildtools/waf -elif [ -f $PREVPATH/buildtools/bin/waf ]; then - WAF=./buildtools/waf -else - echo "replace: Unable to find waf" - exit 1 -fi - -# using JOBS=1 gives maximum compatibility with -# systems like AIX which have broken threading in python -JOBS=1 -export JOBS - -cd . || exit 1 -$WAF configure "$@" || exit 1 -cd $PREVPATH \ No newline at end of file diff -Nru openchange-0.11/mapiproxy/libmapistore/Makefile openchange-0.11.dfsg1/mapiproxy/libmapistore/Makefile --- openchange-0.11/mapiproxy/libmapistore/Makefile 2011-02-16 23:04:06.000000000 +0000 +++ openchange-0.11.dfsg1/mapiproxy/libmapistore/Makefile 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -# simple makefile wrapper to run waf - -WAF=WAF_MAKE=1 PATH=buildtools:../../buildtools:$$PATH waf - -all: - $(WAF) build - -install: - $(WAF) install - -uninstall: - $(WAF) uninstall - -dist: - touch .tmplock - WAFLOCK=.tmplock $(WAF) dist - -distcheck: - touch .tmplock - WAFLOCK=.tmplock $(WAF) distcheck - -clean: - $(WAF) clean - -distclean: - $(WAF) distclean - -reconfigure: configure - $(WAF) reconfigure - -show_waf_options: - $(WAF) --help - -pydoctor: - $(WAF) pydoctor - -bin/%:: FORCE - $(WAF) --targets=`basename $@` -FORCE: