[arch-commits] Commit in vim-syntastic/repos/community-any (4 files)

Lukas Fleischer lfleischer at archlinux.org
Tue Feb 17 21:23:58 UTC 2015


    Date: Tuesday, February 17, 2015 @ 22:23:57
  Author: lfleischer
Revision: 127877

archrelease: copy trunk to community-any

Added:
  vim-syntastic/repos/community-any/PKGBUILD
    (from rev 127876, vim-syntastic/trunk/PKGBUILD)
  vim-syntastic/repos/community-any/vimdoc.install
    (from rev 127876, vim-syntastic/trunk/vimdoc.install)
Deleted:
  vim-syntastic/repos/community-any/PKGBUILD
  vim-syntastic/repos/community-any/vimdoc.install

----------------+
 PKGBUILD       |   70 +++++++++++++++++++++++++++----------------------------
 vimdoc.install |   38 ++++++++++++++---------------
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2015-02-17 21:23:53 UTC (rev 127876)
+++ PKGBUILD	2015-02-17 21:23:57 UTC (rev 127877)
@@ -1,35 +0,0 @@
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Felip Manyer i Ballester <archlinux at res hyphen telae dot cat>
-# Contributor: Alex Ferrando <alferpal at gmail.com>
-# Contributor: Zhang Li <richselian at gmail.com>
-
-pkgname=vim-syntastic
-_pkgname=syntastic
-pkgver=3.5.0
-pkgrel=1
-pkgdesc='Automatic syntax checking for Vim'
-arch=('any')
-url='http://www.vim.org/scripts/script.php?script_id=2736'
-license=('custom:WTFPL')
-depends=('vim')
-groups=('vim-plugins')
-install=vimdoc.install
-source=("https://github.com/scrooloose/${_pkgname}/archive/${pkgver}.tar.gz")
-md5sums=('7b8b7e39fa36e0dc15d1ee4e04c365b1')
-
-package() {
-    cd "${srcdir}/${_pkgname}-${pkgver}"
-
-    install -d "${pkgdir}/usr/share/vim/vimfiles/"{plugin,doc,autoload/syntastic/,syntax_checkers}
-    find . -type d -exec chmod 755 '{}' \;
-    cp -dr plugin/* "$pkgdir/usr/share/vim/vimfiles/plugin/"
-    install -Dm0644 doc/syntastic.txt "${pkgdir}/usr/share/vim/vimfiles/doc/syntastic.txt"
-    cp autoload/syntastic/* "$pkgdir/usr/share/vim/vimfiles/autoload/syntastic/"
-    cp -dr syntax_checkers/* "$pkgdir/usr/share/vim/vimfiles/syntax_checkers/"
-
-    # remove rustc checker (fixes FS#41517)
-    rm -rf "${pkgdir}/usr/share/vim/vimfiles/syntax_checkers/rust/"
-
-    # install license file
-    install -Dm0644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: vim-syntastic/repos/community-any/PKGBUILD (from rev 127876, vim-syntastic/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2015-02-17 21:23:57 UTC (rev 127877)
@@ -0,0 +1,35 @@
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Felip Manyer i Ballester <archlinux at res hyphen telae dot cat>
+# Contributor: Alex Ferrando <alferpal at gmail.com>
+# Contributor: Zhang Li <richselian at gmail.com>
+
+pkgname=vim-syntastic
+_pkgname=syntastic
+pkgver=3.6.0
+pkgrel=1
+pkgdesc='Automatic syntax checking for Vim'
+arch=('any')
+url='http://www.vim.org/scripts/script.php?script_id=2736'
+license=('custom:WTFPL')
+depends=('vim')
+groups=('vim-plugins')
+install=vimdoc.install
+source=("https://github.com/scrooloose/${_pkgname}/archive/${pkgver}.tar.gz")
+md5sums=('4e091b942447cdf92c0b601b6b8567e5')
+
+package() {
+    cd "${srcdir}/${_pkgname}-${pkgver}"
+
+    install -d "${pkgdir}/usr/share/vim/vimfiles/"{plugin,doc,autoload/syntastic/,syntax_checkers}
+    find . -type d -exec chmod 755 '{}' \;
+    cp -dr plugin/* "$pkgdir/usr/share/vim/vimfiles/plugin/"
+    install -Dm0644 doc/syntastic.txt "${pkgdir}/usr/share/vim/vimfiles/doc/syntastic.txt"
+    cp autoload/syntastic/* "$pkgdir/usr/share/vim/vimfiles/autoload/syntastic/"
+    cp -dr syntax_checkers/* "$pkgdir/usr/share/vim/vimfiles/syntax_checkers/"
+
+    # remove rustc checker (fixes FS#41517)
+    rm -rf "${pkgdir}/usr/share/vim/vimfiles/syntax_checkers/rust/"
+
+    # install license file
+    install -Dm0644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: vimdoc.install
===================================================================
--- vimdoc.install	2015-02-17 21:23:53 UTC (rev 127876)
+++ vimdoc.install	2015-02-17 21:23:57 UTC (rev 127877)
@@ -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-syntastic/repos/community-any/vimdoc.install (from rev 127876, vim-syntastic/trunk/vimdoc.install)
===================================================================
--- vimdoc.install	                        (rev 0)
+++ vimdoc.install	2015-02-17 21:23:57 UTC (rev 127877)
@@ -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