From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DE0941382C5 for ; Fri, 5 Jan 2018 17:43:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F37EE088B; Fri, 5 Jan 2018 17:43:50 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E6602E088B for ; Fri, 5 Jan 2018 17:43:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A300D335C33 for ; Fri, 5 Jan 2018 17:43:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3AF47193 for ; Fri, 5 Jan 2018 17:43:47 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1515174218.68df739510e810dd69036b98938c4ed55fc8b4de.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/neovim-remote/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/neovim-remote/Manifest dev-python/neovim-remote/metadata.xml dev-python/neovim-remote/neovim-remote-1.8.6.ebuild dev-python/neovim-remote/neovim-remote-9999.ebuild X-VCS-Directories: dev-python/neovim-remote/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 68df739510e810dd69036b98938c4ed55fc8b4de X-VCS-Branch: master Date: Fri, 5 Jan 2018 17:43:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 49b43cfb-204d-494d-a0d4-bae27af163a5 X-Archives-Hash: e583074ff23a2207cf802c92a3199bc5 commit: 68df739510e810dd69036b98938c4ed55fc8b4de Author: Aric Belsito gmail com> AuthorDate: Sat Sep 9 23:39:58 2017 +0000 Commit: Patrice Clement gentoo 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 @@ + + + + + lluixhi@gmail.com + Aric Belsito + + + proxy-maint@gentoo.org + Proxy Maintainers + + 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}]"