Replace references to wheezy with jessie + add stretch to zsh completion
[grml-live.git] / etc / zsh / completion.d / _grml-live
index 4d5f54e..ef2ef93 100644 (file)
@@ -4,7 +4,6 @@
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2.
-# Latest change: Thu, 01 Nov 2007 14:00:40 +0100 [ft]
 ################################################################################
 
 _grmllive_flavours() { #{{{
@@ -33,7 +32,10 @@ _grmllive_classes() { #{{{
     local expl
     local -a already static_classes
 
-    static_classes=(RELEASE LATEX_CLEANUP NO_ONLINE REMOVE_DOCS LOCALES)
+    static_classes=(
+        RELEASE LATEX_CLEANUP NO_ONLINE REMOVE_DOCS LOCALES
+        I386 AMD64
+    )
     compset -P '*,'
     already=(${(s<,>)IPREFIX})
     _wanted list expl 'classe(s)' compadd -S, -F already -q ${expl} -- \
@@ -45,8 +47,7 @@ _grmllive_suites() { #{{{
   local -a suites
 
   suites=(
-    stable  testing unstable
-    etch    lenny   sid
+    stable testing unstable wheezy jessie stretch sid
   )
   _wanted list expl 'Debian suite' compadd ${expl} -- ${suites}
 }