#!/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.

: ${DEBATHENA_APT=/mit/debathena/apt}

for dist in sarge etch lenny dapper edgy feisty gutsy; do
    reprepro -Vb $DEBATHENA_APT --ignore=wrongdistribution include "$dist" "$1"
done
