commit: 68df739510e810dd69036b98938c4ed55fc8b4de Author: Aric Belsito <lluixhi <AT> gmail <DOT> com> AuthorDate: Sat Sep 9 23:39:58 2017 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Fri Jan 5 17:43:38 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68df7395
dev-python/neovim-remote: new package. neovim-remote is an implementation of vim's remote server controls using dev-python/neovim-python-client's msgpack rpc api and a separate `nvr` binary. If https://github.com/neovim/neovim/issues/1750 gets resolved, it won't be necessary anymore. Closes: https://bugs.gentoo.org/576814 Closes: https://github.com/gentoo/gentoo/pull/5677 dev-python/neovim-remote/Manifest | 1 + dev-python/neovim-remote/metadata.xml | 12 ++++++++++ .../neovim-remote/neovim-remote-1.8.6.ebuild | 26 ++++++++++++++++++++++ dev-python/neovim-remote/neovim-remote-9999.ebuild | 26 ++++++++++++++++++++++ 4 files changed, 65 insertions(+) diff --git a/dev-python/neovim-remote/Manifest b/dev-python/neovim-remote/Manifest new file mode 100644 index 00000000000..c8fb9c3ed20 --- /dev/null +++ b/dev-python/neovim-remote/Manifest @@ -0,0 +1 @@ +DIST neovim-remote-1.8.6.tar.gz 434012 BLAKE2B 1fddb5e4376d3d17c2ff0c00e5f98700ab2d221af1ed1bc3f9c6dabe9cf1bdafe9f85041cb3a01f9a45f03df2d76bc0ae3c5a93603caa9ad461eb5ae50cb832f SHA512 b973b8c495a3a371b9a21ec4110beebbfe304f00d73aaf1da849df612e6ea9a08258379600ccb8d83154b8ef12e26088ba90a1668c5262b7dc9c62c844f42798 diff --git a/dev-python/neovim-remote/metadata.xml b/dev-python/neovim-remote/metadata.xml new file mode 100644 index 00000000000..76ed9960fb5 --- /dev/null +++ b/dev-python/neovim-remote/metadata.xml @@ -0,0 +1,12 @@ +<?xml version='1.0' encoding='UTF-8'?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Aric Belsito</name> + </maintainer> + <maintainer type="project"> + <email>[email protected]</email> + <name>Proxy Maintainers</name> + </maintainer> +</pkgmetadata> diff --git a/dev-python/neovim-remote/neovim-remote-1.8.6.ebuild b/dev-python/neovim-remote/neovim-remote-1.8.6.ebuild new file mode 100644 index 00000000000..a6aa978b3b8 --- /dev/null +++ b/dev-python/neovim-remote/neovim-remote-1.8.6.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python3_{4,5,6} ) + +inherit distutils-r1 + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/mhinz/${PN}.git" +else + KEYWORDS="~amd64" + SRC_URI="https://github.com/mhinz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +fi + +DESCRIPTION="A tool that helps control neovim processes" +HOMEPAGE="https://github.com/mhinz/neovim-remote" +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + dev-python/neovim-python-client[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/neovim-remote/neovim-remote-9999.ebuild b/dev-python/neovim-remote/neovim-remote-9999.ebuild new file mode 100644 index 00000000000..a6aa978b3b8 --- /dev/null +++ b/dev-python/neovim-remote/neovim-remote-9999.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python3_{4,5,6} ) + +inherit distutils-r1 + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/mhinz/${PN}.git" +else + KEYWORDS="~amd64" + SRC_URI="https://github.com/mhinz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +fi + +DESCRIPTION="A tool that helps control neovim processes" +HOMEPAGE="https://github.com/mhinz/neovim-remote" +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + dev-python/neovim-python-client[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]"
