1) added support for Devuan distros 2) added more command line options for update_repositories.sh 3) bug fixes and improved user feedback 4) added link inside ubuntu distro Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>pull/3/head
parent
5b6ed350a0
commit
7e05a8b13a
@ -1,31 +1,48 @@
|
||||
#!/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 5.0 lenny
|
||||
debian 6.0 squeeze
|
||||
debian 7.0 wheezy
|
||||
debian 8.0 jessie
|
||||
debian 9.0 stretch
|
||||
debian 10.0 buster ~a
|
||||
debian 10.0 sid ~b
|
||||
raspbian 7.0 raspbian-wheezy
|
||||
raspbian 8.0 raspbian-jessie
|
||||
ubuntu 10.04 lucid
|
||||
ubuntu 10.10 maverick
|
||||
ubuntu 11.04 natty
|
||||
ubuntu 11.10 oneiric
|
||||
ubuntu 12.04 precise
|
||||
ubuntu 12.10 quantal
|
||||
ubuntu 13.04 raring
|
||||
ubuntu 13.10 saucy
|
||||
ubuntu 14.04 trusty
|
||||
ubuntu 14.10 utopic
|
||||
ubuntu 15.04 vivid
|
||||
ubuntu 15.10 wily
|
||||
ubuntu 16.04 xenial
|
||||
ubuntu 16.10 yakkety
|
||||
ubuntu 17.04 zesty
|
||||
ubuntu 17.10 artful
|
||||
ubuntu 18.04 bionic ~a
|
||||
# -- debian --
|
||||
debian 5.0 lenny '' ''
|
||||
debian 6.0 squeeze '' ''
|
||||
debian 7.0 wheezy '' ''
|
||||
debian 8.0 jessie '' ''
|
||||
debian 9.0 stretch '' ''
|
||||
debian 10.0 buster ~a ''
|
||||
debian 11.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 7.0 raspbian-wheezy '' ''
|
||||
raspbian 8.0 raspbian-jessie '' ''
|
||||
raspbian 9.0 raspbian-stretch '' ''
|
||||
# -- ubuntu --
|
||||
ubuntu 10.04 lucid '' ''
|
||||
ubuntu 10.10 maverick '' ''
|
||||
ubuntu 11.04 natty '' ''
|
||||
ubuntu 11.10 oneiric '' ''
|
||||
ubuntu 12.04 precise '' ''
|
||||
ubuntu 12.10 quantal '' ''
|
||||
ubuntu 13.04 raring '' ''
|
||||
ubuntu 13.10 saucy '' ''
|
||||
ubuntu 14.04 trusty '' ''
|
||||
ubuntu 14.10 utopic '' ''
|
||||
ubuntu 15.04 vivid '' ''
|
||||
ubuntu 15.10 wily '' ''
|
||||
ubuntu 16.04 xenial '' ''
|
||||
ubuntu 16.10 yakkety '' ''
|
||||
ubuntu 17.04 zesty '' ''
|
||||
ubuntu 17.10 artful '' ''
|
||||
ubuntu 18.04 bionic ~a ''
|
||||
"
|
||||
|
@ -0,0 +1 @@
|
||||
./../debian/_buildscripts
|
Loading…
Reference in new issue