Compare commits

..

No commits in common. "main" and "7.4.537-1mamba" have entirely different histories.

2 changed files with 107 additions and 3835 deletions

17
vim-patches.sh Normal file
View File

@ -0,0 +1,17 @@
#!/bin/sh
# by Silvan Calarco <silvan.calarco@mambasoft.it>
VIM_VERSION=$1
if [ -z "$VIM_VERSION" ]; then
echo "Usage: $0 <version>"
exit 2
fi
rm -rf vim-$VIM_VERSION
mkdir vim-$VIM_VERSION
cd vim-$VIM_VERSION
MAJVER=`echo $VIM_VERSION | cut -d. -f1-2`
wget ftp://ftp.vim.org/pub/vim/patches/$MAJVER/$MAJVER.*
tar -cz $MAJVER.* > ../vim-$VIM_VERSION-patchset.tar.gz
rm -rf vim-$VIM_VERSION

3923
vim.spec

File diff suppressed because it is too large Load Diff