Compare commits

..

No commits in common. "rawhide" and "f41" have entirely different histories.

7 changed files with 1 additions and 44 deletions

View file

@ -1 +0,0 @@
1

View file

@ -7,7 +7,7 @@
Name: hunspell-ca
Summary: Catalan hunspell dictionaries
Version: 3.0.8
Release: 6%{?dist}
Release: 4%{?dist}
Source: https://github.com/Softcatala/catalan-dict-tools/releases/download/v%{version}/ca.%{version}-hunspell.zip
URL: https://www.softcatala.org/projectes/corrector-ortografic/
License: GPL-2.0-or-later OR LGPL-2.1-or-later
@ -46,12 +46,6 @@ popd
%{_datadir}/%{dict_dirname}/*
%changelog
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.8-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.8-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.8-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild

View file

@ -1,5 +0,0 @@
summary: Basic smoke test
discover:
how: fmf
execute:
how: tmt

View file

@ -1,6 +0,0 @@
require:
- python3-enchant
- hunspell-ca
test: python3 test_dic_availability.py
framework: shell

View file

@ -1,10 +0,0 @@
#!/usr/bin/python3
import enchant
lang = "ca_ES"
try:
dic = enchant.request_dict(lang)
print("Dictionary for {0} language is available for use".format(lang))
except enchant.errors.DictNotFoundError:
print("Dictionary is not installed for use")

View file

@ -1,6 +0,0 @@
require:
- python3-enchant
- hunspell-ca
test: python3 test_suggest_words.py
framework: shell

View file

@ -1,9 +0,0 @@
#!/usr/bin/python3
import enchant
wdlst = [ "hola", "te", "matí"]
dic = enchant.Dict("ca_ES")
for wd in wdlst:
dic.check(wd)
print("input word = {0}, Suggestions => {1}".format(wd, dic.suggest(wd)))