summaryrefslogtreecommitdiff
path: root/dev-python/pyspelling
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-12-19 19:54:34 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-12-19 19:54:34 +0000
commit3f0a9aff8dc766c410952343d02561aab3eda2b9 (patch)
tree34f459712fafc5ecade61e0db6b3013cb387827c /dev-python/pyspelling
parent00ac4b34406552b4fbca786be59b2983b7f58669 (diff)
gentoo auto-resync : 19:12:2023 - 19:54:34
Diffstat (limited to 'dev-python/pyspelling')
-rw-r--r--dev-python/pyspelling/Manifest2
-rw-r--r--dev-python/pyspelling/pyspelling-2.9.ebuild10
2 files changed, 8 insertions, 4 deletions
diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index bd1c892f627c..a0180d4075f6 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1,3 +1,3 @@
DIST pyspelling-2.9.gh.tar.gz 151600 BLAKE2B c706767917e9ba3368f9670a492a2233b6a4c13c4dde6a594a06193d856b3fbad007988acb27486b8b8f62edfeb5a0b030ead3db712baa24b0ff3301cf776937 SHA512 b14d29dff4f7791d9223d20b490f4a48ba5a6a7613dc18fc3083a3b6bf810f9a42fcac94bfe72f92023802fc8c1fe0e6432d491af2f274a138ddc56db5550ea5
-EBUILD pyspelling-2.9.ebuild 1425 BLAKE2B e9709eda4c3932ccf2b2680c2e7770baa273b39355403fd12d504cce4d3d25c5ded9fcec5cbe691c080a89166f67453f34c261c105cc36a6886b652e76684f10 SHA512 d47f107a9eb3d44f5a6476ac4cd0c8dd7208bb97bda0acbd848a03e38bd5ba330c5b8bf9f894f470ce356adf083d324ef8fea1f0f35b02c8eb9ec376a55dd485
+EBUILD pyspelling-2.9.ebuild 1640 BLAKE2B 8da47f1b085e929286ac07d04383f9eed8fb699607500dc96d792428e6fb780cad8dade9d3051bdc47f72fb0a4c9452e45f38341a639fc236a9e1fd6080c24fa SHA512 502b2593a6c98ab538bba9610d801dbb94aefaca29d22d3eb923bfafcee6f96a152849b2dfc497bb7afe31480b8b1bc2c326c8e3687407952d93b475b9ca2d00
MISC metadata.xml 1905 BLAKE2B a858329db667aaa17a8eb8d9e8b7f40e0fd8e08131420f9437e9b1fc287320f8307a801540a10c9d8625ed47b78ffee1afe1e7d083cf0a56b4f818c33356a98b SHA512 de4483bfe4595aba0478f103752e8c43748310b0643113a27b3054d19c27635367fced5283b239bc1d989e1d47ce1d5bd0babc27da283f970d4d116d36f7b9ab
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