source: trunk/debathena/scripts/daequivsupload @ 22700

Revision 22700, 387 bytes checked in by ghudson, 16 years ago (diff)
Allow apt repository location to be specified with $DEBATHENA_APT. The default value is the old hardcoded location /mit/debathena/apt. * debathena/scripts/dadch, debathena/scripts/daequivsupload, debathena/scripts/daupload-release: Set default value of $DEBATHENA_APT and use it in place ot /mit/debathena/apt.
  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3# Usage: daequivsupload CHANGESFILE
4
5# Adds an equivs-generated package to all dists.  Since equivs-built
6# packages are very simple, there is no need to build them separately
7# for each dist.
8
9: ${DEBATHENA_APT=/mit/debathena/apt}
10
11for dist in sarge etch lenny dapper edgy feisty gutsy; do
12    reprepro -Vb $DEBATHENA_APT --ignore=wrongdistribution include "$dist" "$1"
13done
Note: See TracBrowser for help on using the repository browser.