Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/neovim-remote/
Date: Fri, 05 Jan 2018 17:43:50
Message-Id: 1515174218.68df739510e810dd69036b98938c4ed55fc8b4de.monsieurp@gentoo
1 commit: 68df739510e810dd69036b98938c4ed55fc8b4de
2 Author: Aric Belsito <lluixhi <AT> gmail <DOT> com>
3 AuthorDate: Sat Sep 9 23:39:58 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 17:43:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68df7395
7
8 dev-python/neovim-remote: new package.
9
10 neovim-remote is an implementation of vim's remote server controls using
11 dev-python/neovim-python-client's msgpack rpc api and a separate `nvr` binary.
12
13 If https://github.com/neovim/neovim/issues/1750 gets resolved, it won't be
14 necessary anymore.
15
16 Closes: https://bugs.gentoo.org/576814
17 Closes: https://github.com/gentoo/gentoo/pull/5677
18
19 dev-python/neovim-remote/Manifest | 1 +
20 dev-python/neovim-remote/metadata.xml | 12 ++++++++++
21 .../neovim-remote/neovim-remote-1.8.6.ebuild | 26 ++++++++++++++++++++++
22 dev-python/neovim-remote/neovim-remote-9999.ebuild | 26 ++++++++++++++++++++++
23 4 files changed, 65 insertions(+)
24
25 diff --git a/dev-python/neovim-remote/Manifest b/dev-python/neovim-remote/Manifest
26 new file mode 100644
27 index 00000000000..c8fb9c3ed20
28 --- /dev/null
29 +++ b/dev-python/neovim-remote/Manifest
30 @@ -0,0 +1 @@
31 +DIST neovim-remote-1.8.6.tar.gz 434012 BLAKE2B 1fddb5e4376d3d17c2ff0c00e5f98700ab2d221af1ed1bc3f9c6dabe9cf1bdafe9f85041cb3a01f9a45f03df2d76bc0ae3c5a93603caa9ad461eb5ae50cb832f SHA512 b973b8c495a3a371b9a21ec4110beebbfe304f00d73aaf1da849df612e6ea9a08258379600ccb8d83154b8ef12e26088ba90a1668c5262b7dc9c62c844f42798
32
33 diff --git a/dev-python/neovim-remote/metadata.xml b/dev-python/neovim-remote/metadata.xml
34 new file mode 100644
35 index 00000000000..76ed9960fb5
36 --- /dev/null
37 +++ b/dev-python/neovim-remote/metadata.xml
38 @@ -0,0 +1,12 @@
39 +<?xml version='1.0' encoding='UTF-8'?>
40 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
41 +<pkgmetadata>
42 + <maintainer type="person">
43 + <email>lluixhi@×××××.com</email>
44 + <name>Aric Belsito</name>
45 + </maintainer>
46 + <maintainer type="project">
47 + <email>proxy-maint@g.o</email>
48 + <name>Proxy Maintainers</name>
49 + </maintainer>
50 +</pkgmetadata>
51
52 diff --git a/dev-python/neovim-remote/neovim-remote-1.8.6.ebuild b/dev-python/neovim-remote/neovim-remote-1.8.6.ebuild
53 new file mode 100644
54 index 00000000000..a6aa978b3b8
55 --- /dev/null
56 +++ b/dev-python/neovim-remote/neovim-remote-1.8.6.ebuild
57 @@ -0,0 +1,26 @@
58 +# Copyright 1999-2017 Gentoo Foundation
59 +# Distributed under the terms of the GNU General Public License v2
60 +
61 +EAPI=6
62 +PYTHON_COMPAT=( python3_{4,5,6} )
63 +
64 +inherit distutils-r1
65 +
66 +if [[ ${PV} == 9999 ]]; then
67 + inherit git-r3
68 + EGIT_REPO_URI="https://github.com/mhinz/${PN}.git"
69 +else
70 + KEYWORDS="~amd64"
71 + SRC_URI="https://github.com/mhinz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
72 +fi
73 +
74 +DESCRIPTION="A tool that helps control neovim processes"
75 +HOMEPAGE="https://github.com/mhinz/neovim-remote"
76 +LICENSE="MIT"
77 +SLOT="0"
78 +
79 +RDEPEND="
80 + dev-python/neovim-python-client[${PYTHON_USEDEP}]
81 + dev-python/psutil[${PYTHON_USEDEP}]"
82 +DEPEND="${RDEPEND}
83 + dev-python/setuptools[${PYTHON_USEDEP}]"
84
85 diff --git a/dev-python/neovim-remote/neovim-remote-9999.ebuild b/dev-python/neovim-remote/neovim-remote-9999.ebuild
86 new file mode 100644
87 index 00000000000..a6aa978b3b8
88 --- /dev/null
89 +++ b/dev-python/neovim-remote/neovim-remote-9999.ebuild
90 @@ -0,0 +1,26 @@
91 +# Copyright 1999-2017 Gentoo Foundation
92 +# Distributed under the terms of the GNU General Public License v2
93 +
94 +EAPI=6
95 +PYTHON_COMPAT=( python3_{4,5,6} )
96 +
97 +inherit distutils-r1
98 +
99 +if [[ ${PV} == 9999 ]]; then
100 + inherit git-r3
101 + EGIT_REPO_URI="https://github.com/mhinz/${PN}.git"
102 +else
103 + KEYWORDS="~amd64"
104 + SRC_URI="https://github.com/mhinz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
105 +fi
106 +
107 +DESCRIPTION="A tool that helps control neovim processes"
108 +HOMEPAGE="https://github.com/mhinz/neovim-remote"
109 +LICENSE="MIT"
110 +SLOT="0"
111 +
112 +RDEPEND="
113 + dev-python/neovim-python-client[${PYTHON_USEDEP}]
114 + dev-python/psutil[${PYTHON_USEDEP}]"
115 +DEPEND="${RDEPEND}
116 + dev-python/setuptools[${PYTHON_USEDEP}]"