summaryrefslogtreecommitdiff
path: root/pcr/vim-pathogen
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2019-02-19 23:23:17 +0100
committerAndreas Grapentin <andreas@grapentin.org>2019-02-19 23:23:17 +0100
commitdc6a196fd9b9e10e81902a863bf57fec9cf315a6 (patch)
treea7c117dcc09ca7a127c43acb2fe6bb9fdbb847f7 /pcr/vim-pathogen
parent0f8e23b7aac45636711561a03760263cd2c66c52 (diff)
pcr/vim-pathogen: updated to 2.4
Diffstat (limited to 'pcr/vim-pathogen')
-rw-r--r--pcr/vim-pathogen/PKGBUILD15
-rw-r--r--pcr/vim-pathogen/vimdoc.install14
2 files changed, 6 insertions, 23 deletions
diff --git a/pcr/vim-pathogen/PKGBUILD b/pcr/vim-pathogen/PKGBUILD
index a697fe92b..3f8748e16 100644
--- a/pcr/vim-pathogen/PKGBUILD
+++ b/pcr/vim-pathogen/PKGBUILD
@@ -1,22 +1,19 @@
-# Contributor (Arch): Facundo Tuesca <facutuesca at gmail dot com>
-# Maintainer : Omar Vega Ramos <ovruni@gnu.org.pe>
+# Maintainer (AUR): drrossum <d.r.vanrossum at gmx.de>
+# Maintainer : Omar Vega Ramos <ovruni@gnu.org.pe>
pkgname=vim-pathogen
-pkgver=2.3
-pkgrel=2
+pkgver=2.4
+pkgrel=1
pkgdesc="A vim plugin for managing your runtimepath"
arch=('any')
url="http://github.com/tpope/vim-pathogen"
license=('GPL')
groups=('vim-plugins')
depends=('vim')
-conflicts=('vim-pathogen-git')
-provides=('vim-pathogen')
-install=vimdoc.install
source=("$pkgname-$pkgver.tar.gz"::"https://github.com/tpope/$pkgname/archive/v$pkgver.tar.gz")
-md5sums=('8cf56e1d8f5c993bee44d89a003aa943')
+sha256sums=('2551a0f4ac3681cba97c265af088460c2977fba9c5152afb4ce1b56fdf3195a8')
package() {
cd "$pkgname-$pkgver"
- install -Dm755 autoload/pathogen.vim "$pkgdir"/usr/share/vim/vimfiles/autoload/pathogen.vim
+ install -Dm644 autoload/pathogen.vim "$pkgdir"/usr/share/vim/vimfiles/autoload/pathogen.vim
}
diff --git a/pcr/vim-pathogen/vimdoc.install b/pcr/vim-pathogen/vimdoc.install
deleted file mode 100644
index 0ffd9dde8..000000000
--- a/pcr/vim-pathogen/vimdoc.install
+++ /dev/null
@@ -1,14 +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
-}
-
-post_remove() {
- post_install
-}