#!/bin/sh set -e changelog="$1" shift for p in $@; do pull-lp-source $p (cd $p-*; dch -D yakkety --rebuild "No-change rebuild against $changelog"; dch -r ''; debuild --no-lintian -S -nc) dput ${p}_*_source.changes done