From 72db697c63585b524190469b6273cca3ccb10d77 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Fri, 18 May 2007 10:53:59 +0000 Subject: [PATCH 1/4] Initialize branch F-7 for vblade --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..c48525c --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-7 From e20570220b0d26c39497a913e5d25459b7023139 Mon Sep 17 00:00:00 2001 From: Patrick Laughton Date: Wed, 22 Aug 2007 19:09:38 +0000 Subject: [PATCH 2/4] - Add missing /var/run/vblade/ - License clarification --- vblade.spec | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/vblade.spec b/vblade.spec index 23fbd61..f02ef91 100644 --- a/vblade.spec +++ b/vblade.spec @@ -1,10 +1,10 @@ Name: vblade Version: 14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Virtual EtherDrive (R) blade daemon Group: System Environment/Base -License: GPL +License: GPLv2 URL: http://sourceforge.net/projects/aoetools/ Source0: http://dl.sf.net/aoetools/%{name}-%{version}.tgz Source1: %{name}.init @@ -41,6 +41,7 @@ make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT +mkdir -p $RPM_BUILD_ROOT/var/run/%{name} install -D -m 755 %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/%{name} install -D -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.conf @@ -67,6 +68,7 @@ fi %defattr(-,root,root,-) %doc COPYING HACKING NEWS README %config(noreplace) %{_sysconfdir}/%{name}.conf +%dir /var/run/%{name} %{_initrddir}/%{name} %{_sbindir}/vblade %{_sbindir}/vbladed @@ -74,6 +76,10 @@ fi %changelog +* Wed Aug 22 2007 Patrick "Jima" Laughton 14-3 +- Add missing /var/run/vblade/ +- License clarification + * Sat Apr 07 2007 Patrick "Jima" Laughton 14-2 - Forced CFLAGS on build From 64a7e948d8131a92e94933bc7a7cf06e3c99787d Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:12:11 +0000 Subject: [PATCH 3/4] 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 852af0f..3c50255 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: vblade -# $Id$ +# $Id: Makefile,v 1.1 2007/04/09 10:51:08 jwboyer Exp $ NAME := vblade 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 d2b0e07151078cc7cac6fae1a40cf37ea82dcca1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:54:31 +0000 Subject: [PATCH 4/4] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch 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 3c50255..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: vblade -# $Id: Makefile,v 1.1 2007/04/09 10:51:08 jwboyer Exp $ -NAME := vblade -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 c48525c..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-7