Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/iris/
Date: Wed, 07 Sep 2022 18:33:45
Message-Id: 1662575612.74fa6ef60b8c0bef4779d818011f8c0b117a254b.arthurzam@gentoo
1 commit: 74fa6ef60b8c0bef4779d818011f8c0b117a254b
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 7 18:27:26 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 7 18:33:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74fa6ef6
7
8 app-vim/iris: enable py3.10, py3.9 and disable py3.7
9
10 Closes: https://bugs.gentoo.org/832241
11 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
12
13 app-vim/iris/iris-1.0.0.ebuild | 13 ++++++-------
14 1 file changed, 6 insertions(+), 7 deletions(-)
15
16 diff --git a/app-vim/iris/iris-1.0.0.ebuild b/app-vim/iris/iris-1.0.0.ebuild
17 index ab566c61d3f9..bac5a5b5b601 100644
18 --- a/app-vim/iris/iris-1.0.0.ebuild
19 +++ b/app-vim/iris/iris-1.0.0.ebuild
20 @@ -1,9 +1,9 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 +# Copyright 1999-2022 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26
27 -PYTHON_COMPAT=( python{3_7,3_8} )
28 +PYTHON_COMPAT=( python3_{8..10} )
29
30 inherit vim-plugin python-r1
31
32 @@ -13,17 +13,16 @@ MY_P="${MY_PN}-${PV}"
33 DESCRIPTION="vim plugin: mail client for vim"
34 HOMEPAGE="https://github.com/soywod/iris.vim"
35 SRC_URI="https://github.com/soywod/iris.vim/archive/v${PV}.tar.gz -> ${P}.tar.gz"
36 +S="${WORKDIR}/${MY_P}"
37
38 LICENSE="MIT"
39 KEYWORDS="~amd64 ~x86"
40
41 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
42
43 -RDEPEND="
44 - dev-python/imapclient
45 - ${PYTHON_DEPS}"
46 -
47 -S="${WORKDIR}/${MY_P}"
48 +RDEPEND="${PYTHON_DEPS}
49 + dev-python/imapclient[${PYTHON_USEDEP}]
50 +"
51
52 DOCS=( README.md CHANGELOG.md )