diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-09-07 21:27:26 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-09-07 21:33:32 +0300 |
commit | 74fa6ef60b8c0bef4779d818011f8c0b117a254b (patch) | |
tree | e3bac5f52daa89a7b07e8a2685c0d87f9d00d9a5 /app-vim | |
parent | dev-tcltk/tcllib: 1.21 bump (diff) | |
download | gentoo-74fa6ef60b8c0bef4779d818011f8c0b117a254b.tar.gz gentoo-74fa6ef60b8c0bef4779d818011f8c0b117a254b.tar.bz2 gentoo-74fa6ef60b8c0bef4779d818011f8c0b117a254b.zip |
app-vim/iris: enable py3.10, py3.9 and disable py3.7
Closes: https://bugs.gentoo.org/832241
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/iris/iris-1.0.0.ebuild | 13 |
1 files 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 ) |