From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1581589-garchives=archives.gentoo.org@lists.gentoo.org> 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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 342E1158015 for <garchives@archives.gentoo.org>; Tue, 19 Dec 2023 16:33:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51C402BC015; Tue, 19 Dec 2023 16:33:42 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 21ADC2BC015 for <gentoo-commits@lists.gentoo.org>; Tue, 19 Dec 2023 16:33:42 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4C60B335DC5 for <gentoo-commits@lists.gentoo.org>; Tue, 19 Dec 2023 16:33:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A61D9C4 for <gentoo-commits@lists.gentoo.org>; Tue, 19 Dec 2023 16:33:39 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> 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" <mgorny@gentoo.org> Message-ID: <1703003616.2d51cd50f61b26aa958e448dfb1508c46d08970c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyspelling/pyspelling-2.9.ebuild X-VCS-Directories: dev-python/pyspelling/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2d51cd50f61b26aa958e448dfb1508c46d08970c X-VCS-Branch: master Date: Tue, 19 Dec 2023 16:33:39 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7f374b2e-4d87-4e99-aede-eb26b101306c X-Archives-Hash: 99669ce86310bff1547ca2f7a61f1124 commit: 2d51cd50f61b26aa958e448dfb1508c46d08970c Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue Dec 19 16:33:10 2023 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue Dec 19 16:33:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d51cd50 dev-python/pyspelling: Add test dep on English dictionaries Bug: https://bugs.gentoo.org/918329 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/pyspelling/pyspelling-2.9.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/dev-python/pyspelling/pyspelling-2.9.ebuild b/dev-python/pyspelling/pyspelling-2.9.ebuild index c541c4c3db44..5cb7f5346224 100644 --- a/dev-python/pyspelling/pyspelling-2.9.ebuild +++ b/dev-python/pyspelling/pyspelling-2.9.ebuild @@ -40,9 +40,13 @@ RDEPEND=" >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}] >=dev-python/wcmatch-6.5[${PYTHON_USEDEP}] " - +# The package can use either aspell or hunspell but tests both if both +# are installed. Therefore, we need to ensure that both have English +# dictionary installed. BDEPEND=" test? ( + app-dicts/aspell-en + app-dicts/myspell-en dev-vcs/git ) " @@ -52,11 +56,11 @@ distutils_enable_tests pytest python_prepare_all() { # mkdocs-git-revision-date-localized-plugin needs git repo if use doc; then - git init || die + git init -q || die git config --global user.email "you@example.com" || die git config --global user.name "Your Name" || die git add . || die - git commit -m 'init' || die + git commit -q -m 'init' || die fi distutils-r1_python_prepare_all