From ab880ca2bf508dab0a55ccdeb1512bbf9cf511a6 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 2 Jul 2008 16:41:06 +0000 Subject: [PATCH 1/4] Initialize branch F-9 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..1c26f78 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-9 From df8fe2e08a03da2d697673f02101745c9c5e2354 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Wed, 2 Jul 2008 17:07:45 +0000 Subject: [PATCH 2/4] importing abgraph --- .cvsignore | 1 + abgraph.spec | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ import.log | 1 + sources | 1 + 4 files changed, 54 insertions(+) create mode 100644 abgraph.spec create mode 100644 import.log diff --git a/.cvsignore b/.cvsignore index e69de29..3990c88 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +abgraph-1.1.tar.gz diff --git a/abgraph.spec b/abgraph.spec new file mode 100644 index 0000000..6e6d12b --- /dev/null +++ b/abgraph.spec @@ -0,0 +1,51 @@ +Name: abgraph +Version: 1.1 +Release: 1%{?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 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +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 + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc README COPYING +%{_bindir}/abgraph + + +%changelog +* 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/import.log b/import.log new file mode 100644 index 0000000..dc217fc --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +abgraph-1_1-1_fc8:F-9:abgraph-1.1-1.fc8.src.rpm:1215018429 diff --git a/sources b/sources index e69de29..f1bc639 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +7b9f2cc980e25b5e2bf8cb13b34a7e77 abgraph-1.1.tar.gz From 250a5dd0faf95742e81c2d6e2c360ecf4fbf2308 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:24:21 +0000 Subject: [PATCH 3/4] 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 821a80af29aee9539b77719de8260cd9afd4d601 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:31:54 +0000 Subject: [PATCH 4/4] 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 1c26f78..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-9 diff --git a/import.log b/import.log deleted file mode 100644 index dc217fc..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -abgraph-1_1-1_fc8:F-9:abgraph-1.1-1.fc8.src.rpm:1215018429