summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2026-03-08 03:30:56 +0100
committerMichał Górny <mgorny@gentoo.org>2026-03-08 03:30:56 +0100
commit1729d10201593e897b25deae6f2f52edaa140191 (patch)
treea9e3a6f99f027d3d06a3498ffc9b8a67999d4053 /dev-python
parentbe2a3c3ffc4f531fd2a63ad01d5a2b321792b066 (diff)
downloadgentoo-1729d10201593e897b25deae6f2f52edaa140191.tar.gz
gentoo-1729d10201593e897b25deae6f2f52edaa140191.tar.bz2
gentoo-1729d10201593e897b25deae6f2f52edaa140191.zip
dev-python/pyspellchecker: Bump to 0.9.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/pyspellchecker/Manifest1
-rw-r--r--dev-python/pyspellchecker/pyspellchecker-0.9.0.ebuild29
2 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/pyspellchecker/Manifest b/dev-python/pyspellchecker/Manifest
index 699eac09fbf2..94a328153cc8 100644
--- a/dev-python/pyspellchecker/Manifest
+++ b/dev-python/pyspellchecker/Manifest
@@ -1 +1,2 @@
DIST pyspellchecker-0.8.4.gh.tar.gz 79001033 BLAKE2B 4b95e9318c631d54bb5b6f2a19986ff7bcfc5485b0dead298cd087a569cb0879bf1e82e3391bd821327431329b2bad64d989e816cabaa2061c23e419cee1144a SHA512 de7ee41cac319622af7790b16cf67d23e31a70b160794ec12d7db2cf81f10484230fe0f99d8c5197aeeb5d0bb15d753dbe23b15432a0a49a9e19d023220245ba
+DIST pyspellchecker-0.9.0.gh.tar.gz 79001668 BLAKE2B dda2a818c139afcc8564185a8338f68bccd9c5b4c9f109803b9c27fb18bafc48e6357550ad8659520472d54b05104fd517253b9deb5f4ce9d46bd6fcdf42ce71 SHA512 4c1cd3af70090aba1d799f8a0b71518c553f8e94c5b961065bd28ba3385a9cfb87c78e166ffa556e32e90fe2708fddb2dda0e37ee10e2699655670eee579aeb6
diff --git a/dev-python/pyspellchecker/pyspellchecker-0.9.0.ebuild b/dev-python/pyspellchecker/pyspellchecker-0.9.0.ebuild
new file mode 100644
index 000000000000..94284e5bbd61
--- /dev/null
+++ b/dev-python/pyspellchecker/pyspellchecker-0.9.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 2025-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517="setuptools"
+PYTHON_COMPAT=( python3_{11..14} )
+
+inherit distutils-r1
+
+DESCRIPTION="Pure python spell checker based on work by Peter Norvig"
+HOMEPAGE="
+ https://github.com/barrust/pyspellchecker/
+ https://pypi.org/project/pyspellchecker/
+"
+SRC_URI="
+ https://github.com/barrust/pyspellchecker/archive/refs/tags/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+distutils_enable_tests unittest
+
+python_test() {
+ eunittest -p '*_test.py'
+}