Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/khard/
Date: Sun, 02 Aug 2020 20:33:26
Message-Id: 1596400395.0667adfa7f4d72886d3ed8c9272713a43fc391cf.bman@gentoo
1 commit: 0667adfa7f4d72886d3ed8c9272713a43fc391cf
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 2 20:32:21 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 2 20:33:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0667adfa
7
8 app-misc/khard: port to py3{7,8}
9
10 Closes: https://bugs.gentoo.org/718232
11 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
12
13 app-misc/khard/khard-0.13.0.ebuild | 8 +++++++-
14 1 file changed, 7 insertions(+), 1 deletion(-)
15
16 diff --git a/app-misc/khard/khard-0.13.0.ebuild b/app-misc/khard/khard-0.13.0.ebuild
17 index 4cb2597381a..7b7ff564f1b 100644
18 --- a/app-misc/khard/khard-0.13.0.ebuild
19 +++ b/app-misc/khard/khard-0.13.0.ebuild
20 @@ -2,11 +2,17 @@
21 # Distributed under the terms of the GNU General Public License v2
22
23 EAPI=7
24 -PYTHON_COMPAT=( python3_6 )
25 +
26 +PYTHON_COMPAT=( python3_{7,8} )
27 +
28 +DISTUTILS_USE_SETUPTOOLS=rdepend
29 +
30 inherit distutils-r1
31 +
32 DESCRIPTION="Console CardDAV client"
33 HOMEPAGE="https://github.com/scheibler/khard"
34 LICENSE="GPL-3"
35 +
36 SLOT="0"
37 IUSE="test zsh-completion"
38 RESTRICT="!test? ( test )"