From 26c8d4d6b21ec3bb6fbcf636bc471c05a033a7c3 Mon Sep 17 00:00:00 2001 From: Ian Burrell Date: Tue, 15 May 2007 16:52:54 +0000 Subject: [PATCH 01/18] merge from devel --- .cvsignore | 2 +- ack.spec | 13 ++++++++++--- sources | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.cvsignore b/.cvsignore index c4a3d39..2556230 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -ack-1.56.tar.gz +ack-1.60.tar.gz diff --git a/ack.spec b/ack.spec index 18bd574..35294d8 100644 --- a/ack.spec +++ b/ack.spec @@ -1,6 +1,6 @@ Name: ack -Version: 1.56 -Release: 4%{?dist} +Version: 1.60 +Release: 2%{?dist} Summary: Grep-like text finder License: GPL or Artistic Group: Development/Libraries @@ -8,7 +8,8 @@ URL: http://search.cpan.org/dist/ack/ Source0: http://www.cpan.org/modules/by-module/App/ack-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: perl(File::Next) >= 0.38 +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(File::Next) >= 0.40 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description @@ -48,6 +49,12 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Tue May 15 2007 Ian M. Burrell - 1.60-1 +- add BuildRequires perl(ExtUtils::MakeMaker) + +* Sat May 5 2007 - 1.60-4 +- Update to 1.60; requires File::Next 0.40 + * Mon Feb 12 2007 Ian M. Burrell - 1.56-4 - Fix minor issues diff --git a/sources b/sources index 74cda91..9029743 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d2c8750f35ae8be79956958e2b653e32 ack-1.56.tar.gz +f828fb0a6bb2c81980aa5610ab263ebf ack-1.60.tar.gz From e374c49f0f241aae9206309fd43500e542094c3a Mon Sep 17 00:00:00 2001 From: Ian Burrell Date: Tue, 19 Jun 2007 05:14:15 +0000 Subject: [PATCH 02/18] Update to 1.62; merge from devel --- .cvsignore | 2 +- ack.spec | 9 ++++++++- sources | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index 2556230..d5713ae 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -ack-1.60.tar.gz +ack-1.62.tar.gz diff --git a/ack.spec b/ack.spec index 35294d8..332f702 100644 --- a/ack.spec +++ b/ack.spec @@ -1,5 +1,5 @@ Name: ack -Version: 1.60 +Version: 1.62 Release: 2%{?dist} Summary: Grep-like text finder License: GPL or Artistic @@ -49,6 +49,13 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Mon Jun 18 2007 Ian M. Burrell - 1.62-2 +- Disable tests since bug not fixed + +* Sun Jun 17 2007 Ian Burrell - 1.62-1 +- Update to 1.62 +- Enable tests + * Tue May 15 2007 Ian M. Burrell - 1.60-1 - add BuildRequires perl(ExtUtils::MakeMaker) diff --git a/sources b/sources index 9029743..003a7f9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f828fb0a6bb2c81980aa5610ab263ebf ack-1.60.tar.gz +5697440e52734c659f08b72882a5b3c2 ack-1.62.tar.gz From a94bd75adb96704998da4fd697f68b284f113945 Mon Sep 17 00:00:00 2001 From: Ian Burrell Date: Thu, 16 Aug 2007 23:45:36 +0000 Subject: [PATCH 03/18] Update to 1.64; add BuildRequires Test::More --- .cvsignore | 2 +- ack.spec | 21 +++++++++++++-------- sources | 2 +- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/.cvsignore b/.cvsignore index d5713ae..0de1c4b 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -ack-1.62.tar.gz +ack-1.64.tar.gz diff --git a/ack.spec b/ack.spec index 332f702..a46dfe1 100644 --- a/ack.spec +++ b/ack.spec @@ -1,6 +1,6 @@ Name: ack -Version: 1.62 -Release: 2%{?dist} +Version: 1.64 +Release: 1%{?dist} Summary: Grep-like text finder License: GPL or Artistic Group: Development/Libraries @@ -9,6 +9,7 @@ Source0: http://www.cpan.org/modules/by-module/App/ack-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(Test::More) BuildRequires: perl(File::Next) >= 0.40 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -49,26 +50,30 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog -* Mon Jun 18 2007 Ian M. Burrell - 1.62-2 +* Thu Aug 16 2007 Ian Burrell - 1.64-1 +- Update to 1.64 +- Add BuildRequires Test::More + +* Mon Jun 18 2007 Ian Burrell - 1.62-2 - Disable tests since bug not fixed * Sun Jun 17 2007 Ian Burrell - 1.62-1 - Update to 1.62 - Enable tests -* Tue May 15 2007 Ian M. Burrell - 1.60-1 +* Tue May 15 2007 Ian Burrell - 1.60-1 - add BuildRequires perl(ExtUtils::MakeMaker) -* Sat May 5 2007 - 1.60-4 +* Sat May 5 2007 Ian Burrell - 1.60-4 - Update to 1.60; requires File::Next 0.40 -* Mon Feb 12 2007 Ian M. Burrell - 1.56-4 +* Mon Feb 12 2007 Ian Burrell - 1.56-4 - Fix minor issues -* Tue Jan 30 2007 Ian M. Burrell - 1.56-3 +* Tue Jan 30 2007 Ian Burrell - 1.56-3 - Fix source URL -* Mon Jan 29 2007 - 1.56-2 +* Mon Jan 29 2007 Ian Burrell - 1.56-2 - Rename to ack * Mon Jan 29 2007 Ian Burrell 1.56-1 diff --git a/sources b/sources index 003a7f9..64cd310 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -5697440e52734c659f08b72882a5b3c2 ack-1.62.tar.gz +a3459623fedd1fa1e618799ff1ae07be ack-1.64.tar.gz From eef715de604dc1a352403581f950c9ffd636ef9a Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Wed, 29 Aug 2007 20:19:47 +0000 Subject: [PATCH 04/18] Initialize branch EL-4 for ack --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..6ec5cef --- /dev/null +++ b/branch @@ -0,0 +1 @@ +EL-4 From 43dff7aab430fa4d37884dd1c869ecea0ded2aef Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Wed, 29 Aug 2007 20:20:04 +0000 Subject: [PATCH 05/18] Initialize branch EL-5 for ack --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..42f697a --- /dev/null +++ b/branch @@ -0,0 +1 @@ +EL-5 From 97e16e104b1dc72e85d6dbe7f757a66f24c3da91 Mon Sep 17 00:00:00 2001 From: Ian Burrell Date: Thu, 17 Jan 2008 21:04:17 +0000 Subject: [PATCH 06/18] Update to 1.76 --- .cvsignore | 2 +- ack.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.cvsignore b/.cvsignore index 0de1c4b..d2c8ae6 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -ack-1.64.tar.gz +ack-1.76.tar.gz diff --git a/ack.spec b/ack.spec index a46dfe1..c4f441b 100644 --- a/ack.spec +++ b/ack.spec @@ -1,5 +1,5 @@ Name: ack -Version: 1.64 +Version: 1.76 Release: 1%{?dist} Summary: Grep-like text finder License: GPL or Artistic @@ -36,7 +36,7 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %check # Disabled because tests fail when run without terminal # See http://rt.cpan.org/Public/Bug/Display.html?id=24670 -#make test +make test %clean rm -rf $RPM_BUILD_ROOT @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Jan 17 2008 Ian Burrell - 1.76-1 +- Update to 1.76 + * Thu Aug 16 2007 Ian Burrell - 1.64-1 - Update to 1.64 - Add BuildRequires Test::More diff --git a/sources b/sources index 64cd310..361a5c7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a3459623fedd1fa1e618799ff1ae07be ack-1.64.tar.gz +c6ac41f943c36b826b7cbe27194ce5aa ack-1.76.tar.gz From 1a3403ff30c2038cde94407c20f0ac822e63a1ae Mon Sep 17 00:00:00 2001 From: Ian Burrell Date: Thu, 17 Jan 2008 21:05:08 +0000 Subject: [PATCH 07/18] Update to 1.76 --- .cvsignore | 2 +- ack.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.cvsignore b/.cvsignore index 0de1c4b..d2c8ae6 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -ack-1.64.tar.gz +ack-1.76.tar.gz diff --git a/ack.spec b/ack.spec index a46dfe1..c4f441b 100644 --- a/ack.spec +++ b/ack.spec @@ -1,5 +1,5 @@ Name: ack -Version: 1.64 +Version: 1.76 Release: 1%{?dist} Summary: Grep-like text finder License: GPL or Artistic @@ -36,7 +36,7 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %check # Disabled because tests fail when run without terminal # See http://rt.cpan.org/Public/Bug/Display.html?id=24670 -#make test +make test %clean rm -rf $RPM_BUILD_ROOT @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Jan 17 2008 Ian Burrell - 1.76-1 +- Update to 1.76 + * Thu Aug 16 2007 Ian Burrell - 1.64-1 - Update to 1.64 - Add BuildRequires Test::More diff --git a/sources b/sources index 64cd310..361a5c7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a3459623fedd1fa1e618799ff1ae07be ack-1.64.tar.gz +c6ac41f943c36b826b7cbe27194ce5aa ack-1.76.tar.gz From c8799e7130bcf4c89b557071f1dca56992a7f1f9 Mon Sep 17 00:00:00 2001 From: Ian Burrell Date: Mon, 24 Mar 2008 18:12:56 +0000 Subject: [PATCH 08/18] update to 1.78 --- .cvsignore | 2 +- ack.spec | 9 +++++---- sources | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.cvsignore b/.cvsignore index d2c8ae6..784d9bb 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -ack-1.76.tar.gz +ack-1.78.tar.gz diff --git a/ack.spec b/ack.spec index c4f441b..985458f 100644 --- a/ack.spec +++ b/ack.spec @@ -1,8 +1,8 @@ Name: ack -Version: 1.76 +Version: 1.78 Release: 1%{?dist} Summary: Grep-like text finder -License: GPL or Artistic +License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/ack/ Source0: http://www.cpan.org/modules/by-module/App/ack-%{version}.tar.gz @@ -34,8 +34,6 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check -# Disabled because tests fail when run without terminal -# See http://rt.cpan.org/Public/Bug/Display.html?id=24670 make test %clean @@ -50,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Mon Mar 24 2008 Ian M. Burrell - 1.78-1 +- Update to 1.78 + * Thu Jan 17 2008 Ian Burrell - 1.76-1 - Update to 1.76 diff --git a/sources b/sources index 361a5c7..3608173 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c6ac41f943c36b826b7cbe27194ce5aa ack-1.76.tar.gz +a7072e4e05a21422a87478ad50c7ecfe ack-1.78.tar.gz From b3866d3de49caed6c58f719cee121ec676fc3feb Mon Sep 17 00:00:00 2001 From: Ian Burrell Date: Mon, 24 Mar 2008 18:14:37 +0000 Subject: [PATCH 09/18] update to 1.78 --- .cvsignore | 2 +- ack.spec | 9 +++++---- sources | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.cvsignore b/.cvsignore index d2c8ae6..784d9bb 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -ack-1.76.tar.gz +ack-1.78.tar.gz diff --git a/ack.spec b/ack.spec index c4f441b..985458f 100644 --- a/ack.spec +++ b/ack.spec @@ -1,8 +1,8 @@ Name: ack -Version: 1.76 +Version: 1.78 Release: 1%{?dist} Summary: Grep-like text finder -License: GPL or Artistic +License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/ack/ Source0: http://www.cpan.org/modules/by-module/App/ack-%{version}.tar.gz @@ -34,8 +34,6 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check -# Disabled because tests fail when run without terminal -# See http://rt.cpan.org/Public/Bug/Display.html?id=24670 make test %clean @@ -50,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Mon Mar 24 2008 Ian M. Burrell - 1.78-1 +- Update to 1.78 + * Thu Jan 17 2008 Ian Burrell - 1.76-1 - Update to 1.76 diff --git a/sources b/sources index 361a5c7..3608173 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c6ac41f943c36b826b7cbe27194ce5aa ack-1.76.tar.gz +a7072e4e05a21422a87478ad50c7ecfe ack-1.78.tar.gz From d28b284144d9622416c7d39a0813bc644a411f6e Mon Sep 17 00:00:00 2001 From: Ian Burrell Date: Sat, 23 Aug 2008 23:51:45 +0000 Subject: [PATCH 10/18] Update to 1.86 --- .cvsignore | 2 +- ack.spec | 8 +++++++- sources | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index 784d9bb..9b0cf9c 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -ack-1.78.tar.gz +ack-1.86.tar.gz diff --git a/ack.spec b/ack.spec index 985458f..ade91bb 100644 --- a/ack.spec +++ b/ack.spec @@ -1,5 +1,5 @@ Name: ack -Version: 1.78 +Version: 1.86 Release: 1%{?dist} Summary: Grep-like text finder License: GPL+ or Artistic @@ -48,9 +48,15 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Aug 23 2008 Ian Burrell - 1.86-1 +- Update to 1.86 + * Mon Mar 24 2008 Ian M. Burrell - 1.78-1 - Update to 1.78 +* Thu Feb 7 2008 Tom "spot" Callaway - 1.76-2 +- rebuild for new perl + * Thu Jan 17 2008 Ian Burrell - 1.76-1 - Update to 1.76 diff --git a/sources b/sources index 3608173..ea55f0a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a7072e4e05a21422a87478ad50c7ecfe ack-1.78.tar.gz +bef9bb58d4b3cf542d178abe46f0985a ack-1.86.tar.gz From b0738478b7508e56af0b7d68495d3d7e4a3746f0 Mon Sep 17 00:00:00 2001 From: Ian Burrell Date: Sat, 23 Aug 2008 23:57:01 +0000 Subject: [PATCH 11/18] Update to 1.86 --- .cvsignore | 2 +- ack.spec | 8 +++++++- sources | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index 784d9bb..9b0cf9c 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -ack-1.78.tar.gz +ack-1.86.tar.gz diff --git a/ack.spec b/ack.spec index 985458f..ade91bb 100644 --- a/ack.spec +++ b/ack.spec @@ -1,5 +1,5 @@ Name: ack -Version: 1.78 +Version: 1.86 Release: 1%{?dist} Summary: Grep-like text finder License: GPL+ or Artistic @@ -48,9 +48,15 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Aug 23 2008 Ian Burrell - 1.86-1 +- Update to 1.86 + * Mon Mar 24 2008 Ian M. Burrell - 1.78-1 - Update to 1.78 +* Thu Feb 7 2008 Tom "spot" Callaway - 1.76-2 +- rebuild for new perl + * Thu Jan 17 2008 Ian Burrell - 1.76-1 - Update to 1.76 diff --git a/sources b/sources index 3608173..ea55f0a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a7072e4e05a21422a87478ad50c7ecfe ack-1.78.tar.gz +bef9bb58d4b3cf542d178abe46f0985a ack-1.86.tar.gz From 47e0d615740e2f8f10d4837158b293fae1d262ba Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:24:41 +0000 Subject: [PATCH 12/18] 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 8a623a4..e228427 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: ack -# $Id$ +# $Id: Makefile,v 1.1 2007/02/13 19:03:49 notting Exp $ NAME := ack 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 10097331bdcc0058601a643a03bae94473fa5067 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:24:42 +0000 Subject: [PATCH 13/18] 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 8a623a4..e228427 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: ack -# $Id$ +# $Id: Makefile,v 1.1 2007/02/13 19:03:49 notting Exp $ NAME := ack 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 0144a859c165e4b30be4d483c74ca64bcd9213dc Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:24:43 +0000 Subject: [PATCH 14/18] 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 8a623a4..e228427 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: ack -# $Id$ +# $Id: Makefile,v 1.1 2007/02/13 19:03:49 notting Exp $ NAME := ack 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 3d27b582fd94ced520b31cbab3dd1615be43ef39 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 8 May 2010 01:42:26 +0000 Subject: [PATCH 15/18] Initialize branch EL-6 for ack --- 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 45b9a67be600ccc4cc386d8a789bff4114dc017f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:34:15 +0000 Subject: [PATCH 16/18] 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 e228427..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: ack -# $Id: Makefile,v 1.1 2007/02/13 19:03:49 notting Exp $ -NAME := ack -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 6ec5cef..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -EL-4 From 899312bc4f227b0c637bae2dc0f221e37d111524 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:34:19 +0000 Subject: [PATCH 17/18] 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 e228427..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: ack -# $Id: Makefile,v 1.1 2007/02/13 19:03:49 notting Exp $ -NAME := ack -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 42f697a..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -EL-5 From 05c56af663abed19fde713bcb9d8fcb627f0bd2a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:34:22 +0000 Subject: [PATCH 18/18] 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 e228427..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: ack -# $Id: Makefile,v 1.1 2007/02/13 19:03:49 notting Exp $ -NAME := ack -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