From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BD530138359 for ; Wed, 2 Sep 2020 17:14:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE377E0866; Wed, 2 Sep 2020 17:14:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 92DE2E0866 for ; Wed, 2 Sep 2020 17:14:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 22D96340D48 for ; Wed, 2 Sep 2020 17:14:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 91F092EE for ; Wed, 2 Sep 2020 17:14:30 +0000 (UTC) From: "Hanno Böck" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hanno Böck" Message-ID: <1599066863.7517a9ba96480dfd157c766bed2f4a9bbd140aa6.hanno@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyClamd/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyClamd/pyClamd-0.4.0-r2.ebuild X-VCS-Directories: dev-python/pyClamd/ X-VCS-Committer: hanno X-VCS-Committer-Name: Hanno Böck X-VCS-Revision: 7517a9ba96480dfd157c766bed2f4a9bbd140aa6 X-VCS-Branch: master Date: Wed, 2 Sep 2020 17:14:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 58dd290b-c9d0-43c9-9d86-98b0b7407ab8 X-Archives-Hash: d7bb60e9b1035daf1ffb133654efbf43 commit: 7517a9ba96480dfd157c766bed2f4a9bbd140aa6 Author: Hanno Böck gentoo org> AuthorDate: Wed Sep 2 17:14:23 2020 +0000 Commit: Hanno Böck gentoo org> CommitDate: Wed Sep 2 17:14:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7517a9ba dev-python/pyClamd: Python 3.8/3.9 support. Bump EAPI to 7. Signed-off-by: Hanno Böck gentoo.org> Package-Manager: Portage-3.0.5, Repoman-3.0.1 dev-python/pyClamd/pyClamd-0.4.0-r2.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/dev-python/pyClamd/pyClamd-0.4.0-r2.ebuild b/dev-python/pyClamd/pyClamd-0.4.0-r2.ebuild new file mode 100644 index 00000000000..ac100d23389 --- /dev/null +++ b/dev-python/pyClamd/pyClamd-0.4.0-r2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="python interface to Clamd (Clamav daemon)" +HOMEPAGE="https://xael.org/pages/pyclamd-en.html" +SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}" + +src_prepare() { + default + sed -e 's:/etc/clamav/clamd.conf:/etc/clamd.conf:' \ + -i pyclamd/pyclamd.py || die +}