[packages/vim] up to 9.0.1664
atler
atler at pld-linux.org
Sun Jun 25 22:56:03 CEST 2023
commit 4431d3b0768849f443fca35715d3de8ba42397f7
Author: Jan Palus <atler at pld-linux.org>
Date: Sun Jun 25 22:50:39 2023 +0200
up to 9.0.1664
vim-autopaste.patch | 6 +++---
vim-phpscript.patch | 7 +++----
vim.spec | 6 ++++--
3 files changed, 10 insertions(+), 9 deletions(-)
---
diff --git a/vim.spec b/vim.spec
index d194337..5ce29ae 100644
--- a/vim.spec
+++ b/vim.spec
@@ -31,7 +31,7 @@
# wget ftp://ftp.vim.org/pub/editors/vim/patches/8.0/MD5SUMS -O - | tail -n1 | awk '{print $2}'
# VCS Commits: https://github.com/vim/vim/commits/master
-%define ver 9.0.1259
+%define ver 9.0.1664
%define rel 1
Summary: Vi IMproved - a Vi clone
Summary(de.UTF-8): VIsual editor iMproved
@@ -52,7 +52,7 @@ License: Charityware
Group: Applications/Editors/Vim
#Source0: ftp://ftp.vim.org/pub/vim/unix/%{name}-%{ver}.tar.bz2
Source0: https://github.com/vim/vim/archive/v%{ver}.tar.gz
-# Source0-md5: cde628e2b3edc430716beb1621e2d035
+# Source0-md5: 6ca4affc0ea89b798b1b2a9f4c972afd
Source1: http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/%{name}-non-english-man-pages.tar.bz2
# Source1-md5: bc4d1e115ca506ad7751b9bd2b773a7f
Source2: http://skawina.eu.org/mikolaj/usr_doc_pl.zip
@@ -1318,6 +1318,7 @@ rm -rf $RPM_BUILD_ROOT
%dir %{_datadir}/vim/import
%dir %{_datadir}/vim/import/dist
%{_datadir}/vim/import/dist/vimhelp.vim
+%{_datadir}/vim/import/dist/vimhighlight.vim
%dir %{_datadir}/vim/indent
%doc %{_datadir}/vim/indent/README.txt
@@ -1427,6 +1428,7 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/vim/autoload/*.vim
%exclude %{_datadir}/vim/autoload/*complete.vim
%{_datadir}/vim/autoload/xml
+%{_datadir}/vim/autoload/zig
%{_datadir}/vim/compiler
%{_datadir}/vim/macros
%{_datadir}/vim/print
diff --git a/vim-autopaste.patch b/vim-autopaste.patch
index b50c71d..8a7c0d1 100644
--- a/vim-autopaste.patch
+++ b/vim-autopaste.patch
@@ -38,13 +38,13 @@
+++ vim72/src/optiondefs.h 2009-05-18 22:30:25.277259155 +0300
@@ -377,6 +377,9 @@
{"autoindent", "ai", P_BOOL|P_VI_DEF,
- (char_u *)&p_ai, PV_AI,
+ (char_u *)&p_ai, PV_AI, NULL,
{(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
+ {"autopaste", "apa", P_BOOL|P_VI_DEF,
-+ (char_u *)&p_apa, PV_NONE,
++ (char_u *)&p_apa, PV_NONE, NULL,
+ {(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
{"autoprint", "ap", P_BOOL|P_VI_DEF,
- (char_u *)NULL, PV_NONE,
+ (char_u *)NULL, PV_NONE, NULL,
{(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
--- vim72/src/option.h~ 2009-05-18 22:23:40.000000000 +0300
+++ vim72/src/option.h 2009-05-18 22:30:25.277259155 +0300
diff --git a/vim-phpscript.patch b/vim-phpscript.patch
index 7a8e665..8c7f07a 100644
--- a/vim-phpscript.patch
+++ b/vim-phpscript.patch
@@ -2,13 +2,12 @@
+++ vim-8.2.4726/runtime/autoload/dist/script.vim 2022-04-10 12:01:55.436645032 +0200
@@ -297,6 +297,10 @@ def DetectFromText(line1: string)
elseif line1 =~ '^\x\{7}: \x\{2} \=\x\{2} \=\x\{2} \=\x\{2} '
- set ft=xxd
+ setl ft=xxd
+ # PHP script tag
+ elseif line1 =~ '^<?php'
-+ set ft=php
++ setl ft=php
+
# RCS/CVS log output
elseif line1 =~ '^RCS file:' || line2 =~ '^RCS file:'
- set ft=rcslog
-
+ setl ft=rcslog
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/vim.git/commitdiff/4431d3b0768849f443fca35715d3de8ba42397f7
More information about the pld-cvs-commit
mailing list