summaryrefslogtreecommitdiff
path: root/app-vim/nerdtree/nerdtree-7.1.3-r1.ebuild
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2024-08-18 20:30:32 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2024-08-18 20:33:19 +0300
commit6fe2e7f93185af05ad8ea8ac3a4c90e821eed10f (patch)
tree87feb14d7fdaadb5486b19afa277a0049adf65a3 /app-vim/nerdtree/nerdtree-7.1.3-r1.ebuild
parent7774879915116ce6d5f265bb02280cc518ce990a (diff)
downloadgentoo-6fe2e7f93185af05ad8ea8ac3a4c90e821eed10f.tar.gz
gentoo-6fe2e7f93185af05ad8ea8ac3a4c90e821eed10f.tar.bz2
gentoo-6fe2e7f93185af05ad8ea8ac3a4c90e821eed10f.zip
app-vim/nerdtree: fix missing src_install
With the previous bump to EAPI=8, I've broken the package, thanks to the report in the bug, a solution was suggested which fixes it. Closes: https://bugs.gentoo.org/938104 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'app-vim/nerdtree/nerdtree-7.1.3-r1.ebuild')
-rw-r--r--app-vim/nerdtree/nerdtree-7.1.3-r1.ebuild26
1 files changed, 26 insertions, 0 deletions
diff --git a/app-vim/nerdtree/nerdtree-7.1.3-r1.ebuild b/app-vim/nerdtree/nerdtree-7.1.3-r1.ebuild
new file mode 100644
index 000000000000..d4df4bcc54b7
--- /dev/null
+++ b/app-vim/nerdtree/nerdtree-7.1.3-r1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vim-plugin
+
+if [[ ${PV} == 9999 ]] ; then
+ EGIT_REPO_URI="https://github.com/preservim/nerdtree.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/preservim/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86 ~x64-macos"
+fi
+
+DESCRIPTION="vim plugin: A tree explorer plugin for navigating the filesystem"
+HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=1658 https://github.com/preservim/nerdtree"
+LICENSE="WTFPL-2"
+
+VIM_PLUGIN_HELPFILES="NERD_tree"
+
+DOCS=( CHANGELOG.md README.markdown )
+
+src_install() {
+ vim-plugin_src_install lib nerdtree_plugin
+}