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

Revision 25949, 586 bytes checked in by jdreed, 11 years ago (diff)
Raring releases tomorrow, add it to DEBIAN_CODES
  • Property svn:executable set to *
Line 
1#!/bin/sh
2DEBIAN_CODES="squeeze wheezy lucid oneiric precise quantal raring"
3gettag() {
4    case "$1" in
5        squeeze)
6            echo "~debian6.0"
7            ;;
8        wheezy)
9            echo "~debian7.0~0.4"
10            ;;
11        hardy)
12            # Remove this at the end of April 2013
13            echo "~ubuntu8.04"
14            ;;
15        lucid)
16            echo "~ubuntu10.04"
17            ;;
18        oneiric)
19            echo "~ubuntu11.10"
20            ;;
21        precise)
22            echo "~ubuntu12.04"
23            ;;
24        quantal)
25            echo "~ubuntu12.10"
26            ;;
27        raring)
28            echo "~ubuntu13.04"
29            ;;
30        versions)
31            echo "$DEBIAN_CODES"
32            ;;
33        *)
34            echo "error"
35            return 1
36            ;;
37    esac
38}
Note: See TracBrowser for help on using the repository browser.