mirror of
https://github.com/TrentSPalmer/gentoo-overlay-trent.git
synced 2024-11-21 18:11:29 -08:00
move deoplete to app-vim category, add version 4.0
This commit is contained in:
parent
68050ec92f
commit
da39b2b6d0
3
app-vim/deoplete/Manifest
Normal file
3
app-vim/deoplete/Manifest
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
DIST deoplete-4.0.tar.gz 41296 BLAKE2B 69bd9118e460e2b56c07880ccd9a5ce366312100d840a6ba83438b25b48308f04f7b659e54085d35950508ed46973d1869688518b87fd8242c14f65c28ed67a8 SHA512 04a729db469a72cdacd30b54d10af1e076537919eadfdb6c2a61797f9ddf0f4bdcff707a9f7bb78f3a8d4026239854b00f14ebfc8724d40dcff3220463d8872f
|
||||||
|
EBUILD deoplete-4.0.ebuild 1017 BLAKE2B 5a22a4021bac9e4bb3711fc0a281f7692abf370dff653f35fd0c5b3101dfd80472e36ede707bff1d0246371dfc8bea5e6fb5aa80490dfcb2e53cafd650cc8454 SHA512 65a321fdbc761b0fddbac8210093f46437960838c278431f6a8712fd39ff7c0aa0557e85f4c97873329a4e3a86af80ad769a5fe3e958d0e2475a31157b41fc7a
|
||||||
|
MISC metadata.xml 222 BLAKE2B f0ecd2d956de9c731b8a6b6860f8756cb8dba0591f73463ce32d2747a1aa21296886faea89feee2b208286bbcdfe8e2e0a64263a92e954615fa94e2852d933d5 SHA512 dad470f0096a4fb3af9eeb60dab3216ece032790f6c49a3b014799ee0c02dee96a67317a672344e32f5614c5e05419727cc99113c6ecc37ae594931dd6441eef
|
43
app-vim/deoplete/deoplete-4.0.ebuild
Normal file
43
app-vim/deoplete/deoplete-4.0.ebuild
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
# Copyright 1999-2017 Gentoo Foundation
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=6
|
||||||
|
|
||||||
|
inherit vim-plugin
|
||||||
|
|
||||||
|
DESCRIPTION="Dark powered asynchronous completion framework for neovim"
|
||||||
|
HOMEPAGE="https://github.com/Shougo/deoplete.nvim"
|
||||||
|
SRC_URI="https://github.com/Shougo/deoplete.nvim/archive/${PV}-serial.tar.gz -> ${P}.tar.gz"
|
||||||
|
|
||||||
|
KEYWORDS="~amd64 ~x86"
|
||||||
|
LICENSE="MIT"
|
||||||
|
SLOT="0"
|
||||||
|
IUSE="+doc"
|
||||||
|
|
||||||
|
DEPEND=""
|
||||||
|
RDEPEND="app-editors/neovim[python]"
|
||||||
|
|
||||||
|
src_compile() {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
insinto /usr/share/vim/vimfiles
|
||||||
|
doins -r autoload
|
||||||
|
use doc && doins -r doc
|
||||||
|
doins -r plugin
|
||||||
|
doins -r rplugin
|
||||||
|
use doc && dodoc README.md
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_postinst() {
|
||||||
|
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. "
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_postrm() {
|
||||||
|
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. "
|
||||||
|
}
|
7
app-vim/deoplete/metadata.xml
Normal file
7
app-vim/deoplete/metadata.xml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>trenttdually@gmail.com</email>
|
||||||
|
</maintainer>
|
||||||
|
</pkgmetadata>
|
Loading…
Reference in New Issue
Block a user