Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/
Date: Sun, 22 Aug 2021 21:53:59
Message-Id: 1629669220.c6d092f7ce8a1a487d4e20cd181b5fc30e89813f.soap@gentoo
1 commit: c6d092f7ce8a1a487d4e20cd181b5fc30e89813f
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Sun Aug 22 21:53:40 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 22 21:53:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6d092f7
7
8 net-irc/quasselgrep: Port to EAPI 8, fix DISTUTILS_USE_SETUPTOOLS
9
10 Closes: https://github.com/gentoo/gentoo/pull/22044
11 Closes: https://bugs.gentoo.org/809128
12 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
13 Signed-off-by: David Seifert <soap <AT> gentoo.org>
14
15 net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild | 15 ++++++++-------
16 1 file changed, 8 insertions(+), 7 deletions(-)
17
18 diff --git a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
19 index 2e651cfc5a8..831039aeb81 100644
20 --- a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
21 +++ b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild
22 @@ -1,11 +1,10 @@
23 # Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 -EAPI=7
27 +EAPI=8
28
29 -PYTHON_COMPAT=( python3_{7..9} )
30 -PYTHON_REQ_USE=( sqlite )
31 -DISTUTILS_USE_SETUPTOOLS=rdepend
32 +PYTHON_COMPAT=( python3_{8..9} )
33 +PYTHON_REQ_USE="sqlite"
34
35 inherit distutils-r1 optfeature
36
37 @@ -15,14 +14,16 @@ HOMEPAGE="https://github.com/fish-face/quasselgrep"
38 MY_COMMIT="9b6b0bc1252daa6e574363d87d04eebd981215a5"
39 SRC_URI="https://github.com/fish-face/quasselgrep/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
40 S="${WORKDIR}/${PN}-${MY_COMMIT}"
41 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
42
43 LICENSE="GPL-2"
44 SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
46
47 -RDEPEND="dev-python/future[${PYTHON_USEDEP}]
48 +RDEPEND="
49 + dev-python/future[${PYTHON_USEDEP}]
50 dev-python/pycryptodome[${PYTHON_USEDEP}]
51 - dev-python/python-dateutil[${PYTHON_USEDEP}]"
52 + dev-python/python-dateutil[${PYTHON_USEDEP}]
53 +"
54
55 pkg_postinst() {
56 optfeature "access postgres db" dev-python/psycopg:2