commit: 74fa6ef60b8c0bef4779d818011f8c0b117a254b Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Wed Sep 7 18:27:26 2022 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Wed Sep 7 18:33:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74fa6ef6
app-vim/iris: enable py3.10, py3.9 and disable py3.7 Closes: https://bugs.gentoo.org/832241 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> app-vim/iris/iris-1.0.0.ebuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/app-vim/iris/iris-1.0.0.ebuild b/app-vim/iris/iris-1.0.0.ebuild index ab566c61d3f9..bac5a5b5b601 100644 --- a/app-vim/iris/iris-1.0.0.ebuild +++ b/app-vim/iris/iris-1.0.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python{3_7,3_8} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit vim-plugin python-r1 @@ -13,17 +13,16 @@ MY_P="${MY_PN}-${PV}" DESCRIPTION="vim plugin: mail client for vim" HOMEPAGE="https://github.com/soywod/iris.vim" SRC_URI="https://github.com/soywod/iris.vim/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="MIT" KEYWORDS="~amd64 ~x86" REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RDEPEND=" - dev-python/imapclient - ${PYTHON_DEPS}" - -S="${WORKDIR}/${MY_P}" +RDEPEND="${PYTHON_DEPS} + dev-python/imapclient[${PYTHON_USEDEP}] +" DOCS=( README.md CHANGELOG.md )
