From 7631fe6e3f228c1e9f6d00410ee1b5af534cf2e7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 28 Jan 2021 00:37:47 +0000 Subject: [PATCH 01/15] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zaf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zaf.spec b/zaf.spec index 7458906..a2f0828 100644 --- a/zaf.spec +++ b/zaf.spec @@ -2,7 +2,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.21.%{upstreamid}svn%{?dist} +Release: 0.22.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ @@ -55,6 +55,9 @@ popd %{_datadir}/hyphen/hyph_zu* %changelog +* Thu Jan 28 2021 Fedora Release Engineering - 0-0.22.20080714svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 0-0.21.20080714svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 085b0dd188e81a443bfaa8e3ada3a24f83186fdc Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Fri, 21 May 2021 22:15:02 +0530 Subject: [PATCH 02/15] Add gating tests --- tests/scripts/run_tests.sh | 15 +++ tests/scripts/test-hyphen.c | 212 ++++++++++++++++++++++++++++++++++++ tests/tests.yml | 13 +++ 3 files changed, 240 insertions(+) create mode 100644 tests/scripts/run_tests.sh create mode 100644 tests/scripts/test-hyphen.c 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..7923969 --- /dev/null +++ b/tests/scripts/run_tests.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +set -e + +gcc -Wall test-hyphen.c -o test-hyphen -lhyphen + +echo "Test to hyphenate given word => woordafbreking" +echo "woordafbreking" | ./test-hyphen /usr/share/hyphen/hyph_af_ZA.dic /dev/stdin + +echo "" +echo "" + +echo "Test to give all possible ways to hyphenate the given word => woordafbreking" +echo ""woordafbreking | ./test-hyphen -d /usr/share/hyphen/hyph_af_ZA.dic /dev/stdin + diff --git a/tests/scripts/test-hyphen.c b/tests/scripts/test-hyphen.c new file mode 100644 index 0000000..cb42ed3 --- /dev/null +++ b/tests/scripts/test-hyphen.c @@ -0,0 +1,212 @@ +/* This test file is part of upstream hyphen project */ + +#include +#include +#include +#include + +#include "hyphen.h" + +#define BUFSIZE 1000 + +void help() { + fprintf(stderr,"correct syntax is:\n"); + fprintf(stderr,"example [-d | -dd] hyphen_dictionary_file file_of_words_to_check\n"); + fprintf(stderr,"-o = use old algorithm (without non-standard hyphenation)\n"); + fprintf(stderr,"-d = hyphenation with listing of the possible hyphenations\n"); + fprintf(stderr,"-n = print hyphenation vector\n"); +} + +/* get a pointer to the nth 8-bit or UTF-8 character of the word */ +char * hindex(char * word, int n, int utf8) { + int j = 0; + while (j < n) { + j++; + word++; + while (utf8 && ((((unsigned char) *word) >> 6) == 2)) word++; + } + return word; +} + +/* list possible hyphenations with -dd option (example for the usage of the hyphenate2() function) */ +void single_hyphenations(char * word, char * hyphen, char ** rep, int * pos, int * cut, int utf8) { + int i, k, j = 0; + char r; + for (i = 0; (i + 1) < strlen(word); i++) { + if (utf8 && ((((unsigned char) word[i]) >> 6) == 2)) continue; + if ((hyphen[j] & 1)) { + if (rep && rep[j]) { + k = hindex(word, j - pos[j] + 1, utf8) - word; + r = word[k]; + word[k] = 0; + printf(" - %s%s", word, rep[j]); + word[k] = r; + printf("%s\n", hindex(word + k, cut[j], utf8)); + } else { + k = hindex(word, j + 1, utf8) - word; + r = word[k]; + word[k] = 0; + printf(" - %s=", word); + word[k] = r; + printf("%s\n", word + k); + } + } + j++; + } +} + +int +main(int argc, char** argv) +{ + + HyphenDict *dict; + int df; + int wtc; + FILE* wtclst; + int k, n, i, j, c; + char buf[BUFSIZE + 1]; + int nHyphCount; + char *hyphens; + char *lcword; + char *hyphword; + char hword[BUFSIZE * 2]; + int arg = 1; + int optd = 1; + int optn = 0; + int optdd = 0; + char ** rep; + int * pos; + int * cut; + + /* first parse the command line options */ + /* arg1 - hyphen dictionary file, arg2 - file of words to check */ + + if (argv[arg]) { + if (strcmp(argv[arg], "-o") == 0) { + optd = 0; + arg++; + } + if (strcmp(argv[arg], "-n") == 0) { + optn = 1; + arg++; + } + if (argv[arg] && strcmp(argv[arg], "-d") == 0) { + optd = 1; + optdd = 1; + arg++; + } + } + + if (argv[arg]) { + df = arg++; + } else { + help(); + exit(1); + } + + if (argv[arg]) { + wtc = arg++; + } else { + help(); + exit(1); + } + + /* load the hyphenation dictionary */ + if ((dict = hnj_hyphen_load(argv[df])) == NULL) { + fprintf(stderr, "Couldn't find file %s\n", argv[df]); + fflush(stderr); + exit(1); + } + + /* open the words to check list */ + wtclst = fopen(argv[wtc],"r"); + if (!wtclst) { + fprintf(stderr,"Error - could not open file of words to check\n"); + exit(1); + } + + + /* now read each word from the wtc file */ + while(fgets(buf,BUFSIZE,wtclst) != NULL) { + k = strlen(buf); + if (k && buf[k - 1] == '\n') buf[k - 1] = '\0'; + if (k >=2 && buf[k - 2] == '\r') buf[k-- - 2] = '\0'; + + /* set aside some buffers to hold lower cased */ + /* and hyphen information */ + lcword = (char *) malloc(k+1); + hyphens = (char *)malloc(k+5); + /* basic ascii lower-case, not suitable for real-world usage*/ + for (i = 0; i < k; ++i) { + lcword[i] = buf[i]; + if ( (lcword[i] >= 'A') && (lcword[i] <= 'Z') ) + lcword[i] += 32; + } + + /* first remove any trailing periods */ + n = k-1; + while((n >=0) && (lcword[n] == '.')) n--; + n++; + + /* now actually try to hyphenate the word */ + + rep = NULL; + pos = NULL; + cut = NULL; + hword[0] = '\0'; + + if ((!optd && hnj_hyphen_hyphenate(dict, lcword, n-1, hyphens)) || + (optd && hnj_hyphen_hyphenate2(dict, lcword, n-1, hyphens, hword, &rep, &pos, &cut))) { + free(hyphens); + free(lcword); + fprintf(stderr, "hyphenation error\n"); + exit(1); + } + + if (optn) fprintf(stderr, "%s\n", hyphens); + + if (!optd) { + /* now backfill hyphens[] for any removed periods */ + for (c = n; c < k; c++) hyphens[c] = '0'; + hyphens[k] = '\0'; + + /* now create a new char string showing hyphenation positions */ + /* count the hyphens and allocate space for the new hypehanted string */ + nHyphCount = 0; + for (i = 0; i < n; i++) + if (hyphens[i]&1) + nHyphCount++; + hyphword = (char *) malloc(k+1+nHyphCount); + j = 0; + for (i = 0; i < n; i++) { + hyphword[j++] = buf[i]; + if (hyphens[i]&1) { + hyphword[j++] = '-'; + } + } + hyphword[j] = '\0'; + fprintf(stdout,"%s\n",hyphword); + fflush(stdout); + free(hyphword); + } else { + fprintf(stdout,"%s\n", hword); + + + if (optdd) single_hyphenations(lcword, hyphens, rep, pos, cut, dict->utf8); + if (rep) { + for (i = 0; i < n - 1; i++) { + if (rep[i]) free(rep[i]); + } + free(rep); + free(pos); + free(cut); + } + } + free(hyphens); + free(lcword); + } + + fclose(wtclst); + hnj_hyphen_free(dict); + return 0; +} diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..6dae6c4 --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,13 @@ +- hosts: localhost + roles: + - role: standard-test-basic + required_packages: + - hyphen-devel + - gcc + tags: + - classic + tests: + - sample: + dir: scripts/ + run: ./run_tests.sh + From af1d525016bf88e700c5bf24039eb5494ccb0dd8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 22:13:18 +0000 Subject: [PATCH 03/15] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zaf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zaf.spec b/zaf.spec index a2f0828..42f75ed 100644 --- a/zaf.spec +++ b/zaf.spec @@ -2,7 +2,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.22.%{upstreamid}svn%{?dist} +Release: 0.23.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ @@ -55,6 +55,9 @@ popd %{_datadir}/hyphen/hyph_zu* %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 0-0.23.20080714svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Thu Jan 28 2021 Fedora Release Engineering - 0-0.22.20080714svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 097410b65060b06f7b5aa2e84245e7b717d23b2d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 05:46:53 +0000 Subject: [PATCH 04/15] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zaf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zaf.spec b/zaf.spec index 42f75ed..7d29cb9 100644 --- a/zaf.spec +++ b/zaf.spec @@ -2,7 +2,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.23.%{upstreamid}svn%{?dist} +Release: 0.24.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ @@ -55,6 +55,9 @@ popd %{_datadir}/hyphen/hyph_zu* %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 0-0.24.20080714svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 0-0.23.20080714svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 9d222f0fb3caf0727e8a2e59124101e6e24c0082 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 13:50:02 +0000 Subject: [PATCH 05/15] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zaf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zaf.spec b/zaf.spec index 7d29cb9..29541fc 100644 --- a/zaf.spec +++ b/zaf.spec @@ -2,7 +2,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.24.%{upstreamid}svn%{?dist} +Release: 0.25.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ @@ -55,6 +55,9 @@ popd %{_datadir}/hyphen/hyph_zu* %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 0-0.25.20080714svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 0-0.24.20080714svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From af23161c6c9efddd39a9101098d9cda481789dac Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 08:10:38 +0000 Subject: [PATCH 06/15] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zaf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zaf.spec b/zaf.spec index 29541fc..5e0d88b 100644 --- a/zaf.spec +++ b/zaf.spec @@ -2,7 +2,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.25.%{upstreamid}svn%{?dist} +Release: 0.26.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ @@ -55,6 +55,9 @@ popd %{_datadir}/hyphen/hyph_zu* %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 0-0.26.20080714svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jul 23 2022 Fedora Release Engineering - 0-0.25.20080714svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 6a1cc28985ce4dab76eab7986d81bc85521b6f44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Fri, 24 Feb 2023 09:53:46 +0000 Subject: [PATCH 07/15] migrated to SPDX license --- zaf.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/zaf.spec b/zaf.spec index 5e0d88b..ee58e67 100644 --- a/zaf.spec +++ b/zaf.spec @@ -2,12 +2,12 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.26.%{upstreamid}svn%{?dist} +Release: 0.27.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ #Hyphenation rules are already generated in upstream code -License: LGPLv2+ +License: LGPL-2.1-or-later BuildArch: noarch %description @@ -55,6 +55,9 @@ popd %{_datadir}/hyphen/hyph_zu* %changelog +* Fri Feb 24 2023 Caolán McNamara - 0-0.27.20080714svn +- migrated to SPDX license + * Sat Jan 21 2023 Fedora Release Engineering - 0-0.26.20080714svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 4a90914d3b56a32fe2b471c68f4d8bba9ea3dc0e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 19:36:01 +0000 Subject: [PATCH 08/15] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zaf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zaf.spec b/zaf.spec index ee58e67..25ebe66 100644 --- a/zaf.spec +++ b/zaf.spec @@ -2,7 +2,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.27.%{upstreamid}svn%{?dist} +Release: 0.28.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ @@ -55,6 +55,9 @@ popd %{_datadir}/hyphen/hyph_zu* %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 0-0.28.20080714svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Fri Feb 24 2023 Caolán McNamara - 0-0.27.20080714svn - migrated to SPDX license From 3c1b3ae2b2e0fd9fb83517bd5e57a515f1ecbc36 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 10:57:13 +0000 Subject: [PATCH 09/15] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- zaf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zaf.spec b/zaf.spec index 25ebe66..6fef780 100644 --- a/zaf.spec +++ b/zaf.spec @@ -2,7 +2,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.28.%{upstreamid}svn%{?dist} +Release: 0.29.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ @@ -55,6 +55,9 @@ popd %{_datadir}/hyphen/hyph_zu* %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 0-0.29.20080714svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 0-0.28.20080714svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From aa835b6955fe3f9d7fa3a9b8f41c915eb2c37e76 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 10:47:20 +0000 Subject: [PATCH 10/15] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- zaf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zaf.spec b/zaf.spec index 6fef780..8557ea8 100644 --- a/zaf.spec +++ b/zaf.spec @@ -2,7 +2,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.29.%{upstreamid}svn%{?dist} +Release: 0.30.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ @@ -55,6 +55,9 @@ popd %{_datadir}/hyphen/hyph_zu* %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 0-0.30.20080714svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sat Jan 27 2024 Fedora Release Engineering - 0-0.29.20080714svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From d4c011442f5fe688e526abc0b1442014206d7adb Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Thu, 29 Aug 2024 13:57:45 +0530 Subject: [PATCH 11/15] Add tmt testcase for CI --- .fmf/version | 1 + plans/zaf.fmf | 5 +++++ tests/main.fmf | 8 ++++++++ tests/{scripts => }/run_tests.sh | 0 tests/{scripts => }/test-hyphen.c | 0 tests/tests.yml | 13 ------------- 6 files changed, 14 insertions(+), 13 deletions(-) create mode 100644 .fmf/version create mode 100644 plans/zaf.fmf create mode 100644 tests/main.fmf rename tests/{scripts => }/run_tests.sh (100%) mode change 100644 => 100755 rename tests/{scripts => }/test-hyphen.c (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/zaf.fmf b/plans/zaf.fmf new file mode 100644 index 0000000..c1627f9 --- /dev/null +++ b/plans/zaf.fmf @@ -0,0 +1,5 @@ +summary: Basic smoke test +discover: + how: fmf +execute: + how: tmt diff --git a/tests/main.fmf b/tests/main.fmf new file mode 100644 index 0000000..2b81936 --- /dev/null +++ b/tests/main.fmf @@ -0,0 +1,8 @@ +require: +- hyphen-af +- hyphen-zu +- hyphen-devel +- gcc +test: bash ./run_tests.sh +framework: shell + diff --git a/tests/scripts/run_tests.sh b/tests/run_tests.sh old mode 100644 new mode 100755 similarity index 100% rename from tests/scripts/run_tests.sh rename to tests/run_tests.sh diff --git a/tests/scripts/test-hyphen.c b/tests/test-hyphen.c similarity index 100% rename from tests/scripts/test-hyphen.c rename to tests/test-hyphen.c diff --git a/tests/tests.yml b/tests/tests.yml deleted file mode 100644 index 6dae6c4..0000000 --- a/tests/tests.yml +++ /dev/null @@ -1,13 +0,0 @@ -- hosts: localhost - roles: - - role: standard-test-basic - required_packages: - - hyphen-devel - - gcc - tags: - - classic - tests: - - sample: - dir: scripts/ - run: ./run_tests.sh - From af05abb0a23604052f6ca2a3474e06431d963f12 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 16:40:16 +0000 Subject: [PATCH 12/15] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- zaf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zaf.spec b/zaf.spec index 8557ea8..d99f1d2 100644 --- a/zaf.spec +++ b/zaf.spec @@ -2,7 +2,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.30.%{upstreamid}svn%{?dist} +Release: 0.31.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ @@ -55,6 +55,9 @@ popd %{_datadir}/hyphen/hyph_zu* %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 0-0.31.20080714svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Sat Jul 20 2024 Fedora Release Engineering - 0-0.30.20080714svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 372ea933bbc0e1dca5dea89126a0973286fc1e78 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 21:15:30 +0000 Subject: [PATCH 13/15] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- zaf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zaf.spec b/zaf.spec index d99f1d2..46de7c7 100644 --- a/zaf.spec +++ b/zaf.spec @@ -2,7 +2,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.31.%{upstreamid}svn%{?dist} +Release: 0.32.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ @@ -55,6 +55,9 @@ popd %{_datadir}/hyphen/hyph_zu* %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 0-0.32.20080714svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 0-0.31.20080714svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 554fe3d34dd1e1771c6d46cea1ab48ec79b7970c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 21:05:27 +0000 Subject: [PATCH 14/15] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- zaf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zaf.spec b/zaf.spec index 46de7c7..157729b 100644 --- a/zaf.spec +++ b/zaf.spec @@ -2,7 +2,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.32.%{upstreamid}svn%{?dist} +Release: 0.33.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ @@ -55,6 +55,9 @@ popd %{_datadir}/hyphen/hyph_zu* %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 0-0.33.20080714svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jul 25 2025 Fedora Release Engineering - 0-0.32.20080714svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From d073ed577e53c583bdb9725801b71d369bc84f59 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 09:37:57 +0000 Subject: [PATCH 15/15] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- zaf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zaf.spec b/zaf.spec index 157729b..63e54fa 100644 --- a/zaf.spec +++ b/zaf.spec @@ -2,7 +2,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.33.%{upstreamid}svn%{?dist} +Release: 0.34.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ @@ -55,6 +55,9 @@ popd %{_datadir}/hyphen/hyph_zu* %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 0-0.34.20080714svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jan 17 2026 Fedora Release Engineering - 0-0.33.20080714svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild