From 05dd28d1a529409af365179b51df80b6a5ed25f1 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 25 Feb 2009 18:25:38 +0000 Subject: [PATCH 01/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 31a94f8..0af1f71 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Wed Feb 25 2009 Fedora Release Engineering - 0.41-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sat Feb 9 2008 Terje Rosten - 0.41-2 - rebuild From cde1d670a92de78227eb4bee0fbe80c2afda05c6 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 07:11:34 +0000 Subject: [PATCH 02/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 0af1f71..d69de08 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.41-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.41-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cdab49c900e7c3e81e6b5958f309363cb072b148 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:43:12 +0000 Subject: [PATCH 03/44] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fe8733f..6e562bf 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := wf SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From ea534971c8bdc02cd8a455c4828f95ad5c5dbd0a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:15:57 +0000 Subject: [PATCH 04/44] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- 2 files changed, 21 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 6e562bf..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: wf -# $Id$ -NAME := wf -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) From acf42dbb4207383bb9fbcd1c49a9777145ed5692 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 20:22:14 -0600 Subject: [PATCH 05/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index d69de08..0ddbdf5 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 0.41-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Mon Jul 27 2009 Fedora Release Engineering - 0.41-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From dcaaa0a8462e52de370ceb7bf5f90071f2263cd9 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 02:14:26 -0600 Subject: [PATCH 06/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 0ddbdf5..9705687 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 0.41-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon Feb 07 2011 Fedora Release Engineering - 0.41-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From b23215959d24921ab4f65fa96c0f9c87dd0579c0 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 22:27:44 -0500 Subject: [PATCH 07/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 9705687..2fe284f 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 0.41-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat Jan 14 2012 Fedora Release Engineering - 0.41-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 523d3537609f9203a444c13acfd79703375a6495 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 21:04:16 -0600 Subject: [PATCH 08/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 2fe284f..37cded5 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 0.41-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sun Jul 22 2012 Fedora Release Engineering - 0.41-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From ebe8813577194123f9119801e34936fe032c36da Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 01:48:12 -0500 Subject: [PATCH 09/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 37cded5..3224376 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 0.41-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Fri Feb 15 2013 Fedora Release Engineering - 0.41-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From abf76bb6fddf3c7463c8c557465d78e88760afdc Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 23:25:51 -0500 Subject: [PATCH 10/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 3224376..e5c477d 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 0.41-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 0.41-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 42245daede816ad9cff529df8f432ce81f2b954f Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 08:29:38 +0000 Subject: [PATCH 11/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index e5c477d..0dc29c3 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 0.41-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 0.41-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From d5289131fa609295f016f432178d453af87887d4 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 02:22:06 +0000 Subject: [PATCH 12/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 0dc29c3..e58e4d1 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 0.41-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Aug 18 2014 Fedora Release Engineering - 0.41-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From c7772bc569e4e7b8f6bcc87c87cd674356b89bdf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 02:59:29 +0000 Subject: [PATCH 13/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index e58e4d1..646d532 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 0.41-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 0.41-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 6794b91ad93bf44be537335e1ff7287441184f66 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 17:20:36 +0000 Subject: [PATCH 14/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index 646d532..d99a0c8 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 0.41-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Feb 05 2016 Fedora Release Engineering - 0.41-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From a8d6423aea22891c1460dc524d851837c397314a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 21:34:24 +0000 Subject: [PATCH 15/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index d99a0c8..cd96108 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 0.41-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 0.41-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 576dca0c44801533550aede19fe60ec3127b84ad Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 10:14:24 +0000 Subject: [PATCH 16/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- wf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wf.spec b/wf.spec index cd96108..4f9108f 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.41-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 0.41-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 9ac5e7156b4eac47dc00260cda83686b52a5e73c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 20:52:49 +0000 Subject: [PATCH 17/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_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 4f9108f..bccdfd5 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 16%{?dist} +Release: 17%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 0.41-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 0.41-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 77da43d3da167b447e4c7f17210461e114bcf1c7 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 00:48:24 +0100 Subject: [PATCH 18/44] Remove BuildRoot definition None of currently supported distributions need that. It was needed last for EL5 which is EOL now Signed-off-by: Igor Gnatenko --- wf.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/wf.spec b/wf.spec index bccdfd5..08e45ac 100644 --- a/wf.spec +++ b/wf.spec @@ -6,7 +6,6 @@ License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ Source0: http://www.async.com.br/~marcelo/%{name}/%{name}-%{version}.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description wf scans a text file and counts the frequency of words through the From 2b8192268156b18773b643f3003a6a27a48e0022 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 09:14:03 +0100 Subject: [PATCH 19/44] Remove %clean section None of currently supported distributions need that. Last one was EL5 which is EOL for a while. Signed-off-by: Igor Gnatenko --- wf.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/wf.spec b/wf.spec index 08e45ac..7025c8b 100644 --- a/wf.spec +++ b/wf.spec @@ -22,9 +22,6 @@ whole text. %{__rm} -rf %{buildroot} %{__make} DESTDIR=%{buildroot} INSTALL="%{__install} -p" install -%clean -%{__rm} -rf %{buildroot} - %files %defattr(-, root, root, -) %doc AUTHORS ChangeLog COPYING NEWS README TODO From dffe8affe2a33200249e42c443ceece06f589635 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 01:37:38 -0500 Subject: [PATCH 20/44] Remove needless use of %defattr --- wf.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/wf.spec b/wf.spec index 7025c8b..81465f8 100644 --- a/wf.spec +++ b/wf.spec @@ -23,7 +23,6 @@ whole text. %{__make} DESTDIR=%{buildroot} INSTALL="%{__install} -p" install %files -%defattr(-, root, root, -) %doc AUTHORS ChangeLog COPYING NEWS README TODO %{_bindir}/%{name} %{_mandir}/man1/%{name}.1* From 2aaa09a4699725637a28822714200d6429713da6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 08:48:16 +0000 Subject: [PATCH 21/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_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 81465f8..e6a35b9 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 17%{?dist} +Release: 18%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -28,6 +28,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 0.41-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 0.41-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 17b6544ee57bd4a86acf42074e6fdc3a4a8544a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Terje=20R=C3=B8sten?= Date: Mon, 16 Jul 2018 16:21:53 +0200 Subject: [PATCH 22/44] Add C compiler --- wf.spec | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/wf.spec b/wf.spec index e6a35b9..7840344 100644 --- a/wf.spec +++ b/wf.spec @@ -1,12 +1,11 @@ -Summary: Simple word frequency counter -Name: wf -Version: 0.41 -Release: 18%{?dist} -License: GPLv2 -Group: Applications/Text -URL: http://www.async.com.br/~marcelo/%{name}/ -Source0: http://www.async.com.br/~marcelo/%{name}/%{name}-%{version}.tar.bz2 - +Summary: Simple word frequency counter +Name: wf +Version: 0.41 +Release: 19%{?dist} +License: GPLv2 +URL: http://www.async.com.br/~marcelo/wf/ +Source0: http://www.async.com.br/~marcelo/wf/wf-%{version}.tar.bz2 +BuildRequires: gcc %description wf scans a text file and counts the frequency of words through the whole text. @@ -16,18 +15,21 @@ whole text. %build %configure -%{__make} %{?_smp_mflags} +make %{?_smp_mflags} %install -%{__rm} -rf %{buildroot} -%{__make} DESTDIR=%{buildroot} INSTALL="%{__install} -p" install +make DESTDIR=%{buildroot} INSTALL="%{__install} -p" install %files -%doc AUTHORS ChangeLog COPYING NEWS README TODO -%{_bindir}/%{name} -%{_mandir}/man1/%{name}.1* +%license COPYING +%doc AUTHORS ChangeLog NEWS README TODO +%{_bindir}/wf +%{_mandir}/man1/wf.1* %changelog +* Mon Jul 16 2018 Terje Rosten - 0.41-19 +- Add C compiler + * Sat Jul 14 2018 Fedora Release Engineering - 0.41-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 748765e520416e43e59413a3903b79f3331c1958 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 11:39:31 +0000 Subject: [PATCH 23/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_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 7840344..100144b 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 19%{?dist} +Release: 20%{?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 +* Sun Feb 03 2019 Fedora Release Engineering - 0.41-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Mon Jul 16 2018 Terje Rosten - 0.41-19 - Add C compiler From bd939b5a9fc497993d3a262652a65210c327dffd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 03:24:27 +0000 Subject: [PATCH 24/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_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 100144b..6c66129 100644 --- a/wf.spec +++ b/wf.spec @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 20%{?dist} +Release: 21%{?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 +* Sat Jul 27 2019 Fedora Release Engineering - 0.41-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 03 2019 Fedora Release Engineering - 0.41-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 379e173de4dc3845de46943527ddbbbe66b8bc74 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 03:37:41 +0000 Subject: [PATCH 25/44] - 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 26/44] 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 27/44] 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 28/44] - 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 29/44] 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 30/44] - 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 31/44] - 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 32/44] - 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 33/44] 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 34/44] 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 35/44] 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 36/44] 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 37/44] 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 38/44] 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 39/44] 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 40/44] 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 41/44] 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 42/44] 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 43/44] 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 44/44] 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