diff options
Diffstat (limited to 'app-vim/slimv/slimv-0.9.13_p20170910.ebuild')
-rw-r--r-- | app-vim/slimv/slimv-0.9.13_p20170910.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/app-vim/slimv/slimv-0.9.13_p20170910.ebuild b/app-vim/slimv/slimv-0.9.13_p20170910.ebuild new file mode 100644 index 000000000000..78e20a7742e7 --- /dev/null +++ b/app-vim/slimv/slimv-0.9.13_p20170910.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) + +inherit python-single-r1 vim-plugin vcs-snapshot + +# Commit Date: July 10th 2017 +COMMIT="acf9b30be71c54db4f4875d257b905941ca69ed8" + +DESCRIPTION="vim plugin: aid Lisp development by providing a SLIME-like Lisp and Clojure REPL" +HOMEPAGE="https://github.com/kovisoft/slimv" +SRC_URI="https://github.com/kovisoft/slimv/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +LICENSE="public-domain" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + || ( + app-editors/vim[python,${PYTHON_USEDEP}] + app-editors/gvim[python,${PYTHON_USEDEP}] + ) + ${PYTHON_DEPS} + || ( + dev-lisp/abcl + dev-lisp/ecls + dev-lisp/sbcl + dev-lisp/clisp + dev-lang/clojure + dev-lisp/clozurecl + )" + +REQUIRED_USE=${PYTHON_REQUIRED_USE} + +VIM_PLUGIN_HELPFILES="${PN}.txt" + +src_prepare() { + default + # remove emacs related files + rm -r slime swank-clojure || die +} |