summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2020-10-16 00:11:33 +0200
committerThomas Deutschmann <whissi@gentoo.org>2020-10-16 00:12:52 +0200
commit23273bf17268b83eaff46fd09657561ee5b6575f (patch)
tree5cb5b64f12b4bb7bab9f9e39311d8398aeb47fe4 /dev-python/pymilter
parentdev-python/pymilter: Address distutils QA warning (diff)
downloadgentoo-23273bf17268b83eaff46fd09657561ee5b6575f.tar.gz
gentoo-23273bf17268b83eaff46fd09657561ee5b6575f.tar.bz2
gentoo-23273bf17268b83eaff46fd09657561ee5b6575f.zip
dev-python/pymilter: fix conditional USE in RDEPEND
Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-python/pymilter')
-rw-r--r--dev-python/pymilter/pymilter-1.0.4-r1.ebuild7
1 files changed, 5 insertions, 2 deletions
diff --git a/dev-python/pymilter/pymilter-1.0.4-r1.ebuild b/dev-python/pymilter/pymilter-1.0.4-r1.ebuild
index 2e7052b1e9a6..5bac52fe1348 100644
--- a/dev-python/pymilter/pymilter-1.0.4-r1.ebuild
+++ b/dev-python/pymilter/pymilter-1.0.4-r1.ebuild
@@ -19,9 +19,12 @@ KEYWORDS="amd64"
IUSE="test"
RESTRICT="!test? ( test )"
-DEPEND="|| ( mail-filter/libmilter mail-mta/sendmail )
+CDEPEND="|| ( mail-filter/libmilter mail-mta/sendmail )"
+
+DEPEND="${CDEPEND}
test? ( $(python_gen_impl_dep sqlite) )"
-RDEPEND="${DEPEND}"
+
+RDEPEND="${CDEPEND}"
S="${WORKDIR}/${PN}-${P}"