#!/bin/sh # Usage: daequivsupload CHANGESFILE # Adds an equivs-generated package to all dists. Since equivs-built # packages are very simple, there is no need to build them separately # for each dist. for dist in sarge etch lenny dapper edgy feisty gutsy; do reprepro -Vb /mit/debathena/apt --ignore=wrongdistribution include "$dist" "$1" done