[28742] in Source-Commits
build-system commit: Add stretch and bump jessie tag to final
daemon@ATHENA.MIT.EDU (System T. Builder)
Fri Nov 18 17:36:12 2016
Date: Fri, 18 Nov 2016 17:36:07 -0500
From: "System T. Builder" <builder@mit.edu>
Message-Id: <201611182236.uAIMa7r6012498@drugstore.mit.edu>
To: source-commits@mit.edu
https://github.com/mit-athena/build-system/commit/b1e2503c125c98f7b74c9f80e4543eca6a1a2642
commit b1e2503c125c98f7b74c9f80e4543eca6a1a2642
Author: Anders Kaseorg <andersk@mit.edu>
Date: Fri Nov 18 17:34:15 2016 -0500
Add stretch and bump jessie tag to final
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
dabuildsys/config.py | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/dabuildsys/config.py b/dabuildsys/config.py
index 477a4d2..4b766de 100644
--- a/dabuildsys/config.py
+++ b/dabuildsys/config.py
@@ -8,11 +8,18 @@ from glob import glob
import os
import os.path
-debian_releases = ['wheezy', 'jessie']
+# If you edit these releases and tags, please also update
+# debian-versions.sh in scripts.git (checked out at /mit/debathena/bin).
+
+debian_releases = ['wheezy', 'jessie', 'stretch']
ubuntu_releases = ['precise', 'trusty', 'wily', 'xenial']
releases = debian_releases + ubuntu_releases
-debian_tags = { 'wheezy' : 'debian7.0', 'jessie' : 'debian8.0~0.2' }
+debian_tags = {
+ 'wheezy' : 'debian7.0',
+ 'jessie' : 'debian8.0',
+ 'stretch' : 'debian9.0~0.1',
+}
ubuntu_tags = {
'precise' : 'ubuntu12.04',
'trusty' : 'ubuntu14.04',