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 866FD138351 for ; Wed, 5 Feb 2020 06:57:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D93AE09CD; Wed, 5 Feb 2020 06:57:26 +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 13596E09CD for ; Wed, 5 Feb 2020 06:57:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 01B7A34E776 for ; Wed, 5 Feb 2020 06:57:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1B3A11F for ; Wed, 5 Feb 2020 06:57:22 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1580885813.2d8d1af266ddca93abc6b62e6909dc0eb667eb02.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pynvim/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pynvim/Manifest dev-python/pynvim/pynvim-0.4.1.ebuild X-VCS-Directories: dev-python/pynvim/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 2d8d1af266ddca93abc6b62e6909dc0eb667eb02 X-VCS-Branch: master Date: Wed, 5 Feb 2020 06:57:22 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3dd68015-6a94-4e18-b812-27fd2c0a464a X-Archives-Hash: 2cbd9abbc664eeddc05304a1f9dee809 commit: 2d8d1af266ddca93abc6b62e6909dc0eb667eb02 Author: Matt Turner gentoo org> AuthorDate: Wed Feb 5 06:50:05 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Feb 5 06:56:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d8d1af2 dev-python/pynvim: Version bump to 0.4.1 Signed-off-by: Matt Turner gentoo.org> dev-python/pynvim/Manifest | 1 + dev-python/pynvim/pynvim-0.4.1.ebuild | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/dev-python/pynvim/Manifest b/dev-python/pynvim/Manifest index 251234203f8..a5468934c75 100644 --- a/dev-python/pynvim/Manifest +++ b/dev-python/pynvim/Manifest @@ -1 +1,2 @@ DIST pynvim-0.4.0.tar.gz 53443 BLAKE2B de37fde43e90e8277f3c69cedde9226e929f122cc2ff3030766fa716069114bffb27ea9489f2de87c69d3e7a8e0ecc22397a94168cee542d37dc827dc3ed3d13 SHA512 4b3b0e295181cf8886850477d01daba1cba8ac456aedadc5b3881b0b4910724450c4e7774282f6edf3e322792b697ae8e925f40b2a0b181a95eee48aef42a97a +DIST pynvim-0.4.1.tar.gz 52340 BLAKE2B 4efddfbb8d1eb10aeb53b77f665d6ee186f697cc9cb6b3be2001468755a80b0a3bd4e105fda498e1310be9f65da3a0a8b12209c46a7122bb70f860c0a91c12a0 SHA512 78cb343ad02603a0d1c8f56079b46a9d341d8808a19112e758e5299994fe12a433cd61a4dbbaf0d5ffe00c676bcff844a53e910093efb862ad48cc4b4326f7de diff --git a/dev-python/pynvim/pynvim-0.4.1.ebuild b/dev-python/pynvim/pynvim-0.4.1.ebuild new file mode 100644 index 00000000000..08c2fb44841 --- /dev/null +++ b/dev-python/pynvim/pynvim-0.4.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_{6,7,8}} pypy3 ) +inherit distutils-r1 + +DESCRIPTION="Python client for Neovim" +HOMEPAGE="https://github.com/neovim/pynvim" +SRC_URI="https://github.com/neovim/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" + +DEPEND=" + dev-python/msgpack[${PYTHON_USEDEP}] + virtual/python-greenlet[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/trollius[${PYTHON_USEDEP}]' python2_7)" + +RDEPEND=" + ${DEPEND} + app-editors/neovim" + +distutils_enable_tests pytest + +python_prepare_all() { + # allow useage of renamed msgpack + sed -r -i "/^msgpack/d ; s:[\"']pytest-runner[\"'](,|)::" setup.py || die + distutils-r1_python_prepare_all +}