diff --git a/apparmor.vim b/apparmor.vim index 5187780..9007476 100644 --- a/apparmor.vim +++ b/apparmor.vim @@ -129,13 +129,13 @@ syn cluster sdEntry contains=sdEntryWriteExec,sdEntryR,sdEntryW,sdEntryIX,sdEntr " Capability line " normal capabilities - really keep this list? syn match sdCap should be enough... (difference: sdCapKey words would loose underlining) -syn keyword sdCapKey audit_read block_suspend bpf chown dac_override dac_read_search fowner fsetid ipc_lock ipc_owner kill lease linux_immutable mknod net_admin net_bind_service net_broadcast net_raw perfmon setgid setpcap setuid syslog sys_boot sys_chroot sys_nice sys_pacct sys_ptrace sys_resource sys_time sys_tty_config wake_alarm +syn keyword sdCapKey audit_read block_suspend bpf checkpoint_restore chown dac_override dac_read_search fowner fsetid ipc_lock ipc_owner kill lease linux_immutable mknod net_admin net_bind_service net_broadcast net_raw perfmon setgid setpcap setuid syslog sys_boot sys_chroot sys_nice sys_pacct sys_ptrace sys_resource sys_time sys_tty_config wake_alarm " dangerous capabilities - highlighted separately syn keyword sdCapDanger audit_control audit_write mac_override mac_admin setfcap sys_admin sys_module sys_rawio " full line. Keywords are from sdCapKey + sdCapDanger -syn match sdCap /\v^\s*(audit\s+)?(deny\s+|allow\s+)?capability\s+((audit_control|audit_read|audit_write|block_suspend|bpf|chown|dac_override|dac_read_search|fowner|fsetid|ipc_lock|ipc_owner|kill|lease|linux_immutable|mac_admin|mac_override|mknod|net_admin|net_bind_service|net_broadcast|net_raw|perfmon|setfcap|setgid|setpcap|setuid|syslog|sys_admin|sys_boot|sys_chroot|sys_module|sys_nice|sys_pacct|sys_ptrace|sys_rawio|sys_resource|sys_time|sys_tty_config|wake_alarm)\s+)*(audit_control|audit_read|audit_write|block_suspend|bpf|chown|dac_override|dac_read_search|fowner|fsetid|ipc_lock|ipc_owner|kill|lease|linux_immutable|mac_admin|mac_override|mknod|net_admin|net_bind_service|net_broadcast|net_raw|perfmon|setfcap|setgid|setpcap|setuid|syslog|sys_admin|sys_boot|sys_chroot|sys_module|sys_nice|sys_pacct|sys_ptrace|sys_rawio|sys_resource|sys_time|sys_tty_config|wake_alarm)\s*,(\s*$|(\s*#.*$)\@=)/ contains=sdCapKey,sdCapDanger,sdComment nextgroup=@sdEntry,sdComment,sdError,sdInclude +syn match sdCap /\v^\s*(audit\s+)?(deny\s+|allow\s+)?capability\s+((audit_control|audit_read|audit_write|block_suspend|bpf|checkpoint_restore|chown|dac_override|dac_read_search|fowner|fsetid|ipc_lock|ipc_owner|kill|lease|linux_immutable|mac_admin|mac_override|mknod|net_admin|net_bind_service|net_broadcast|net_raw|perfmon|setfcap|setgid|setpcap|setuid|syslog|sys_admin|sys_boot|sys_chroot|sys_module|sys_nice|sys_pacct|sys_ptrace|sys_rawio|sys_resource|sys_time|sys_tty_config|wake_alarm)\s+)*(audit_control|audit_read|audit_write|block_suspend|bpf|checkpoint_restore|chown|dac_override|dac_read_search|fowner|fsetid|ipc_lock|ipc_owner|kill|lease|linux_immutable|mac_admin|mac_override|mknod|net_admin|net_bind_service|net_broadcast|net_raw|perfmon|setfcap|setgid|setpcap|setuid|syslog|sys_admin|sys_boot|sys_chroot|sys_module|sys_nice|sys_pacct|sys_ptrace|sys_rawio|sys_resource|sys_time|sys_tty_config|wake_alarm)\s*,(\s*$|(\s*#.*$)\@=)/ contains=sdCapKey,sdCapDanger,sdComment nextgroup=@sdEntry,sdComment,sdError,sdInclude " all capabilities ('capability' without any keyword) syn match sdCapDanger /\v^\s*(audit\s+)?(deny\s+|allow\s+)?capability\s*,(\s*$|(\s*#.*$)\@=)/ contains=sdComment nextgroup=@sdEntry,sdComment,sdError,sdInclude diff --git a/vim-8.2.1900.tar.gz b/vim-8.2.1900.tar.gz deleted file mode 100644 index 551084f..0000000 --- a/vim-8.2.1900.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:28b734e9f6d4ed0eaf5b2a2c7528798e6b66243c9665253cd223c03572fde4bf -size 15211712 diff --git a/vim-8.2.1955.tar.gz b/vim-8.2.1955.tar.gz new file mode 100644 index 0000000..76470ef --- /dev/null +++ b/vim-8.2.1955.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48966412373c5e81faae5366c04edc89eb6005c46fa569d6be32f5e06df06a7a +size 15219614 diff --git a/vim.changes b/vim.changes index 5d8dcbf..2211fd8 100644 --- a/vim.changes +++ b/vim.changes @@ -1,3 +1,71 @@ +------------------------------------------------------------------- +Thu Nov 5 11:44:18 UTC 2020 - Ondřej Súkup + +- Updated to version 8.2.1955, fixes the following problems + * Vim9: command modifiers do not work. + * Variable completion does not work in command line window. + * Default option values are changed when using :badd for an existing buffer. + * Buffer test fails with normal features. + * Still using default option values after using ":badd +1". + * The wininfo list may contain stale entries. + * Warning for signed/unsigned. + * Complete_info().selected may be wrong. + * Lua is initialized even when not used. + * Number of status line items is limited to 80. + * Reading past the end of the command line. + * Tiny build fails. + * With Python 3.9 some tests fail. + * GTK GUI: rounding for the cell height is too strict. + * Vim9: cannot put line break in expression for '=' register. + * Vim9: error for wrong number of arguments is not useful. + * Vim9: function call is aborted even when "silent!" is used. + * No test for improved Man command. + * Vim9: E1100 mentions :let. + * Assert_fails() setting emsg_silent changes normal execution. + * Listlbr test fails when run after another test. + * Fuzzy matching does not recognize path separators. + * Win32: scrolling doesn't work properly when part of window is off-screen. + * Vim9: "filter" command modifier doesn't work. + * Vim9: crash when indexing dict with NULL key. + * List/dict test fails. + * Cannot use a space in 'spellfile'. (Filipe Brandenburger) + * Vim9: get unknown error with an error in a timer function. + * Vim9: "silent!" not effective when list index is wrong. + * MS-Windows: problem loading Perl 5.32. + * Wrong input if removing shift results in special key code. + * Vim9: arguments of extend() not checked at compile time. + * Compiler warnings when building with Athena GUI. + * Cannot sort using locale ordering. + * Vim9: command modifiers in :def function not tested. + * Sort test fails on Mac. + * Session sets the local 'scrolloff' value to the global value. + * Vim9: test for confirm modifier fails in some situations. + * Wiping out a terminal buffer makes some tests fail. + * Invalid memory access in Ex mode with global command. + * Vim9: browse modifier test fails on Mac. + * Ex mode test fails on MS-Windows with GUI. + * Insufficient test coverage for the Netbeans interface. + * Vim9: wrong error message when colon is missing. + * Netbeans test is flaky. + * Crash when passing NULL function to reduce(). + * sort() with NULL string not tested. + * Crash when using "zj" without folds. (Sean Dewar) + * GUI: crash when handling message while closing a window. (Srinath + Avadhanula) + * Vim9: using extend() on null dict is silently ignored. + * Vim9: crash when compiling function fails when getting type. + * Test for list and dict fails. + * Vim9: crash when using a NULL dict key. + * Vim9: extra "unknown" error after other error. + * Vim9: not all command modifiers are tested. + * Vim9: not all command modifiers are tested. + +------------------------------------------------------------------- +Mon Nov 2 22:25:51 UTC 2020 - Christian Boltz + +- apparmor.vim: update from AppArmor 3.0 + - add capability checkpoint_restore + ------------------------------------------------------------------- Sun Oct 25 11:44:15 UTC 2020 - Ondřej Súkup diff --git a/vim.spec b/vim.spec index 9d61c57..c0f5ea4 100644 --- a/vim.spec +++ b/vim.spec @@ -17,7 +17,7 @@ %define pkg_version 8.2 -%define patchlevel 1900 +%define patchlevel 1955 %define patchlevel_compact %{patchlevel} %define VIM_SUBDIR vim82 %define site_runtimepath %{_datadir}/vim/site