source: trunk/debathena/scripts/daequivsupload @ 22739

Revision 22739, 402 bytes checked in by tabbott, 16 years ago (diff)
Centralize database of Debathena supported codenames and their tags into a new script, debian-versions.sh. Many scripts can be cleaned up substantially once we drop sarge support.
  • 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
9source $(dirname "$0")/debian-versions.sh
10
11: ${DEBATHENA_APT=/mit/debathena/apt}
12
13for code in $DEBIAN_CODES; do
14    reprepro -Vb $DEBATHENA_APT --ignore=wrongdistribution include "$code" "$1"
15done
Note: See TracBrowser for help on using the repository browser.