Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (a76659068b5e6f651409a4f24d2574259c31bea7)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ladislav Hagara <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (a76659068b5e6f651409a4f24d2574259c31bea7)
  • Date: Thu, 27 Jan 2011 04:38:50 -0600

GIT changes to master grimoire by Ladislav Hagara <hgr AT vabo.cz>:

editors/vim/HISTORY | 1 +
editors/vim/vim-patches-tarball | 21 +++++++++++++++++++++
2 files changed, 22 insertions(+)

New commits:
commit a76659068b5e6f651409a4f24d2574259c31bea7
Author: Ladislav Hagara <hgr AT vabo.cz>
Commit: Ladislav Hagara <hgr AT vabo.cz>

vim: vim-patches-tarball script added

diff --git a/editors/vim/HISTORY b/editors/vim/HISTORY
index deaa890..0955c5c 100644
--- a/editors/vim/HISTORY
+++ b/editors/vim/HISTORY
@@ -1,5 +1,6 @@
2011-01-27 Ladislav Hagara <hgr AT vabo.cz>
* patches/*: stale patches removed
+ * vim-patches-tarball: script added

2011-01-02 Ismael Luceno <ismael AT sourcemage.org>
* vim.desktop, gvim.desktop: added generic name
diff --git a/editors/vim/vim-patches-tarball b/editors/vim/vim-patches-tarball
new file mode 100755
index 0000000..492250f
--- /dev/null
+++ b/editors/vim/vim-patches-tarball
@@ -0,0 +1,21 @@
+#!/bin/bash
+# creates up-to-date vim patches tarball
+
+wget ftp://ftp.vim.org/pub/vim/patches/7.3/MD5SUMS
+LAST=$(tail -n 1 MD5SUMS | cut -f 3 -d " " | cut -f 3 -d .)
+
+mkdir patches
+cd patches
+
+PATCHES=$(eval echo {001..$LAST})
+
+for i in $PATCHES; do
+ wget ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.$i
+done
+
+cd ..
+
+tar cvf vim-7.3-patches-001-$LAST.tar patches
+bzip2 vim-7.3-patches-001-$LAST.tar
+
+rm -r patches



  • [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (a76659068b5e6f651409a4f24d2574259c31bea7), Ladislav Hagara, 01/27/2011

Archive powered by MHonArc 2.6.24.

Top of Page