summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis Martinez2021-05-28 02:11:17 -0500
committerLuis Martinez2021-05-28 02:11:49 -0500
commitb60f4255dadcaadde640d93e334421b2744ef1b0 (patch)
tree0288f5f25c0bcb6262864c02250707ec5d1c63cf
parent78c08cc8a61e6937e56bacba99d696b5d421dc21 (diff)
downloadaur-b60f4255dadcaadde640d93e334421b2744ef1b0.tar.gz
remove incorrect install file
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--neovim-plenary-git.install16
3 files changed, 2 insertions, 20 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 1b4c87b24252..867ddd405aee 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = neovim-plenary-git
pkgdesc = A Lua library for Neovim plugins
pkgver = r150.3f99330
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/nvim-lua/plenary.nvim
- install = neovim-plenary-git.install
arch = any
groups = neovim-plugins
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index e927646e6d00..a0a7c660f5bf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=neovim-plenary-git
pkgver=r150.3f99330
-pkgrel=1
+pkgrel=2
pkgdesc="A Lua library for Neovim plugins"
arch=('any')
url="https://github.com/nvim-lua/plenary.nvim"
@@ -12,7 +12,6 @@ depends=('neovim')
makedepends=('git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
-install="$pkgname.install"
source=("$pkgname::git+$url")
sha256sums=('SKIP')
diff --git a/neovim-plenary-git.install b/neovim-plenary-git.install
deleted file mode 100644
index 658f2ae0126c..000000000000
--- a/neovim-plenary-git.install
+++ /dev/null
@@ -1,16 +0,0 @@
-post_install() {
- printf "
- :: This plugin must be activated through your init file.
- :: You can do so with either of the following:
-
- init.vim: lua 'require('gitsigns').setup()'
-
- init.lua: require('gitsigns').setup()
- \n"
-}
-
-post_remove() {
- printf "
- :: Remember to remove your setup from your init files!
- \n"
-}