From afd1377b6cd7a3ca3adaad4e313fd30f89e0b508 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 02:37:17 +0000 Subject: [PATCH 01/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index 90038f7..a0819ad 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -1,7 +1,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 10%{?dist} +Release: 11%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -29,6 +29,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/myspell %{_datadir}/myspell/* %changelog +* 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 From 9f9f4db5c8ee03f65262720f28b2c2b82de2ea15 Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Sun, 19 May 2019 16:14:10 +0530 Subject: [PATCH 02/19] Added CI tests Signed-off-by: Parag Nemade --- tests/scripts/run_tests.sh | 4 ++++ tests/scripts/test_dic_availability.py | 10 ++++++++++ tests/scripts/test_suggest_words.py | 9 +++++++++ tests/tests.yml | 11 +++++++++++ 4 files changed, 34 insertions(+) create mode 100644 tests/scripts/run_tests.sh create mode 100644 tests/scripts/test_dic_availability.py create mode 100644 tests/scripts/test_suggest_words.py create mode 100644 tests/tests.yml 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..db02ec1 --- /dev/null +++ b/tests/scripts/test_dic_availability.py @@ -0,0 +1,10 @@ +#!/usr/bin/python3 + +import enchant + +lang = "gu_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..b84f0f1 --- /dev/null +++ b/tests/scripts/test_suggest_words.py @@ -0,0 +1,9 @@ +#!/usr/bin/python3 + +import enchant + +wdlst = [ "પાણ", "આણો", "ગુજારા"] +dic = enchant.Dict("gu_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 From 6dbb48c705942558b72ba10f8733cf54232e21dc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 08:46:52 +0000 Subject: [PATCH 03/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index a0819ad..adcd4c5 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -1,7 +1,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 11%{?dist} +Release: 12%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -29,6 +29,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/myspell %{_datadir}/myspell/* %changelog +* 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 From 1b9f39b574c598a12b5b264eadfd58638cc324bc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 04:38:06 +0000 Subject: [PATCH 04/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index adcd4c5..14e32bd 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -1,7 +1,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 12%{?dist} +Release: 13%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -29,6 +29,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/myspell %{_datadir}/myspell/* %changelog +* 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 From 416f34acf7de32f683eb29dba30f4b7526934cbb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 01:09:02 +0000 Subject: [PATCH 05/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index 14e32bd..d56cd41 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -1,7 +1,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 13%{?dist} +Release: 14%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -29,6 +29,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/myspell %{_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 From a8d932325a5252170a481eca13644ade43e75819 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 13:44:08 +0000 Subject: [PATCH 06/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index d56cd41..bbda5ec 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -1,7 +1,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 14%{?dist} +Release: 15%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -29,6 +29,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/myspell %{_datadir}/myspell/* %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 1:1.0.0-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jul 28 2020 Fedora Release Engineering - 1:1.0.0-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 6b26a58550504490d535efef4d506b770768c375 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 07:53:54 +0000 Subject: [PATCH 07/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index bbda5ec..af7837c 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -1,7 +1,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 15%{?dist} +Release: 16%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -29,6 +29,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/myspell %{_datadir}/myspell/* %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 1:1.0.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 1:1.0.0-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From ba0ebd16c60a4939122291f2ab2c65f74c632e68 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 12:37:29 +0000 Subject: [PATCH 08/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index af7837c..95badf5 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -1,7 +1,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 16%{?dist} +Release: 17%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -29,6 +29,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/myspell %{_datadir}/myspell/* %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 1:1.0.0-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 1:1.0.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 7136c4462b8782b8622a81769bbe1735c0790c7e Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Tue, 22 Mar 2022 11:53:17 +0530 Subject: [PATCH 09/19] Add conditional for new hunspell dir path and update to Requires: hunspell-filesystem --- hunspell-gu.spec | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index 95badf5..57a1005 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -1,14 +1,20 @@ +%if 0%{?fedora} >= 36 || 0%{?rhel} > 9 +%global dict_dirname hunspell +%else +%global dict_dirname myspell +%endif + Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 17%{?dist} +Release: 18%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git License: GPL+ BuildArch: noarch -Requires: hunspell +Requires: hunspell-filesystem Supplements: (hunspell and langpacks-gu) %description @@ -21,14 +27,18 @@ Gujarati hunspell dictionaries. %install -mkdir -p $RPM_BUILD_ROOT/%{_datadir}/myspell -cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/myspell +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/%{dict_dirname} +cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/%{dict_dirname} %files %doc gu_IN/README_gu_IN.txt -%{_datadir}/myspell/* +%{_datadir}/%{dict_dirname}/* %changelog +* Tue Mar 22 2022 Parag Nemade - 1:1.0.0-18 +- Add conditional for new hunspell dir path and update to Requires: + hunspell-filesystem + * Thu Jan 20 2022 Fedora Release Engineering - 1:1.0.0-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From a8eb91fb64fbda0a755f1662d85171fdad104f4e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 13:56:43 +0000 Subject: [PATCH 10/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index 57a1005..0f9c61a 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -7,7 +7,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 18%{?dist} +Release: 19%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -35,6 +35,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/%{dict_dirname %{_datadir}/%{dict_dirname}/* %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 1:1.0.0-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Tue Mar 22 2022 Parag Nemade - 1:1.0.0-18 - Add conditional for new hunspell dir path and update to Requires: hunspell-filesystem From f391181715a151c4ab0f7a2e0ca044a12909b3a7 Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Wed, 23 Nov 2022 10:17:08 +0530 Subject: [PATCH 11/19] Update license tag to SPDX format --- hunspell-gu.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index 0f9c61a..ab37a09 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -7,11 +7,11 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 19%{?dist} +Release: 20%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git -License: GPL+ +License: GPL-1.0-or-later BuildArch: noarch Requires: hunspell-filesystem @@ -35,6 +35,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/%{dict_dirname %{_datadir}/%{dict_dirname}/* %changelog +* Wed Nov 23 2022 Parag Nemade - 1:1.0.0-20 +- Update license tag to SPDX format + * Thu Jul 21 2022 Fedora Release Engineering - 1:1.0.0-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From d29eda4148759f17c5a18dd4abb308422476fbd7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Jan 2023 12:25:44 +0000 Subject: [PATCH 12/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index ab37a09..57b9410 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -7,7 +7,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 20%{?dist} +Release: 21%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -35,6 +35,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/%{dict_dirname %{_datadir}/%{dict_dirname}/* %changelog +* Thu Jan 19 2023 Fedora Release Engineering - 1:1.0.0-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Wed Nov 23 2022 Parag Nemade - 1:1.0.0-20 - Update license tag to SPDX format From 896d72782055ab8f2b53846d578e0dfa81358416 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jul 2023 06:38:30 +0000 Subject: [PATCH 13/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index 57b9410..fc55838 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -7,7 +7,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 21%{?dist} +Release: 22%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -35,6 +35,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/%{dict_dirname %{_datadir}/%{dict_dirname}/* %changelog +* Thu Jul 20 2023 Fedora Release Engineering - 1:1.0.0-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Thu Jan 19 2023 Fedora Release Engineering - 1:1.0.0-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 536e584662dd19d03e5d15afd1828dfbd1a46748 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jan 2024 22:22:53 +0000 Subject: [PATCH 14/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index fc55838..ce32c16 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -7,7 +7,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 22%{?dist} +Release: 23%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -35,6 +35,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/%{dict_dirname %{_datadir}/%{dict_dirname}/* %changelog +* Sat Jan 20 2024 Fedora Release Engineering - 1:1.0.0-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Thu Jul 20 2023 Fedora Release Engineering - 1:1.0.0-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From bc963c21613fe2a72e0ffa1a0325387acc1e8950 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 24 Jan 2024 21:58:00 +0000 Subject: [PATCH 15/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index ce32c16..d84ad11 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -7,7 +7,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 23%{?dist} +Release: 24%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -35,6 +35,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/%{dict_dirname %{_datadir}/%{dict_dirname}/* %changelog +* Wed Jan 24 2024 Fedora Release Engineering - 1:1.0.0-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jan 20 2024 Fedora Release Engineering - 1:1.0.0-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From d74eb59139456bc214794fe55125c9ff5ada2e5d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 18 Jul 2024 09:33:41 +0000 Subject: [PATCH 16/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index d84ad11..66ebc71 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -7,7 +7,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 24%{?dist} +Release: 25%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -35,6 +35,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/%{dict_dirname %{_datadir}/%{dict_dirname}/* %changelog +* Thu Jul 18 2024 Fedora Release Engineering - 1:1.0.0-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Wed Jan 24 2024 Fedora Release Engineering - 1:1.0.0-24 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From efe43a873b6141f11dad4f2ed9d7f8860afa4836 Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Tue, 23 Jul 2024 17:21:05 +0530 Subject: [PATCH 17/19] Update CI tests to use tmt tool --- .fmf/version | 1 + plans/hunspell-gu.fmf | 5 +++++ tests/scripts/run_tests.sh | 4 ---- tests/test_dic_availability.fmf | 6 ++++++ tests/{scripts => }/test_dic_availability.py | 0 tests/test_suggest_words.fmf | 6 ++++++ tests/{scripts => }/test_suggest_words.py | 0 tests/tests.yml | 11 ----------- 8 files changed, 18 insertions(+), 15 deletions(-) create mode 100644 .fmf/version create mode 100644 plans/hunspell-gu.fmf delete mode 100644 tests/scripts/run_tests.sh create mode 100644 tests/test_dic_availability.fmf rename tests/{scripts => }/test_dic_availability.py (100%) create mode 100644 tests/test_suggest_words.fmf rename tests/{scripts => }/test_suggest_words.py (100%) delete mode 100644 tests/tests.yml diff --git a/.fmf/version b/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/plans/hunspell-gu.fmf b/plans/hunspell-gu.fmf new file mode 100644 index 0000000..c1627f9 --- /dev/null +++ b/plans/hunspell-gu.fmf @@ -0,0 +1,5 @@ +summary: Basic smoke test +discover: + how: fmf +execute: + how: tmt diff --git a/tests/scripts/run_tests.sh b/tests/scripts/run_tests.sh deleted file mode 100644 index 80d965a..0000000 --- a/tests/scripts/run_tests.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - -python3 test_suggest_words.py -python3 test_dic_availability.py diff --git a/tests/test_dic_availability.fmf b/tests/test_dic_availability.fmf new file mode 100644 index 0000000..39ad0ad --- /dev/null +++ b/tests/test_dic_availability.fmf @@ -0,0 +1,6 @@ +require: +- python3-enchant +- hunspell-gu +test: python3 test_dic_availability.py +framework: shell + diff --git a/tests/scripts/test_dic_availability.py b/tests/test_dic_availability.py similarity index 100% rename from tests/scripts/test_dic_availability.py rename to tests/test_dic_availability.py diff --git a/tests/test_suggest_words.fmf b/tests/test_suggest_words.fmf new file mode 100644 index 0000000..00accce --- /dev/null +++ b/tests/test_suggest_words.fmf @@ -0,0 +1,6 @@ +require: +- python3-enchant +- hunspell-gu +test: python3 test_suggest_words.py +framework: shell + diff --git a/tests/scripts/test_suggest_words.py b/tests/test_suggest_words.py similarity index 100% rename from tests/scripts/test_suggest_words.py rename to tests/test_suggest_words.py diff --git a/tests/tests.yml b/tests/tests.yml deleted file mode 100644 index 5ffb74a..0000000 --- a/tests/tests.yml +++ /dev/null @@ -1,11 +0,0 @@ -- hosts: localhost - roles: - - role: standard-test-basic - required_packages: - - python3-enchant - tags: - - classic - tests: - - sample: - dir: scripts/ - run: ./run_tests.sh From ea3c7429599e7758b60b5baee401ae31c92f62d6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jan 2025 06:16:04 +0000 Subject: [PATCH 18/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index 66ebc71..c23a7a6 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -7,7 +7,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 25%{?dist} +Release: 26%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -35,6 +35,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/%{dict_dirname %{_datadir}/%{dict_dirname}/* %changelog +* Fri Jan 17 2025 Fedora Release Engineering - 1:1.0.0-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Thu Jul 18 2024 Fedora Release Engineering - 1:1.0.0-25 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 49084194589be49321fe4c0b2f61f47e24f07ae1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 24 Jul 2025 17:12:16 +0000 Subject: [PATCH 19/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- hunspell-gu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hunspell-gu.spec b/hunspell-gu.spec index c23a7a6..2121a25 100644 --- a/hunspell-gu.spec +++ b/hunspell-gu.spec @@ -7,7 +7,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 1.0.0 -Release: 26%{?dist} +Release: 27%{?dist} Epoch: 1 Source: http://anishpatil.fedorapeople.org/gu_in.%{version}.tar.gz URL: https://gitorious.org/hunspell_dictionaries/hunspell_dictionaries.git @@ -35,6 +35,9 @@ cp -p gu_IN/gu_IN.dic gu_IN/gu_IN.aff $RPM_BUILD_ROOT/%{_datadir}/%{dict_dirname %{_datadir}/%{dict_dirname}/* %changelog +* Thu Jul 24 2025 Fedora Release Engineering - 1:1.0.0-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Fri Jan 17 2025 Fedora Release Engineering - 1:1.0.0-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild