summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Rebischke2016-11-13 23:55:48 +0100
committerChristian Rebischke2016-11-13 23:58:27 +0100
commitbeb1ac2287ecda825b22570ea08aeb50e4ba793c (patch)
treed0d33ca2fa3e85674b3a84ae17e0e0bfb9de78ae
parente5bfafdcd1bdb423fa83ccda20a3622b6e36afae (diff)
downloadaur-beb1ac2287ecda825b22570ea08aeb50e4ba793c.tar.gz
removed vimdoc.install.. pacman hooks for the win
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD9
-rw-r--r--vimdoc.install20
3 files changed, 4 insertions, 30 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 366efdab6aef..5a66274cd2ab 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = vim-ctrlp-git
pkgdesc = Full path fuzzy file, buffer, mru, tag, ... finder
pkgver = 1.79.699.88b61e7
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/ctrlpvim/ctrlp.vim
- install = vimdoc.install
arch = any
groups = vim-plugins
license = custom:vim
@@ -12,9 +11,7 @@ pkgbase = vim-ctrlp-git
provides = vim-ctrlp
conflicts = vim-ctrlp
source = git+https://github.com/ctrlpvim/ctrlp.vim
- source = vimdoc.install
sha512sums = SKIP
- sha512sums = 37cb1bc1ba45d4626b6b274d39bacaa752679be31a7c16086aed71af9a071a911100748cc17df83808e95ff7bb57941b0b2246d485197a8e908b349466579c47
pkgname = vim-ctrlp-git
diff --git a/PKGBUILD b/PKGBUILD
index 5e1541260b27..44bfe2aad378 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_pkgname=ctrlp.vim
pkgname=vim-ctrlp-git
pkgver=1.79.699.88b61e7
-pkgrel=1
+pkgrel=2
pkgdesc='Full path fuzzy file, buffer, mru, tag, ... finder'
arch=('any')
url='https://github.com/ctrlpvim/ctrlp.vim'
@@ -12,11 +12,8 @@ makedepends=('git')
groups=('vim-plugins')
provides=('vim-ctrlp')
conflicts=('vim-ctrlp')
-install="vimdoc.install"
-source=("git+https://github.com/ctrlpvim/ctrlp.vim"
- "vimdoc.install")
-sha512sums=('SKIP'
- '37cb1bc1ba45d4626b6b274d39bacaa752679be31a7c16086aed71af9a071a911100748cc17df83808e95ff7bb57941b0b2246d485197a8e908b349466579c47')
+source=("git+https://github.com/ctrlpvim/ctrlp.vim")
+sha512sums=('SKIP')
pkgver() {
cd "${_pkgname}"
diff --git a/vimdoc.install b/vimdoc.install
deleted file mode 100644
index 1239c9df3be5..000000000000
--- a/vimdoc.install
+++ /dev/null
@@ -1,20 +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 $*
-