Remove Ubuntu intrepid, hardy, gutsy, jaunty.
[git-tools-moved-to-github.git] / id-deb-build / pbuilderrc
1 # The distribution should be correct in your changelog file.
2 # Uncomment this line to use the one listed there:
3 # https://wiki.ubuntu.com/PbuilderHowto
4 #DIST=`dpkg-parsechangelog | awk '/^Distribution: / {print $2}'`
5
6 : ${DIST:=$(lsb_release --short --codename)}
7 : ${ARCH:=$(dpkg --print-architecture)}
8 NAME="$DIST-$ARCH"
9 DISTRIBUTION="$DIST"
10 # We avoid keyring in assignment below. bug 4122
11 DEBOOTSTRAPOPTS=("--arch" "$ARCH" --variant=buildd)
12 BASETGZ="`dirname $BASETGZ`/$NAME-base.tgz"
13 #BUILDRESULT="/var/cache/pbuilder/$NAME/result/"
14 BUILDRESULT="$NAME"
15 APTCACHE="/var/cache/pbuilder/$NAME/aptcache/"
16
17 # http://releases.ubuntu.com/releases/
18 case "$DIST" in
19     natty|maverick|lucid|karmic) # ubuntu specific
20         # MIRRORSITE="http://ftp.df.lth.se/ubuntu/"
21         MIRRORSITE="http://mirrors.telianet.dk/ubuntu/"
22         # MIRRORSITE="http://mirrors.kernel.org/ubuntu/"
23         COMPONENTS="main restricted universe multiverse"
24         OTHERMIRROR="deb http://ftp.indexdata.dk/ubuntu $DIST main"
25         ;;
26     wheezy|squeeze|lenny|etch) # debian specific
27         MIRRORSITE="http://ftp.se.debian.org/debian/"
28         COMPONENTS="main contrib non-free"
29         OTHERMIRROR="deb http://ftp.indexdata.dk/debian $DIST main"
30         ;;
31     *)
32         echo "Unknown distribution: $DIST"
33         exit 1
34         ;;
35 esac