178
178
Series("saucy", "13.10", "Saucy Salamander"),
180
180
"trusty", "14.04", "Trusty Tahr",
181
pointversion="14.04.3",
181
pointversion="14.04.5",
182
182
all_lts_projects=True),
183
183
Series("utopic", "14.10", "Utopic Unicorn"),
184
184
Series("vivid", "15.04", "Vivid Vervet"),
185
185
Series("wily", "15.10", "Wily Werewolf"),
186
Series("xenial", "16.04", "Xenial Xerus"),
187
"xenial", "16.04", "Xenial Xerus",
188
pointversion="16.04.4",
189
all_lts_projects=True),
190
Series("yakkety", "16.10", "Yakkety Yak"),
191
Series("zesty", "17.04", "Zesty Zapus"),
192
Series("artful", "17.10", "Artful Aardvark"),
194
"bionic", "18.04", "Bionic Beaver",
195
all_lts_projects=True),
188
197
Series("14.09", "14.09", "RTM 14.09", distribution="ubuntu-rtm"),
217
226
# TODO: This should probably come from a configuration file.
218
227
all_touch_targets.extend([
219
228
Touch("mako", "armel", "armhf"),
220
Touch("manta", "armel", "armhf"),
221
229
Touch("generic", "armel", "armhf"),
222
230
Touch("generic_x86", "i386", "i386"),
223
231
Touch("flo", "armel", "armhf"),
423
432
def all_projects(self):
424
433
return self["ALL_PROJECTS"].split()
436
def core_series(self):
437
if self["DIST"] >= "xenial" and self["DIST"] <= "artful":
439
if self["DIST"] >= "bionic":
426
443
def export(self):
427
444
ret = dict(os.environ)
428
445
for key, value in self.items():