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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A94A6158095 for ; Thu, 4 Aug 2022 01:45:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22B75E0DDE; Thu, 4 Aug 2022 01:45:54 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7A9F8E0DDE for ; Thu, 4 Aug 2022 01:45:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A59C6340D69 for ; Thu, 4 Aug 2022 01:45:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0B56569 for ; Thu, 4 Aug 2022 01:45:48 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1659575114.34468378f3c2a77cb6b40e71f86d4549405041c7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pymilter/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pymilter/pymilter-1.0.4-r3.ebuild X-VCS-Directories: dev-python/pymilter/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 34468378f3c2a77cb6b40e71f86d4549405041c7 X-VCS-Branch: master Date: Thu, 4 Aug 2022 01:45:48 +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: 1a722683-09a5-4937-9e45-dccaea33fafd X-Archives-Hash: 7d14ff70f61c78e97f09a668306155ad commit: 34468378f3c2a77cb6b40e71f86d4549405041c7 Author: Sam James gentoo org> AuthorDate: Thu Aug 4 01:03:32 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Aug 4 01:05:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34468378 dev-python/pymilter: depend on libmilter libmilter and sendmail no longer block each other, and we also need a := dep on libmilter. (Straight-to-stable is intentional as long been in stable anyway, but not dropping old w/ git mv or similar yet in case folks want to downgrade to older sendmail for now.) Signed-off-by: Sam James gentoo.org> dev-python/pymilter/pymilter-1.0.4-r3.ebuild | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-python/pymilter/pymilter-1.0.4-r3.ebuild b/dev-python/pymilter/pymilter-1.0.4-r3.ebuild new file mode 100644 index 000000000000..268e99b48bdf --- /dev/null +++ b/dev-python/pymilter/pymilter-1.0.4-r3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Python interface to sendmail milter API" +HOMEPAGE="https://github.com/sdgathman/pymilter" +SRC_URI="https://github.com/sdgathman/${PN}/archive/${P}.tar.gz" +S="${WORKDIR}/${PN}-${P}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64" + +RDEPEND="mail-filter/libmilter:=" +DEPEND=" + ${RDEPEND} +" +BDEPEND=" + test? ( + $(python_gen_impl_dep sqlite) + ) +" + +distutils_enable_tests unittest