summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Schwartz2016-10-30 21:03:20 -0400
committerEli Schwartz2016-10-30 21:03:20 -0400
commit97a1b938f4f38313ad4d908781cf873757bdee10 (patch)
treecd941e16e45f4dddbf441dc0286733c06ac8ebab
parentfe4c80d1298141b9045c8651f8697447587d7a10 (diff)
downloadaur-97a1b938f4f38313ad4d908781cf873757bdee10.tar.gz
upgpkg: vim-eunuch 1.1-3
deprecate vimdoc install file; hook in vim-runtime give source a unique name
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD7
-rw-r--r--vimdoc.install14
3 files changed, 6 insertions, 20 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8d1d1d8b0d2b..b739eb77b560 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,13 @@
pkgbase = vim-eunuch
pkgdesc = Vim sugar for the UNIX shell commands that need it the most, by tpope
pkgver = 1.1
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/tpope/vim-eunuch
- install = vimdoc.install
arch = any
groups = vim-plugins
license = custom:vim
depends = vim
- source = https://github.com/tpope/vim-eunuch/archive/v1.1.tar.gz
+ source = vim-eunuch-1.1.tar.gz::https://github.com/tpope/vim-eunuch/archive/v1.1.tar.gz
sha256sums = e452ddd541ef10e5fa9af48e36b181df6d95e5fe96fcea56cf41b20f99db8532
pkgname = vim-eunuch
diff --git a/PKGBUILD b/PKGBUILD
index 8bfccf725494..4f8f7da005ab 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,16 +1,17 @@
# Maintainer: Eli Schwartz <eschwartz93@gmail.com>
+# All my PKGBUILDs are managed at https://github.com/eli-schwartz/pkgbuilds
+
pkgname=vim-eunuch
pkgver=1.1
-pkgrel=2
+pkgrel=3
pkgdesc="Vim sugar for the UNIX shell commands that need it the most, by tpope"
arch=('any')
url="https://github.com/tpope/${pkgname}"
license=('custom:vim')
groups=('vim-plugins')
depends=('vim')
-install=vimdoc.install
-source=("${url}/archive/v${pkgver}.tar.gz")
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
sha256sums=('e452ddd541ef10e5fa9af48e36b181df6d95e5fe96fcea56cf41b20f99db8532')
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
-}