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

Revision 24318, 554 bytes checked in by broder, 14 years ago (diff)
Now that DebianImportFreeze has passed, prep for building Lucid packages.
  • Property svn:executable set to *
RevLine 
[22739]1#!/bin/sh
[24090]2DEBIAN_CODES="etch lenny squeeze hardy intrepid jaunty karmic"
[22739]3gettag() {
4    case "$1" in
5        etch)
6            echo "~debian4.0"
7            ;;
8        lenny)
[23471]9            echo "~debian5.0"
[22739]10            ;;
[23471]11        squeeze)
[24194]12            echo "~debian6.0~0.2"
[23471]13            ;;
[22739]14        hardy)
[22947]15            echo "~ubuntu8.04"
[22739]16            ;;
[23219]17        intrepid)
18            echo "~ubuntu8.10"
19            ;;
[23471]20        jaunty)
[23757]21            echo "~ubuntu9.04"
[23471]22            ;;
[23897]23        karmic)
[24142]24            echo "~ubuntu9.10"
[23897]25            ;;
[24318]26        lucid)
27            echo "~ubuntu10.04~0.1"
28            ;;
[22739]29        versions)
30            echo "$DEBIAN_CODES"
31            ;;
32        *)
33            echo "error"
[23748]34            return 1
[22739]35            ;;
36    esac
37}
Note: See TracBrowser for help on using the repository browser.