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 B730F13835A for ; Mon, 18 May 2020 11:16:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA29BE08E5; Mon, 18 May 2020 11:16:00 +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 B152AE08E5 for ; Mon, 18 May 2020 11:16:00 +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 0E80534EFAF for ; Mon, 18 May 2020 11:15:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7CE2C1F5 for ; Mon, 18 May 2020 11:15:56 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1589800456.0a8b0b3d1ccc8b1a730d3438e23543a5f292db28.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-sortedm2m/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/django-sortedm2m/django-sortedm2m-2.0.0.ebuild X-VCS-Directories: dev-python/django-sortedm2m/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0a8b0b3d1ccc8b1a730d3438e23543a5f292db28 X-VCS-Branch: master Date: Mon, 18 May 2020 11:15:56 +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: e1ec10d8-33ff-464e-8434-ed880d891c9f X-Archives-Hash: 437e428f543295edbcca10c9f71f2b2a commit: 0a8b0b3d1ccc8b1a730d3438e23543a5f292db28 Author: Michał Górny gentoo org> AuthorDate: Mon May 18 11:14:16 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 18 11:14:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a8b0b3d dev-python/django-sortedm2m: Require sqlite for tests Closes: https://bugs.gentoo.org/723702 Signed-off-by: Michał Górny gentoo.org> dev-python/django-sortedm2m/django-sortedm2m-2.0.0.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/django-sortedm2m/django-sortedm2m-2.0.0.ebuild b/dev-python/django-sortedm2m/django-sortedm2m-2.0.0.ebuild index f513c330485..7e0513e1cb5 100644 --- a/dev-python/django-sortedm2m/django-sortedm2m-2.0.0.ebuild +++ b/dev-python/django-sortedm2m/django-sortedm2m-2.0.0.ebuild @@ -21,7 +21,11 @@ IUSE="test" RESTRICT="!test? ( test )" RDEPEND="dev-python/django[${PYTHON_USEDEP}]" -BDEPEND="test? ( ${RDEPEND} )" +BDEPEND=" + test? ( + $(python_gen_impl_dep sqlite) + ${RDEPEND} + )" python_test() { local -x PYTHONPATH=test_project:${PYTHONPATH}