[arch-commits] Commit in vim-netrw/repos/community-any (6 files)

Daniel Wallace dwallace at nymeria.archlinux.org
Sun May 11 19:59:19 UTC 2014


    Date: Sunday, May 11, 2014 @ 21:59:19
  Author: dwallace
Revision: 111001

archrelease: copy trunk to community-any

Added:
  vim-netrw/repos/community-any/PKGBUILD
    (from rev 111000, vim-netrw/trunk/PKGBUILD)
  vim-netrw/repos/community-any/license.txt
    (from rev 111000, vim-netrw/trunk/license.txt)
  vim-netrw/repos/community-any/vimdoc.install
    (from rev 111000, vim-netrw/trunk/vimdoc.install)
Deleted:
  vim-netrw/repos/community-any/PKGBUILD
  vim-netrw/repos/community-any/license.txt
  vim-netrw/repos/community-any/vimdoc.install

----------------+
 PKGBUILD       |   58 +++++++++++++++++++++++++++----------------------------
 license.txt    |   16 +++++++--------
 vimdoc.install |   38 ++++++++++++++++++------------------
 3 files changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2014-05-11 19:58:56 UTC (rev 111000)
+++ PKGBUILD	2014-05-11 19:59:19 UTC (rev 111001)
@@ -1,29 +0,0 @@
-$Id$
-# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com>
-# Contributor: Laszlo Papp <djszapi @ gmail at com>
-
-pkgname=vim-netrw
-pkgver=142
-_scriptid=15782
-pkgrel=1
-pkgdesc="Network oriented reading, writing, and browsing (keywords: netrw ftp scp)"
-arch=('any')
-url="http://www.vim.org/scripts/script.php?script_id=1075"
-license=('custom')
-depends=('vim')
-groups=('vim-plugins')
-install=vimdoc.install
-source=(${pkgname}.vba.gz::http://www.vim.org/scripts/download_script.php?src_id=${_scriptid}
-        license.txt)
-md5sums=('b5bf676b84deab402901a3c3681b5c70'
-         'efbd5986e691ce8c876fb86e8f5961ea')
-package() {
-    install -d ${pkgdir}/usr/share/vim/vimfiles
-
-    vim -c "UseVimball $pkgdir/usr/share/vim/vimfiles/" -c "q"  ${pkgname}.vba
-
-    rm "$pkgdir"/usr/share/vim/vimfiles/.VimballRecord 
-    rm "$pkgdir"/usr/share/vim/vimfiles/doc/tags
-
-    install -Dm644 ${srcdir}/license.txt ${pkgdir}/usr/share/licenses/${pkgname}/license.txt
-}

Copied: vim-netrw/repos/community-any/PKGBUILD (from rev 111000, vim-netrw/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2014-05-11 19:59:19 UTC (rev 111001)
@@ -0,0 +1,29 @@
+$Id$
+# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com>
+# Contributor: Laszlo Papp <djszapi @ gmail at com>
+
+pkgname=vim-netrw
+pkgver=150
+_scriptid=21427
+pkgrel=1
+pkgdesc="Network oriented reading, writing, and browsing (keywords: netrw ftp scp)"
+arch=('any')
+url="http://www.vim.org/scripts/script.php?script_id=1075"
+license=('custom')
+depends=('vim')
+groups=('vim-plugins')
+install=vimdoc.install
+source=(${pkgname}.vba.gz::http://www.vim.org/scripts/download_script.php?src_id=${_scriptid}
+        license.txt)
+md5sums=('1c47d12bba320cfe34626afcb2b7f794'
+         'efbd5986e691ce8c876fb86e8f5961ea')
+package() {
+    install -d ${pkgdir}/usr/share/vim/vimfiles
+
+    vim -c "UseVimball $pkgdir/usr/share/vim/vimfiles/" -c "q"  ${pkgname}.vba
+
+    rm "$pkgdir"/usr/share/vim/vimfiles/.VimballRecord 
+    rm "$pkgdir"/usr/share/vim/vimfiles/doc/tags
+
+    install -Dm644 ${srcdir}/license.txt ${pkgdir}/usr/share/licenses/${pkgname}/license.txt
+}

Deleted: license.txt
===================================================================
--- license.txt	2014-05-11 19:58:56 UTC (rev 111000)
+++ license.txt	2014-05-11 19:59:19 UTC (rev 111001)
@@ -1,8 +0,0 @@
-Copyright (C) 2002-2007 Yegappan Lakshmanan
-Permission is hereby granted to use and distribute this code,
-with or without modifications, provided that this copyright
-notice is copied with it. Like anything else that's free,
-taglist.vim is provided *as is* and comes with no warranty of any
-kind, either expressed or implied. In no event will the copyright
-holder be liable for any damamges resulting from the use of this
-software.

Copied: vim-netrw/repos/community-any/license.txt (from rev 111000, vim-netrw/trunk/license.txt)
===================================================================
--- license.txt	                        (rev 0)
+++ license.txt	2014-05-11 19:59:19 UTC (rev 111001)
@@ -0,0 +1,8 @@
+Copyright (C) 2002-2007 Yegappan Lakshmanan
+Permission is hereby granted to use and distribute this code,
+with or without modifications, provided that this copyright
+notice is copied with it. Like anything else that's free,
+taglist.vim is provided *as is* and comes with no warranty of any
+kind, either expressed or implied. In no event will the copyright
+holder be liable for any damamges resulting from the use of this
+software.

Deleted: vimdoc.install
===================================================================
--- vimdoc.install	2014-05-11 19:58:56 UTC (rev 111000)
+++ vimdoc.install	2014-05-11 19:59:19 UTC (rev 111001)
@@ -1,19 +0,0 @@
-post_install() {
-    echo -n "Updating vim help tags..."
-    /usr/bin/vim --noplugins -u NONE -U NONE \
-        --cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd ":q" > /dev/null 2>&1
-    echo "done."
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install
-}
-
-op=$1
-shift
-
-$op $*

Copied: vim-netrw/repos/community-any/vimdoc.install (from rev 111000, vim-netrw/trunk/vimdoc.install)
===================================================================
--- vimdoc.install	                        (rev 0)
+++ vimdoc.install	2014-05-11 19:59:19 UTC (rev 111001)
@@ -0,0 +1,19 @@
+post_install() {
+    echo -n "Updating vim help tags..."
+    /usr/bin/vim --noplugins -u NONE -U NONE \
+        --cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd ":q" > /dev/null 2>&1
+    echo "done."
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install
+}
+
+op=$1
+shift
+
+$op $*




More information about the arch-commits mailing list