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 C338113933E for ; Thu, 22 Jul 2021 07:49:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12BF8E0A46; Thu, 22 Jul 2021 07:49:05 +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 E05DAE0A46 for ; Thu, 22 Jul 2021 07:49:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B7431342A93 for ; Thu, 22 Jul 2021 07:49:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 274F55C4 for ; Thu, 22 Jul 2021 07:49:02 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1626940073.dda9becf18900acf7a185224cc677b5835d9a212.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xapers/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/xapers/xapers-0.9.0.ebuild X-VCS-Directories: app-text/xapers/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: dda9becf18900acf7a185224cc677b5835d9a212 X-VCS-Branch: master Date: Thu, 22 Jul 2021 07:49:02 +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: 8ad1b594-0a9a-4fe2-bd1a-dcac07cc1fc5 X-Archives-Hash: 71b96527f7be7fd85c73e9b9198bac54 commit: dda9becf18900acf7a185224cc677b5835d9a212 Author: William Pettersson ewpettersson se> AuthorDate: Tue Jul 20 18:49:39 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Jul 22 07:47:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dda9becf app-text/xapers: Use python_test() for testing Changing src_test() to python_test() so the correct interpreter is used for tests, instead of just using the latest selected python interpreter. Also addresses QA notice by adding DISTUTILS_USE_SETUPTOOLS=rdepend Closes: https://bugs.gentoo.org/803023 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: William Pettersson ewpettersson.se> Closes: https://github.com/gentoo/gentoo/pull/21732 Signed-off-by: Joonas Niilola gentoo.org> app-text/xapers/xapers-0.9.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-text/xapers/xapers-0.9.0.ebuild b/app-text/xapers/xapers-0.9.0.ebuild index 7be1659cd17..50456ea2f2e 100644 --- a/app-text/xapers/xapers-0.9.0.ebuild +++ b/app-text/xapers/xapers-0.9.0.ebuild @@ -18,6 +18,8 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" +DISTUTILS_USE_SETUPTOOLS=rdepend + RDEPEND="app-text/poppler[utils] dev-libs/xapian-bindings[python,${PYTHON_USEDEP}] dev-python/pybtex[${PYTHON_USEDEP}] @@ -28,7 +30,7 @@ RDEPEND="app-text/poppler[utils] BDEPEND="test? ( ${RDEPEND} )" -src_test() { +python_test() { cd test || die ./all || die }