diff options
author | Sam James <sam@gentoo.org> | 2021-06-01 00:27:27 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-06-01 00:28:01 +0000 |
commit | bd388adb0bb1a37d67f28045b42d8c2e88eb0080 (patch) | |
tree | 2326bdbb10143bd997939cf9b5a571957463e46f | |
parent | dev-lang/hy: cleanup test dep (diff) | |
download | gentoo-bd388adb0bb1a37d67f28045b42d8c2e88eb0080.tar.gz gentoo-bd388adb0bb1a37d67f28045b42d8c2e88eb0080.tar.bz2 gentoo-bd388adb0bb1a37d67f28045b42d8c2e88eb0080.zip |
dev-python/neovim-remote: sync live ebuild
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | dev-python/neovim-remote/neovim-remote-2.4.0.ebuild | 4 | ||||
-rw-r--r-- | dev-python/neovim-remote/neovim-remote-9999.ebuild | 14 |
2 files changed, 12 insertions, 6 deletions
diff --git a/dev-python/neovim-remote/neovim-remote-2.4.0.ebuild b/dev-python/neovim-remote/neovim-remote-2.4.0.ebuild index ec688444a52a..24fb72fd1950 100644 --- a/dev-python/neovim-remote/neovim-remote-2.4.0.ebuild +++ b/dev-python/neovim-remote/neovim-remote-2.4.0.ebuild @@ -5,19 +5,19 @@ EAPI=7 PYTHON_COMPAT=( python3_{7..10} ) DISTUTILS_USE_SETUPTOOLS=rdepend - inherit distutils-r1 if [[ ${PV} == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/mhinz/${PN}.git" else - KEYWORDS="~amd64 ~arm" SRC_URI="https://github.com/mhinz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm" fi DESCRIPTION="A tool that helps control neovim processes" HOMEPAGE="https://github.com/mhinz/neovim-remote" + LICENSE="MIT" SLOT="0" diff --git a/dev-python/neovim-remote/neovim-remote-9999.ebuild b/dev-python/neovim-remote/neovim-remote-9999.ebuild index 4dbb14c735ef..15b4a3d9ac79 100644 --- a/dev-python/neovim-remote/neovim-remote-9999.ebuild +++ b/dev-python/neovim-remote/neovim-remote-9999.ebuild @@ -10,17 +10,23 @@ 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" + KEYWORDS="~amd64 ~arm" fi DESCRIPTION="A tool that helps control neovim processes" HOMEPAGE="https://github.com/mhinz/neovim-remote" + LICENSE="MIT" SLOT="0" RDEPEND=" dev-python/pynvim[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" + dev-python/psutil[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +BDEPEND+=" + test? ( app-editors/neovim ) +" |