Gentoo Archives: gentoo-commits

From: "Hanno Böck" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyClamd/
Date: Sun, 30 Jan 2022 10:12:55
Message-Id: 1643537565.8a8be9930c517fed660c672d19ac0c90f7155f7a.hanno@gentoo
1 commit: 8a8be9930c517fed660c672d19ac0c90f7155f7a
2 Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 30 10:12:45 2022 +0000
4 Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 30 10:12:45 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a8be993
7
8 dev-python/pyClamd: Python 3.10 support, config path fix.
9
10 New clamd packages changed the config file path, adapt
11 pyClamd to match that.
12 Explicitly disable tests that require running clamd.
13
14 Closes: https://bugs.gentoo.org/798198
15 Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
16 Package-Manager: Portage-3.0.30, Repoman-3.0.3
17
18 dev-python/pyClamd/pyClamd-0.4.0-r3.ebuild | 24 ++++++++++++++++++++++++
19 1 file changed, 24 insertions(+)
20
21 diff --git a/dev-python/pyClamd/pyClamd-0.4.0-r3.ebuild b/dev-python/pyClamd/pyClamd-0.4.0-r3.ebuild
22 new file mode 100644
23 index 000000000000..d89fe08eb48f
24 --- /dev/null
25 +++ b/dev-python/pyClamd/pyClamd-0.4.0-r3.ebuild
26 @@ -0,0 +1,24 @@
27 +# Copyright 1999-2022 Gentoo Authors
28 +# Distributed under the terms of the GNU General Public License v2
29 +
30 +EAPI=7
31 +
32 +PYTHON_COMPAT=( python3_{7,8,9,10} )
33 +
34 +inherit distutils-r1
35 +
36 +DESCRIPTION="python interface to Clamd (Clamav daemon)"
37 +HOMEPAGE="https://xael.org/pages/pyclamd-en.html"
38 +SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
39 +
40 +LICENSE="LGPL-3"
41 +SLOT="0"
42 +KEYWORDS="~amd64"
43 +IUSE=""
44 +
45 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
46 +RDEPEND="${DEPEND}"
47 +
48 +# Tests need clamd running and we cannot rely on that being
49 +# true during build
50 +RESTRICT="test"