summaryrefslogtreecommitdiffstats
path: root/debian/_buildscripts/local/internals/distro_list.txt
blob: d1961791eaf8ed63b869e584123421acda216294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash

# List of supported distributions
#
# Format:
#  distro name
#  distro version number
#  distro version name
#  package suffix if required
#  tde/packaging corresponding path if required
#
DISTROS="
	# -- debian --
  debian     7.0    wheezy            ''  ''
  debian     8.0    jessie            ''  ''
  debian     9.0    stretch           ''  ''
  debian    10.0    buster            ''  ''
  debian    11.0    bullseye          ~a  ''
  debian    12.0    sid               ~b  ''
	# -- devuan --                                                 
  devuan     1.0    jessie            ''  debian/jessie
  devuan     2.0    ascii             ''  debian/stretch
  devuan     3.0    beowulf           ~a  debian/buster
  devuan     4.0    ceres             ~b  debian/sid
	# -- raspbian --                                  
  raspbian   8.0    raspbian-jessie   ''  ''
  raspbian   9.0    raspbian-stretch  ''  ''
  raspbian  10.0    raspbian-buster   ~a  ''
	# -- ubuntu --                      
  ubuntu    12.04   precise           ''  ''
  ubuntu    14.04   trusty            ''  ''
  ubuntu    16.04   xenial            ''  ''
  ubuntu    17.10   artful            ''  ''
  ubuntu    18.04   bionic            ''  ''
  ubuntu    18.10   cosmic            ''  ''
  ubuntu    19.04   disco             ''  ''
  ubuntu    19.10   eoan              ~a  ''
"