#!/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. . $(dirname "$0")/debian-versions.sh : ${DEBATHENA_APT=/mit/debathena/apt} for code in $DEBIAN_CODES; do reprepro -Vb $DEBATHENA_APT --ignore=wrongdistribution include "$code" "$1" done