From 379e173de4dc3845de46943527ddbbbe66b8bc74 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 03:37:41 +0000 Subject: [PATCH 01/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 6c66129..2ff4136 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 21%{?dist} +Release: 22%{?dist} License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 @@ -27,6 +27,9 @@ make DESTDIR=%{buildroot} INSTALL="%{__install} -p" install %{_mandir}/man1/wf.1* %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 0.41-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Jul 27 2019 Fedora Release Engineering - 0.41-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 9a714d4cb8197c25914e8965a6751f284ba19d72 Mon Sep 17 00:00:00 2001 From: Terje Rosten Date: Sat, 1 Feb 2020 12:21:41 +0100 Subject: [PATCH 02/20] Fix GCC 10 ftbfs --- 0001-Fix-usage-of-global-variables.patch | 154 +++++++++++++++++++++++ wf.spec | 7 +- 2 files changed, 160 insertions(+), 1 deletion(-) create mode 100644 0001-Fix-usage-of-global-variables.patch diff --git a/0001-Fix-usage-of-global-variables.patch b/0001-Fix-usage-of-global-variables.patch new file mode 100644 index 0000000..5f8d1c5 --- /dev/null +++ b/0001-Fix-usage-of-global-variables.patch @@ -0,0 +1,154 @@ +From 0b77330ccb9c5a819acd7ebd8efcbc9338b5f63e Mon Sep 17 00:00:00 2001 +From: Terje Rosten +Date: Sat, 1 Feb 2020 12:02:30 +0100 +Subject: [PATCH] Fix usage of global variables + +--- + src/freq.c | 14 ++++++++------ + src/freq.h | 13 +++++-------- + src/main.c | 9 +++++---- + 3 files changed, 18 insertions(+), 18 deletions(-) + +diff --git a/src/freq.c b/src/freq.c +index 271af9d..2d68650 100644 +--- a/src/freq.c ++++ b/src/freq.c +@@ -19,6 +19,8 @@ + #include + #include "freq.h" + ++Wordlist * wordhash[NHASH]; ++ + /* + * Since wf is not managing character sets using somehting like libiconv to an + * internal representation (it assumes ISO-LATIN-1) it is necessary to handle +@@ -86,7 +88,7 @@ addword_source(Wordsource *w, char *orig) + } + + int +-addword (char *orig, char *name) ++addword (char *orig, char *name, struct opttable opt) + { + int h; + char * text; +@@ -129,20 +131,20 @@ worddump_source(Wordsource *w) + } + + void +-worddump (void) ++worddump (struct opttable opt) + { + Wordlist *w; + int h; + + for (h = 0; h < NHASH; h++) + for (w = wordhash[h]; w != NULL; w = w->next) { +- do_output(w); ++ do_output(w, opt); + } + return; + } + + void +-wordsort (int amount) ++wordsort (int amount, struct opttable opt) + { + Wordlist *w, *r; + Wordlist **u,**t; +@@ -164,14 +166,14 @@ wordsort (int amount) + for (h = 0; h < amount; h++) + { + r = t[h]; +- do_output(r); ++ do_output(r, opt); + } + + return; + } + + void +-do_output (Wordlist *w) ++do_output (Wordlist *w, struct opttable opt) + { + if (w->count < opt.min_count) + return; +diff --git a/src/freq.h b/src/freq.h +index 8666930..38938ee 100644 +--- a/src/freq.h ++++ b/src/freq.h +@@ -8,7 +8,7 @@ struct opttable { + int per_word; + int min_length; + char *fname; +-} opt; ++}; + + /* + * ISO-8858 Interest character table +@@ -108,17 +108,14 @@ struct Wordlist { + Wordsource *source; + }; + +-Wordlist * wordhash[NHASH]; +-Wordsource * wordhash_orig[NHASH]; +- + /* freq.c */ + int wf_isalpha(unsigned char c); + int wf_tolower(unsigned char c); + void str_tolower(char *); + unsigned int hash(char *); +-int addword(char *, char *); ++int addword(char *, char *, struct opttable opt); + int cmpword(const void *, const void *); +-void worddump(void); +-void wordsort(int); +-void do_output(Wordlist *w); ++void worddump(struct opttable opt); ++void wordsort(int, struct opttable opt); ++void do_output(Wordlist *w, struct opttable opt); + +diff --git a/src/main.c b/src/main.c +index 7b4bcb9..b6b163d 100644 +--- a/src/main.c ++++ b/src/main.c +@@ -28,7 +28,6 @@ + #define GT(str) gettext(str) + + /* Default Options */ +-struct opttable opt = { 0, 0, 0, 0, 0, 0, 0, NULL }; + + struct option long_options[] = + { +@@ -62,6 +61,8 @@ int + main (int argc, char *argv[]) + { + /* Option parsing */ ++ struct opttable opt = { 0, 0, 0, 0, 0, 0, 0, NULL }; ++ + int c; + int digit_optind = 0; + int i; +@@ -178,7 +179,7 @@ main (int argc, char *argv[]) + str_tolower(buf); + + if (c >= opt.min_length) { +- if (addword(buf_orig, buf)) ++ if (addword(buf_orig, buf, opt)) + wcount++; + } + +@@ -196,9 +197,9 @@ main (int argc, char *argv[]) + + /* Output result with choosen ordering option */ + if (opt.sort) +- wordsort(wcount); ++ wordsort(wcount, opt); + else +- worddump(); ++ worddump(opt); + + fprintf(stderr, "Total words: %d\n",wcount); + +-- +2.24.1 + diff --git a/wf.spec b/wf.spec index 2ff4136..c3c9e17 100644 --- a/wf.spec +++ b/wf.spec @@ -1,10 +1,11 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 22%{?dist} +Release: 23%{?dist} License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 +Patch0: 0001-Fix-usage-of-global-variables.patch BuildRequires: gcc %description wf scans a text file and counts the frequency of words through the @@ -12,6 +13,7 @@ whole text. %prep %setup -q +%patch0 -p1 %build %configure @@ -27,6 +29,9 @@ make DESTDIR=%{buildroot} INSTALL="%{__install} -p" install %{_mandir}/man1/wf.1* %changelog +* Sat Feb 01 2020 Terje Rosten - 0.41-23 +- Fix GCC 10 ftbfs + * Fri Jan 31 2020 Fedora Release Engineering - 0.41-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From f9c0a04ab5626567d5cec3221d1e0b0e37c2cc60 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Tue, 14 Jul 2020 14:48:06 +0000 Subject: [PATCH 03/20] Use make macros https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro --- wf.spec | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/wf.spec b/wf.spec index c3c9e17..6b9847d 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 23%{?dist} +Release: 24%{?dist} License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 @@ -17,10 +17,10 @@ whole text. %build %configure -make %{?_smp_mflags} +%make_build %install -make DESTDIR=%{buildroot} INSTALL="%{__install} -p" install +%make_install %files %license COPYING @@ -29,6 +29,10 @@ make DESTDIR=%{buildroot} INSTALL="%{__install} -p" install %{_mandir}/man1/wf.1* %changelog +* Tue Jul 14 2020 Tom Stellard - 0.41-24 +- Use make macros +- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro + * Sat Feb 01 2020 Terje Rosten - 0.41-23 - Fix GCC 10 ftbfs From 2f7410b992567d5c4ed4cbf057c0d608f2c8a897 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 14:05:00 +0000 Subject: [PATCH 04/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 6b9847d..bc0321a 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 24%{?dist} +Release: 25%{?dist} License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 @@ -29,6 +29,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 0.41-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue Jul 14 2020 Tom Stellard - 0.41-24 - Use make macros - https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro From a9f62e00302a2e9223811a192203d13f4cfdff10 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 00:52:54 +0000 Subject: [PATCH 05/20] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- wf.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/wf.spec b/wf.spec index bc0321a..a8afeb3 100644 --- a/wf.spec +++ b/wf.spec @@ -6,6 +6,7 @@ License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 Patch0: 0001-Fix-usage-of-global-variables.patch +BuildRequires: make BuildRequires: gcc %description wf scans a text file and counts the frequency of words through the From bf849e7a25553d38ee89f2ab77b19353c919709f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 23:26:38 +0000 Subject: [PATCH 06/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index a8afeb3..0390dba 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 25%{?dist} +Release: 26%{?dist} License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 @@ -30,6 +30,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 0.41-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 0.41-25 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 72eec38cad6162335be9683c6eebcbaa70b65e1b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 20:53:19 +0000 Subject: [PATCH 07/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 0390dba..710f4fc 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 26%{?dist} +Release: 27%{?dist} License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 @@ -30,6 +30,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 0.41-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 0.41-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 46dfae51f605e5b67d1ef35a2b8449c336532c18 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 04:24:33 +0000 Subject: [PATCH 08/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 710f4fc..32dbd2b 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 27%{?dist} +Release: 28%{?dist} License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 @@ -30,6 +30,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 0.41-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 0.41-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From ac0dc1f13b2d6b71f9741d3dba527aad286ae243 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 12:21:22 +0000 Subject: [PATCH 09/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 32dbd2b..f96e998 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 28%{?dist} +Release: 29%{?dist} License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 @@ -30,6 +30,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 0.41-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 0.41-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From b50f0d712a51d95d8e4c47df26b324c9f818b6a6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 06:45:26 +0000 Subject: [PATCH 10/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index f96e998..f004ae6 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 29%{?dist} +Release: 30%{?dist} License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 @@ -30,6 +30,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 0.41-30 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jul 23 2022 Fedora Release Engineering - 0.41-29 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 4818f7ded7ad22ad5165f044d4ef002ffe075d20 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 18:08:15 +0000 Subject: [PATCH 11/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index f004ae6..41abb49 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 30%{?dist} +Release: 31%{?dist} License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 @@ -30,6 +30,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 0.41-31 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sat Jan 21 2023 Fedora Release Engineering - 0.41-30 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From f09ad6c751009a94dd2f1314432965c199334062 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 08:38:57 +0000 Subject: [PATCH 12/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 41abb49..ab6b0ae 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 31%{?dist} +Release: 32%{?dist} License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 @@ -30,6 +30,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 0.41-32 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 0.41-31 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From f2499b61ca79461bb9091cb89fafbce9aa5c5378 Mon Sep 17 00:00:00 2001 From: Software Management Team Date: Thu, 30 May 2024 12:46:49 +0200 Subject: [PATCH 13/20] Eliminate use of obsolete %patchN syntax (#2283636) --- wf.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index ab6b0ae..8971840 100644 --- a/wf.spec +++ b/wf.spec @@ -14,7 +14,7 @@ whole text. %prep %setup -q -%patch0 -p1 +%patch -P0 -p1 %build %configure From e8ef28766b1098f78a61c60245222d97929f69ae Mon Sep 17 00:00:00 2001 From: Terje Rosten Date: Sun, 30 Jun 2024 22:27:14 +0200 Subject: [PATCH 14/20] Use autosetup macro --- wf.spec | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/wf.spec b/wf.spec index 8971840..db2d293 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 32%{?dist} +Release: 33%{?dist} License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 @@ -13,8 +13,7 @@ wf scans a text file and counts the frequency of words through the whole text. %prep -%setup -q -%patch -P0 -p1 +%autosetup -p1 %build %configure @@ -30,6 +29,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Sun Jun 30 2024 Terje Rosten - 0.41-33 +- Use autosetup macro + * Sat Jan 27 2024 Fedora Release Engineering - 0.41-32 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From ef87ad653907d3a5eb0cfae6428f02c285a90d30 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 09:16:19 +0000 Subject: [PATCH 15/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index db2d293..ab6361f 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 33%{?dist} +Release: 34%{?dist} License: GPLv2 URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 @@ -29,6 +29,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 0.41-34 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sun Jun 30 2024 Terje Rosten - 0.41-33 - Use autosetup macro From 311b59d5c28281150db76e770a40a6bdc67b1f2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 29 Jul 2024 12:29:43 +0200 Subject: [PATCH 16/20] convert GPLv2 license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- wf.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/wf.spec b/wf.spec index ab6361f..cff5d4b 100644 --- a/wf.spec +++ b/wf.spec @@ -1,8 +1,9 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 34%{?dist} -License: GPLv2 +Release: 35%{?dist} +# Automatically converted from old format: GPLv2 - review is highly recommended. +License: GPL-2.0-only URL: http://www.async.com.br/~marcelo/wf/ Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 Patch0: 0001-Fix-usage-of-global-variables.patch @@ -29,6 +30,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Mon Jul 29 2024 Miroslav Suchý - 0.41-35 +- convert license to SPDX + * Sat Jul 20 2024 Fedora Release Engineering - 0.41-34 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From d60d8913399df611eceed037c78314c8a338721d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 14:55:57 +0000 Subject: [PATCH 17/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index cff5d4b..746a50a 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 35%{?dist} +Release: 36%{?dist} # Automatically converted from old format: GPLv2 - review is highly recommended. License: GPL-2.0-only URL: http://www.async.com.br/~marcelo/wf/ @@ -30,6 +30,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 0.41-36 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Mon Jul 29 2024 Miroslav Suchý - 0.41-35 - convert license to SPDX From 6cddde67bc9618a0a695576e561b71c86173e6ea Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:22:42 +0000 Subject: [PATCH 18/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 746a50a..a59714e 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 36%{?dist} +Release: 37%{?dist} # Automatically converted from old format: GPLv2 - review is highly recommended. License: GPL-2.0-only URL: http://www.async.com.br/~marcelo/wf/ @@ -30,6 +30,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 0.41-37 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 0.41-36 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From b044671a12f3f1d1f8bd4207888be8cb940b7594 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:12:00 +0000 Subject: [PATCH 19/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index a59714e..5900061 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 37%{?dist} +Release: 38%{?dist} # Automatically converted from old format: GPLv2 - review is highly recommended. License: GPL-2.0-only URL: http://www.async.com.br/~marcelo/wf/ @@ -30,6 +30,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 0.41-38 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jul 25 2025 Fedora Release Engineering - 0.41-37 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From a3acff2ea2a832d603139be57a1f8410852af57b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:46:17 +0000 Subject: [PATCH 20/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 5900061..44967c2 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 38%{?dist} +Release: 39%{?dist} # Automatically converted from old format: GPLv2 - review is highly recommended. License: GPL-2.0-only URL: http://www.async.com.br/~marcelo/wf/ @@ -30,6 +30,9 @@ whole text. %{_mandir}/man1/wf.1* %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 0.41-39 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jan 17 2026 Fedora Release Engineering - 0.41-38 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild