runtime(debversions): Move bullseye, focal, and oracular to "unsupported"
Commit: https://github.com/vim/vim/commit/b760062897d6aed4ff9f148a332e36a5bf5ee6f5 Author: James McCoy <james...@jamessan.com> Date: Wed Aug 27 18:03:04 2025 +0200 runtime(debversions): Move bullseye, focal, and oracular to "unsupported" These versions have exited their standard support term as of - bullseye: 2024-08-14 - focal: 2025-05 - oracular: 2025-07-10 closes: #18134 Signed-off-by: James McCoy <james...@jamessan.com> Signed-off-by: Christian Brabandt <c...@256bit.org> diff --git a/runtime/syntax/shared/debversions.vim b/runtime/syntax/shared/debversions.vim index 1f3195b83..6ba7a0f7d 100644 --- a/runtime/syntax/shared/debversions.vim +++ b/runtime/syntax/shared/debversions.vim @@ -1,30 +1,32 @@ " Vim syntax file " Language: Debian version information " Maintainer: Debian Vim Maintainers -" Last Change: 2025 Apr 24 +" Last Change: 2025 Aug 26 " URL: https://salsa.debian.org/vim-team/vim-debian/blob/main/syntax/shared/debversions.vim let s:cpo = &cpo set cpo-=C +" Version names that are upcoming or released and still within the standard support window let g:debSharedSupportedVersions = [ \ 'oldstable', 'stable', 'testing', 'unstable', 'experimental', 'sid', 'rc-buggy', - \ 'bullseye', 'bookworm', 'trixie', 'forky', 'duke', + \ 'bookworm', 'trixie', 'forky', 'duke', \ - \ 'focal', 'jammy', 'noble', 'oracular', 'plucky', 'questing', + \ 'jammy', 'noble', 'plucky', 'questing', \ 'devel' \ ] +" Historic version names, no longer under standard support let g:debSharedUnsupportedVersions = [ \ 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato', \ 'woody', 'sarge', 'etch', 'lenny', 'squeeze', 'wheezy', - \ 'jessie', 'stretch', 'buster', + \ 'jessie', 'stretch', 'buster', 'bullseye', \ \ 'warty', 'hoary', 'breezy', 'dapper', 'edgy', 'feisty', \ 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic', 'lucid', \ 'maverick', 'natty', 'oneiric', 'precise', 'quantal', 'raring', 'saucy', \ 'trusty', 'utopic', 'vivid', 'wily', 'xenial', 'yakkety', 'zesty', - \ 'artful', 'bionic', 'cosmic', 'disco', 'eoan', 'groovy', - \ 'hirsute', 'impish', 'kinetic', 'lunar', 'mantic', + \ 'artful', 'bionic', 'cosmic', 'disco', 'eoan', 'focal', 'groovy', + \ 'hirsute', 'impish', 'kinetic', 'lunar', 'mantic', 'oracular', \ ] let &cpo=s:cpo -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion visit https://groups.google.com/d/msgid/vim_dev/E1urInk-005Y7K-CT%40256bit.org.