Received: by mail.netbsd.org (Postfix, from userid 605) id 381CA84E96; Wed, 28 Dec 2022 22:51:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6893E84CD8 for ; Wed, 28 Dec 2022 22:51:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id vCwMRtPvWo_U for ; Wed, 28 Dec 2022 22:51:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id BBA2484C71 for ; Wed, 28 Dec 2022 22:51:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B531CFA90; Wed, 28 Dec 2022 22:51:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1672267886175470" MIME-Version: 1.0 Date: Wed, 28 Dec 2022 22:51:26 +0000 From: "Nikita" Subject: CVS commit: pkgsrc/devel/py-neovim To: pkgsrc-changes@NetBSD.org Reply-To: nikita@netbsd.org X-Mailer: log_accum Message-Id: <20221228225126.B531CFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1672267886175470 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nikita Date: Wed Dec 28 22:51:26 UTC 2022 Modified Files: pkgsrc/devel/py-neovim: Makefile Log Message: py-neovim: needs py-greenlet at runtime. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-neovim/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1672267886175470 Content-Disposition: inline Content-Length: 888 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-neovim/Makefile diff -u pkgsrc/devel/py-neovim/Makefile:1.1 pkgsrc/devel/py-neovim/Makefile:1.2 --- pkgsrc/devel/py-neovim/Makefile:1.1 Wed Dec 28 19:28:16 2022 +++ pkgsrc/devel/py-neovim/Makefile Wed Dec 28 22:51:26 2022 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.1 2022/12/28 19:28:16 nikita Exp $ +# $NetBSD: Makefile,v 1.2 2022/12/28 22:51:26 nikita Exp $ DISTNAME= pynvim-0.4.3 +PKGREVISION= 1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/pynvim/neovim/} CATEGORIES= devel editors MASTER_SITES= ${MASTER_SITE_PYPI:=p/pynvim/} @@ -11,6 +12,7 @@ COMMENT= Python client to Neovim LICENSE= apache-2.0 DEPENDS+= ${PYPKGPREFIX}-msgpack>=0.5.0:../../devel/py-msgpack +DEPENDS+= ${PYPKGPREFIX}-greenlet>=2.0.1:../../devel/py-greenlet TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner .include "../../lang/python/egg.mk" --_----------=_1672267886175470--