From df530f052243f9446ae835c432c18a75c57f9c29 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:38:06 +0000 Subject: [PATCH 01/25] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6502f26..b8672bd 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: abgraph -# $Id$ +# $Id: Makefile,v 1.1 2008/07/02 16:40:51 kevin Exp $ NAME := abgraph 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 0f6dcd4bd4c6b0885ace4a05037cd314fc609d86 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:24:20 +0000 Subject: [PATCH 02/25] 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 6502f26..fc4b509 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := abgraph 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 3a7127ae05687ef76f57078af8d35cd5556517c0 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 8 May 2010 01:42:23 +0000 Subject: [PATCH 03/25] Initialize branch EL-6 for abgraph --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..46381b9 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +EL-6 From 800030213f46d4ca0f1afc5c627d330e8a2e7294 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:31:54 +0000 Subject: [PATCH 04/25] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log 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 b8672bd..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: abgraph -# $Id: Makefile,v 1.1 2008/07/02 16:40:51 kevin Exp $ -NAME := abgraph -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) diff --git a/import.log b/import.log deleted file mode 100644 index ed891d4..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -abgraph-1_1-1_fc8:HEAD:abgraph-1.1-1.fc8.src.rpm:1215018559 From 99b4cb532c7696732c4e5b597227e57ef049d5c0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:31:55 +0000 Subject: [PATCH 05/25] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - import.log | 1 - 4 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch delete mode 100644 import.log 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 fc4b509..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: abgraph -# $Id$ -NAME := abgraph -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) diff --git a/branch b/branch deleted file mode 100644 index 46381b9..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -EL-6 diff --git a/import.log b/import.log deleted file mode 100644 index ed891d4..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -abgraph-1_1-1_fc8:HEAD:abgraph-1.1-1.fc8.src.rpm:1215018559 From ae8c32b23585b1daaea99904b15a21362636c8c1 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 18:08:02 -0600 Subject: [PATCH 06/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index e00bcd3..65adc05 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From b992c91f09b452f432ca3c3669d3fbe1d503db03 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 12 Jan 2012 14:57:03 -0600 Subject: [PATCH 07/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index 65adc05..0115bfe 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jan 12 2012 Fedora Release Engineering - 1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon Feb 07 2011 Fedora Release Engineering - 1.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 80ad44819a54fce0d5c042676f1f387fe6f8bdc8 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 18 Jul 2012 10:28:05 -0500 Subject: [PATCH 08/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index 0115bfe..8f36ace 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 18 2012 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Thu Jan 12 2012 Fedora Release Engineering - 1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 0b1a314666480fe81af9944bf641d583e2073dde Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 10:13:05 -0600 Subject: [PATCH 09/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index 8f36ace..8070ee7 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 13 2013 Fedora Release Engineering - 1.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Wed Jul 18 2012 Fedora Release Engineering - 1.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 05782dc36225ee24d4331f579a1a3cef9368070a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 2 Aug 2013 19:07:00 -0500 Subject: [PATCH 10/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index 8070ee7..931f27e 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 1.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Wed Feb 13 2013 Fedora Release Engineering - 1.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 4c70b3318ad025a243c0580953ce05c377e00cb7 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 6 Jun 2014 18:57:49 -0500 Subject: [PATCH 11/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index 931f27e..a6f6e72 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jun 06 2014 Fedora Release Engineering - 1.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Aug 03 2013 Fedora Release Engineering - 1.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 0eb3e41791cae9a65f3ce22f4ec334175257f8e7 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 16 Jun 2015 23:32:23 +0000 Subject: [PATCH 12/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index a6f6e72..77df065 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jun 16 2015 Fedora Release Engineering - 1.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Fri Jun 06 2014 Fedora Release Engineering - 1.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From f88f385947d043299249cdf5d91a8dc4af938d94 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 15:55:25 +0000 Subject: [PATCH 13/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index 77df065..858736b 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 03 2016 Fedora Release Engineering - 1.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Tue Jun 16 2015 Fedora Release Engineering - 1.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From dc50492f5e524d5fb358b18abde65d356db9a961 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 05:40:42 +0000 Subject: [PATCH 14/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index 858736b..b6cdd16 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 1.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Wed Feb 03 2016 Fedora Release Engineering - 1.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From a7603c5914547c09dd9f3de6761d819765514042 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 02:30:49 +0000 Subject: [PATCH 15/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index b6cdd16..a3b15fd 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 1.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 1.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From e21ff890e055ddf19fdd52916a3d873d5793a665 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 01:44:17 +0000 Subject: [PATCH 16/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index a3b15fd..637089a 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 13%{?dist} +Release: 14%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 1.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 1.1-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 9171ba6ee1552286b4d70207e5e6d42d45ec538d Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 13 Feb 2018 23:00:44 +0100 Subject: [PATCH 17/25] 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 --- abgraph.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index 637089a..1b833ec 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -8,7 +8,6 @@ License: GPLv3+ Group: Applications/Productivity URL: http://sourceforge.net/projects/abgraph Source: http://dl.sf.net/%{name}/%{name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: gnuplot, httpd-tools From 97943361758994ff7056b4ab749309c86029de34 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 07:50:03 +0100 Subject: [PATCH 18/25] 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 --- abgraph.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/abgraph.spec b/abgraph.spec index 1b833ec..6b9e4ec 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -28,9 +28,6 @@ rm -rf $RPM_BUILD_ROOT install -Dpm 755 abgraph.sh $RPM_BUILD_ROOT%{_bindir}/abgraph -%clean -rm -rf $RPM_BUILD_ROOT - %files %defattr(-,root,root,-) From d139557ad662c6da4b6652352b0f63cc5cc72123 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 00:09:00 -0500 Subject: [PATCH 19/25] Remove needless use of %defattr --- abgraph.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index 6b9e4ec..fe5dd72 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -30,7 +30,6 @@ install -Dpm 755 abgraph.sh $RPM_BUILD_ROOT%{_bindir}/abgraph %files -%defattr(-,root,root,-) %doc README COPYING %{_bindir}/abgraph From d8687a5adb83168bad31aedc47edba3fa757f964 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 12 Jul 2018 19:55:29 +0000 Subject: [PATCH 20/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index fe5dd72..33af1ca 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 14%{?dist} +Release: 15%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -35,6 +35,9 @@ install -Dpm 755 abgraph.sh $RPM_BUILD_ROOT%{_bindir}/abgraph %changelog +* Thu Jul 12 2018 Fedora Release Engineering - 1.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 1.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From e07b4893ceff4d5a846ad7a728651c943a3ee268 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:17:38 +0100 Subject: [PATCH 21/25] Remove obsolete Group tag Signed-off-by: Igor Gnatenko --- abgraph.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index 33af1ca..6a62f0f 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -5,7 +5,6 @@ Release: 15%{?dist} Summary: ABGraph is a simple tool to benchmark webservers License: GPLv3+ -Group: Applications/Productivity URL: http://sourceforge.net/projects/abgraph Source: http://dl.sf.net/%{name}/%{name}-%{version}.tar.gz From 52f51bba28f1e2f9af3252980f58d74eb660fb89 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 12:51:44 +0000 Subject: [PATCH 22/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index 6a62f0f..6e2e9bb 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 15%{?dist} +Release: 16%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -34,6 +34,9 @@ install -Dpm 755 abgraph.sh $RPM_BUILD_ROOT%{_bindir}/abgraph %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 1.1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Thu Jul 12 2018 Fedora Release Engineering - 1.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From b4313472dd4f61fa42c3179825cbe3f0ec74877f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 24 Jul 2019 17:26:33 +0000 Subject: [PATCH 23/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index 6e2e9bb..e1d2fa8 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 16%{?dist} +Release: 17%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -34,6 +34,9 @@ install -Dpm 755 abgraph.sh $RPM_BUILD_ROOT%{_bindir}/abgraph %changelog +* Wed Jul 24 2019 Fedora Release Engineering - 1.1-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Jan 31 2019 Fedora Release Engineering - 1.1-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 4380a45ff457ff5522e526a60c0c3ce7ed6a4ea3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 11:06:43 +0000 Subject: [PATCH 24/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abgraph.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abgraph.spec b/abgraph.spec index e1d2fa8..74a84ba 100644 --- a/abgraph.spec +++ b/abgraph.spec @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 17%{?dist} +Release: 18%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -34,6 +34,9 @@ install -Dpm 755 abgraph.sh $RPM_BUILD_ROOT%{_bindir}/abgraph %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 1.1-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Wed Jul 24 2019 Fedora Release Engineering - 1.1-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 8612df1e7dd588acd03c4963d34f931a0f34501d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Wed, 8 Jul 2020 12:48:13 +0200 Subject: [PATCH 25/25] Orphaned for 6+ weeks --- .gitignore | 1 - abgraph.spec | 96 ---------------------------------------------------- dead.package | 1 + sources | 1 - 4 files changed, 1 insertion(+), 98 deletions(-) delete mode 100644 .gitignore delete mode 100644 abgraph.spec create mode 100644 dead.package delete mode 100644 sources diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 3990c88..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -abgraph-1.1.tar.gz diff --git a/abgraph.spec b/abgraph.spec deleted file mode 100644 index 74a84ba..0000000 --- a/abgraph.spec +++ /dev/null @@ -1,96 +0,0 @@ -Name: abgraph -Version: 1.1 -Release: 18%{?dist} - -Summary: ABGraph is a simple tool to benchmark webservers - -License: GPLv3+ -URL: http://sourceforge.net/projects/abgraph -Source: http://dl.sf.net/%{name}/%{name}-%{version}.tar.gz - -BuildArch: noarch -Requires: gnuplot, httpd-tools - -%description -ABGraph is a simple tool to benchmark webservers. -The program uses ab (apache benchmark) to actually -benchmark the selected remote host. A graph in PNG format -is generated with gnuplot and saved to the selected path/file. - -%prep -%setup -q - -%build - -%install -rm -rf $RPM_BUILD_ROOT -install -Dpm 755 abgraph.sh $RPM_BUILD_ROOT%{_bindir}/abgraph - - - -%files -%doc README COPYING -%{_bindir}/abgraph - - -%changelog -* Tue Jan 28 2020 Fedora Release Engineering - 1.1-18 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Wed Jul 24 2019 Fedora Release Engineering - 1.1-17 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Thu Jan 31 2019 Fedora Release Engineering - 1.1-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Thu Jul 12 2018 Fedora Release Engineering - 1.1-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Wed Feb 07 2018 Fedora Release Engineering - 1.1-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 1.1-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 1.1-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Wed Feb 03 2016 Fedora Release Engineering - 1.1-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Tue Jun 16 2015 Fedora Release Engineering - 1.1-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Fri Jun 06 2014 Fedora Release Engineering - 1.1-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sat Aug 03 2013 Fedora Release Engineering - 1.1-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Wed Feb 13 2013 Fedora Release Engineering - 1.1-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Wed Jul 18 2012 Fedora Release Engineering - 1.1-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Thu Jan 12 2012 Fedora Release Engineering - 1.1-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Mon Feb 07 2011 Fedora Release Engineering - 1.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Fri Jul 24 2009 Fedora Release Engineering - 1.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Mon Feb 23 2009 Fedora Release Engineering - 1.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Wed Jun 25 2008 Marek Mahut - 1.1-1 -- Upstream release - -* Tue May 29 2008 Marek Mahut - 1.0-2 -- Insecure temporary file fix -- Minor script modifications - -* Tue May 20 2008 Marek Mahut - 1.0-1 -- First build diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5204a84 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Orphaned for 6+ weeks diff --git a/sources b/sources deleted file mode 100644 index f1bc639..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -7b9f2cc980e25b5e2bf8cb13b34a7e77 abgraph-1.1.tar.gz