Compare commits
No commits in common. "rawhide" and "f42" have entirely different histories.
7 changed files with 1 additions and 41 deletions
|
|
@ -1 +0,0 @@
|
|||
1
|
||||
|
|
@ -9,7 +9,7 @@ Summary: Esperanto hunspell dictionaries
|
|||
%global upstreamid 20100218
|
||||
Version: 0.%{upstreamid}
|
||||
Epoch: 1
|
||||
Release: 18%{?dist}
|
||||
Release: 17%{?dist}
|
||||
Source: http://www.esperantilo.org/literumilo-fontoj.tar.gz
|
||||
URL: http://www.esperantilo.org
|
||||
License: GPL-2.0-or-later
|
||||
|
|
@ -43,9 +43,6 @@ cp -p eo_morf.aff $RPM_BUILD_ROOT/%{_datadir}/%{dict_dirname}/eo.aff
|
|||
%{_datadir}/%{dict_dirname}/*
|
||||
|
||||
%changelog
|
||||
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.20100218-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.20100218-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +0,0 @@
|
|||
summary: Basic smoke test
|
||||
discover:
|
||||
how: fmf
|
||||
execute:
|
||||
how: tmt
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
require:
|
||||
- python3-enchant
|
||||
- hunspell-eo
|
||||
test: python3 test_dic_availability.py
|
||||
framework: shell
|
||||
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
import enchant
|
||||
|
||||
lang = "eo_morf"
|
||||
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")
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
require:
|
||||
- python3-enchant
|
||||
- hunspell-eo
|
||||
test: python3 test_suggest_words.py
|
||||
framework: shell
|
||||
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
import enchant
|
||||
|
||||
wdlst = [ "saluton", "teo", "mateno"]
|
||||
dic = enchant.Dict("eo_morf")
|
||||
for wd in wdlst:
|
||||
dic.check(wd)
|
||||
print("input word = {0}, Suggestions => {1}".format(wd, dic.suggest(wd)))
|
||||
Loading…
Add table
Add a link
Reference in a new issue