[arch-commits] Commit in vim-vcscommand/repos (3 files)
Felix Yan
felixonmars at archlinux.org
Tue Jul 7 15:53:26 UTC 2020
Date: Tuesday, July 7, 2020 @ 15:53:25
Author: felixonmars
Revision: 659023
archrelease: copy trunk to community-staging-any
Added:
vim-vcscommand/repos/community-staging-any/
vim-vcscommand/repos/community-staging-any/PKGBUILD
(from rev 659022, vim-vcscommand/trunk/PKGBUILD)
vim-vcscommand/repos/community-staging-any/license.txt
(from rev 659022, vim-vcscommand/trunk/license.txt)
-------------+
PKGBUILD | 33 +++++++++++++++++++++++++++++++++
license.txt | 26 ++++++++++++++++++++++++++
2 files changed, 59 insertions(+)
Copied: vim-vcscommand/repos/community-staging-any/PKGBUILD (from rev 659022, vim-vcscommand/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2020-07-07 15:53:25 UTC (rev 659023)
@@ -0,0 +1,33 @@
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Aaron Griffin <aaron at archlinux.org>
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=vim-vcscommand
+pkgver=1.99.47
+_scriptid=19809
+pkgrel=4
+pkgdesc="vim version control system integration plugin"
+arch=('any')
+url="http://www.vim.org/scripts/script.php?script_id=90"
+license=('MIT')
+depends=('vim>=7.0')
+groups=('vim-plugins')
+replaces=('vim-vsccommand') #whoops, typo before
+source=(vcscommand.zip::https://www.vim.org/scripts/download_script.php?src_id=$_scriptid
+ license.txt)
+md5sums=('861c4e1a38664a19ce561527b9b94344'
+ 'cc76e422214169f380e6a1548f617778')
+
+package() {
+ cd ${srcdir}
+
+ installpath="${pkgdir}/usr/share/vim/vimfiles"
+ mkdir -p $installpath
+ cp -r doc plugin syntax $installpath
+
+ #just in case....
+ find "$installpath" -type f -exec chmod 644 {} \;
+
+ install -D -m644 license.txt \
+ ${pkgdir}/usr/share/licenses/${pkgname}/license.txt
+}
Copied: vim-vcscommand/repos/community-staging-any/license.txt (from rev 659022, vim-vcscommand/trunk/license.txt)
===================================================================
--- community-staging-any/license.txt (rev 0)
+++ community-staging-any/license.txt 2020-07-07 15:53:25 UTC (rev 659023)
@@ -0,0 +1,26 @@
+Copyright (c) 2007 Bob Hiestand
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN THE SOFTWARE.
+
+For instructions on installing this file, type
+ :help add-local-help
+inside Vim.
+
+Author: Bob Hiestand <bob.hiestand at gmail.com>
+Credits: Benji Fisher's excellent MatchIt documentation
More information about the arch-commits
mailing list