From cd135286df666e0f8ee50b880fea935d25cbb914 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 18 Aug 2018 07:48:04 +0000 Subject: [PATCH] PkgInfo: update Debian, Ubuntu, Linux Mint codenames Debian: +bookworm Ubuntu: -zesty +cosmic Mint: +tara --- PkgInfo/plugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PkgInfo/plugin.py b/PkgInfo/plugin.py index 02abb28..4269488 100644 --- a/PkgInfo/plugin.py +++ b/PkgInfo/plugin.py @@ -104,10 +104,10 @@ class PkgInfo(callbacks.Plugin): release = release.lower() debian = ("oldoldstable", "oldstable", "wheezy", "stable", "jessie", "testing", "sid", "unstable", "stretch", "buster", - "experimental", "bullseye") - ubuntu = ("trusty", "xenial", "zesty", "artful", "bionic") + "experimental", "bullseye", "bookworm") + ubuntu = ("trusty", "xenial", "artful", "bionic", "cosmic") mint = ("betsy", "cindy", "qiana", "rebecca", "rafaela", "rosa", - "sarah", "serena", "sonya", "sylvia") + "sarah", "serena", "sonya", "sylvia", "tara") if release.startswith(debian): return "debian"