summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Schwartz2016-10-30 21:07:37 -0400
committerEli Schwartz2016-10-30 21:07:37 -0400
commitca85730cc8806563379a13ee6006af87bca811fc (patch)
tree23b20a2660a34205c2c858404ef37dc1df236597
parent2aca5cd51cbb40e5e82c208b90b9e018fe116160 (diff)
downloadaur-ca85730cc8806563379a13ee6006af87bca811fc.tar.gz
upgpkg: vim-flagship-git 1.1.r3.g77342d7-2
deprecate vimdoc install file; hook in vim-runtime
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD9
-rw-r--r--vimdoc.install14
3 files changed, 7 insertions, 21 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b21bfea677ef..6a42eacf1177 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = vim-flagship-git
pkgdesc = Configurable and extensible tab line and status line, by tpope
- pkgver = 1.0.r7.g6fb105f
- pkgrel = 1
+ pkgver = 1.1.r3.g77342d7
+ pkgrel = 2
url = https://github.com/tpope/vim-flagship
- install = vimdoc.install
arch = any
groups = vim-plugins
license = custom:vim
diff --git a/PKGBUILD b/PKGBUILD
index 7d3fce4e6397..c29d2e57b81d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,8 +1,10 @@
# Maintainer: Eli Schwartz <eschwartz93@gmail.com>
+# All my PKGBUILDs are managed at https://github.com/eli-schwartz/pkgbuilds
+
pkgname=vim-flagship-git
-pkgver=1.0.r7.g6fb105f
-pkgrel=1
+pkgver=1.1.r3.g77342d7
+pkgrel=2
pkgdesc="Configurable and extensible tab line and status line, by tpope"
arch=('any')
url="https://github.com/tpope/${pkgname%-git}"
@@ -12,13 +14,12 @@ depends=('vim')
makedepends=('git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
-install=vimdoc.install
source=("git://github.com/tpope/${pkgname%-git}.git")
sha512sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname%-git}"
- git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g' | cut -c2-
+ git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
package() {
diff --git a/vimdoc.install b/vimdoc.install
deleted file mode 100644
index a5f1f9a8c61f..000000000000
--- a/vimdoc.install
+++ /dev/null
@@ -1,14 +0,0 @@
-post_install() {
- echo -n "Updating Vim help tags..."
- /usr/bin/vim --noplugin -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
-}