2019-03-02 11:34:33 +01:00
|
|
|
# Copyright 1999-2019 Gentoo Authors
|
2018-10-18 13:31:56 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit vim-plugin
|
|
|
|
|
|
|
|
DESCRIPTION="vim plugin: Take Notes in rst"
|
|
|
|
HOMEPAGE="https://github.com/gu-fan/riv.vim"
|
|
|
|
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
|
|
|
inherit git-r3
|
|
|
|
EGIT_REPO_URI="https://github.com/gu-fan/riv.vim.git"
|
|
|
|
else
|
|
|
|
COMMIT_ID="09ae81f1fcf43d77a36705a7b9201f8cc1c85e23"
|
|
|
|
SRC_URI="https://github.com/gu-fan/riv.vim/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
|
|
|
S="${WORKDIR}/riv.vim-${COMMIT_ID}"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
fi
|
|
|
|
|
|
|
|
LICENSE="MIT"
|
2019-03-02 11:34:33 +01:00
|
|
|
# FIXME: /usr/share/vim/vimfiles/after/syntax/python.vim file collision
|
2019-03-02 16:32:40 +01:00
|
|
|
DEPEND="!!app-vim/jedi"
|