source: trunk/debathena/scripts/debian-versions.sh @ 25161

Revision 25161, 444 bytes checked in by jdreed, 13 years ago (diff)
No, really, stop building for karmic
  • Property svn:executable set to *
Line 
1#!/bin/sh
2DEBIAN_CODES="lenny squeeze hardy lucid maverick natty"
3gettag() {
4    case "$1" in
5        lenny)
6            echo "~debian5.0"
7            ;;
8        squeeze)
9            echo "~debian6.0~0.3"
10            ;;
11        hardy)
12            echo "~ubuntu8.04"
13            ;;
14        lucid)
15            echo "~ubuntu10.04"
16            ;;
17        maverick)
18            echo "~ubuntu10.10"
19            ;;
20        natty)
21            echo "~ubuntu11.04"
22            ;;
23        versions)
24            echo "$DEBIAN_CODES"
25            ;;
26        *)
27            echo "error"
28            return 1
29            ;;
30    esac
31}
Note: See TracBrowser for help on using the repository browser.