From b2a9b73c4d1d46a8f07f406864789fb35685c47e Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Mon, 23 Oct 2006 19:40:35 +0000 Subject: [PATCH 1/4] Initialize branch FC-6 for xfsdump --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..d5b6362 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +FC-6 From 02dc7a4013916b4262d8ce7cba2eb7a0e3ed636b Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Mon, 10 Sep 2007 16:38:16 +0000 Subject: [PATCH 2/4] - Update to xfsdump 2.2.45 --- .cvsignore | 2 +- sources | 2 +- xfsdump.spec | 11 +++++++---- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.cvsignore b/.cvsignore index 9e4fccf..53cd970 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -xfsdump_2.2.42-1.tar.gz +xfsdump_2.2.45-1.tar.gz diff --git a/sources b/sources index 924f1b0..633a970 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4e113a39b07723bbb140d2e5c5389cfe xfsdump_2.2.42-1.tar.gz +9f4f6da94d14e638639a542b0fa8a722 xfsdump_2.2.45-1.tar.gz diff --git a/xfsdump.spec b/xfsdump.spec index 48fbabf..aa95f90 100644 --- a/xfsdump.spec +++ b/xfsdump.spec @@ -1,14 +1,14 @@ Summary: Administrative utilities for the XFS filesystem Name: xfsdump -Version: 2.2.42 -Release: 2%{?dist} +Version: 2.2.45 +Release: 1%{?dist} License: GPL Group: System Environment/Base URL: http://oss.sgi.com/projects/xfs/ Source0: ftp://oss.sgi.com/projects/xfs/download/cmd_tars/%{name}_%{version}-1.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: autoconf, libtool, gettext -BuildRequires: readline-devel, libtermcap-devel, xfsprogs-devel, e2fsprogs-devel, libattr-devel ncurses-devel +BuildRequires: xfsprogs-devel, e2fsprogs-devel, libattr-devel ncurses-devel Requires: xfsprogs >= 2.6.30, attr >= 2.0.0 @@ -60,8 +60,11 @@ rm -rf $RPM_BUILD_ROOT /sbin/* %changelog +* Thu May 31 2007 Eric Sandeen - 2.2.45-1 +- Update to xfsdump 2.2.45 + * Wed Aug 31 2006 Russell Cattelan - 2.2.42-2 -Remove Distribution: tag +- Remove Distribution: tag * Wed Aug 23 2006 Russell Cattelan - 2.2.42-1 - update to version 2.2.42 From 4a117763c9b63b79876f69b88ea9a30d62b2c3fe Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:33:01 +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 05fdd8a..9976b28 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: xfsdump -# $Id$ +# $Id: Makefile,v 1.1 2006/09/01 17:26:02 cattelan Exp $ NAME := xfsdump 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 65a54500f3a59dddbfb171759fb59e8fee4ccf4c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:51:30 +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 9976b28..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xfsdump -# $Id: Makefile,v 1.1 2006/09/01 17:26:02 cattelan Exp $ -NAME := xfsdump -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 d5b6362..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -FC-6