diff --git a/.gitignore b/.gitignore index e69de29..1aac251 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,2 @@ +ta_IN-hunspell-Wordlist.tar.gz +/ta_in.1.0.0.tar.gz diff --git a/hunspell-ta.spec b/hunspell-ta.spec new file mode 100644 index 0000000..711316c --- /dev/null +++ b/hunspell-ta.spec @@ -0,0 +1,112 @@ +Name: hunspell-ta +Summary: Tamil hunspell dictionaries +Version: 1.0.0 +Release: 14%{?dist} +Epoch: 1 +Source: http://anishpatil.fedorapeople.org/ta_in.%{version}.tar.gz +URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git +License: GPLv2+ +BuildArch: noarch + +Requires: hunspell +Supplements: (hunspell and langpacks-ta) + +%description +Tamil hunspell dictionaries. + +%prep +%autosetup -c -n ta_IN + +%build + +%install +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/myspell +cp -p ta_IN/*.dic ta_IN/*.aff $RPM_BUILD_ROOT/%{_datadir}/myspell + +%files +%doc ta_IN/README +%license ta_IN/LICENSE ta_IN/Copyright +%{_datadir}/myspell/* + +%changelog +* Tue Jul 28 2020 Fedora Release Engineering - 1:1.0.0-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Wed Jan 29 2020 Fedora Release Engineering - 1:1.0.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jul 25 2019 Fedora Release Engineering - 1:1.0.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Fri Feb 01 2019 Fedora Release Engineering - 1:1.0.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jul 13 2018 Fedora Release Engineering - 1:1.0.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 1:1.0.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Sep 28 2017 Parag Nemade - 1:1.0.0-8 +- Fix the upstream URL (rh#1294622) + +* Wed Jul 26 2017 Fedora Release Engineering - 1:1.0.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 1:1.0.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Feb 19 2016 Parag Nemade - 1:1.0.0-5 +- Add Supplements: tag for langpacks naming guidelines +- Clean the specfile to follow current packaging guidelines + +* Thu Feb 04 2016 Fedora Release Engineering - 1:1.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 1:1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 1:1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sat May 17 2014 Anish Patil - 1:1.0.0-1 +- Upstream has changed and built with new tarball + +* Sat Aug 03 2013 Fedora Release Engineering - 20100226-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu Feb 14 2013 Fedora Release Engineering - 20100226-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Thu Aug 23 2012 Parag Nemade - 20100226-6 +- Resolves:rh#848848:-Source URL not working + +* Thu Jul 19 2012 Fedora Release Engineering - 20100226-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Feb 28 2012 Parag - 20100226-4 +- spec cleanup + +* Fri Jan 13 2012 Fedora Release Engineering - 20100226-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Feb 09 2011 Fedora Release Engineering - 20100226-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Mon Mar 08 2010 Parag - 20100226-1 +- Resolves:rh#568228 - [ta_IN]Fix license tag + +* Tue Sep 29 2009 Parag - 20090929-1 +- Update to new dictionary wordlist with new URL + +* Fri Jul 24 2009 Fedora Release Engineering - 20060222-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Feb 24 2009 Fedora Release Engineering - 20060222-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sun Jan 06 2008 Parag - 20060222-2 +- Added Copyright and fixed License tag + +* Thu Jan 03 2008 Parag - 20060222-1 +- Initial Fedora release diff --git a/sources b/sources new file mode 100644 index 0000000..3386380 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +752039e461923e357afabb39579b43cc ta_in.1.0.0.tar.gz diff --git a/tests/scripts/run_tests.sh b/tests/scripts/run_tests.sh new file mode 100644 index 0000000..80d965a --- /dev/null +++ b/tests/scripts/run_tests.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +python3 test_suggest_words.py +python3 test_dic_availability.py diff --git a/tests/scripts/test_dic_availability.py b/tests/scripts/test_dic_availability.py new file mode 100644 index 0000000..c43bb46 --- /dev/null +++ b/tests/scripts/test_dic_availability.py @@ -0,0 +1,10 @@ +#!/usr/bin/python3 + +import enchant + +lang = "ta_IN" +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") diff --git a/tests/scripts/test_suggest_words.py b/tests/scripts/test_suggest_words.py new file mode 100644 index 0000000..499e453 --- /dev/null +++ b/tests/scripts/test_suggest_words.py @@ -0,0 +1,9 @@ +#!/usr/bin/python3 + +import enchant + +wdlst = [ "வணகம்", "நம்டைய", "தமழ்"] +dic = enchant.Dict("ta_IN") +for wd in wdlst: + dic.check(wd) + print("input word = {0}, Suggestions => {1}".format(wd, dic.suggest(wd))) diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..5ffb74a --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,11 @@ +- hosts: localhost + roles: + - role: standard-test-basic + required_packages: + - python3-enchant + tags: + - classic + tests: + - sample: + dir: scripts/ + run: ./run_tests.sh