From 2a5e01e219942ab7d5b3555c572386f0ab26fbb5 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Thu, 12 Jun 2008 16:02:39 +0000 Subject: [PATCH 01/21] Initialize branch EL-5 for perl-Path-Class --- 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 06758e49ff1f085d2e7d8373857c56525c2ea20d Mon Sep 17 00:00:00 2001 From: Ian Burrell Date: Fri, 13 Jun 2008 23:37:56 +0000 Subject: [PATCH 02/21] merge from devel --- perl-Path-Class.spec | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/perl-Path-Class.spec b/perl-Path-Class.spec index 4fc88bb..a2db303 100644 --- a/perl-Path-Class.spec +++ b/perl-Path-Class.spec @@ -1,13 +1,14 @@ Name: perl-Path-Class Version: 0.16 -Release: 1%{?dist} +Release: 3%{?dist} Summary: Cross-platform path specification manipulation -License: GPL or Artistic +License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Path-Class/ Source0: http://www.cpan.org/modules/by-module/Path/Path-Class-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch +BuildRequires: perl(Test::More) BuildRequires: perl(Module::Build) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -46,5 +47,11 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Wed Mar 5 2008 Tom "spot" Callaway - 0.16-3 +- rebuild for new perl + +* Thu Aug 16 2007 Ian Burrell - 0.16-2 +- Fix BuildRequires + * Mon Jan 29 2007 Ian Burrell 0.16-1 - Specfile autogenerated by cpanspec 1.69.1. From a5cec9ebcaa0ad413ab61dfdebe4e56c60b8b278 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 27 Feb 2009 00:24:32 +0000 Subject: [PATCH 03/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- perl-Path-Class.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Path-Class.spec b/perl-Path-Class.spec index a2db303..bdc969a 100644 --- a/perl-Path-Class.spec +++ b/perl-Path-Class.spec @@ -1,6 +1,6 @@ Name: perl-Path-Class Version: 0.16 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Cross-platform path specification manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Feb 26 2009 Fedora Release Engineering - 0.16-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Wed Mar 5 2008 Tom "spot" Callaway - 0.16-3 - rebuild for new perl From ae5612a33ea6027f45dd308e14be602c9e3b26c4 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sun, 26 Jul 2009 16:10:47 +0000 Subject: [PATCH 04/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- perl-Path-Class.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Path-Class.spec b/perl-Path-Class.spec index bdc969a..cecc459 100644 --- a/perl-Path-Class.spec +++ b/perl-Path-Class.spec @@ -1,6 +1,6 @@ Name: perl-Path-Class Version: 0.16 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Cross-platform path specification manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.16-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.16-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From df7bb071fda371146203e6d8bcb2feb79c32aa15 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:31:13 +0000 Subject: [PATCH 05/21] 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 26a288e..1f1c0c8 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := perl-Path-Class 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 e2177e1db9df0afa5e3fd8d8479a54c23332e98c Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 02:12:19 +0000 Subject: [PATCH 06/21] 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 26a288e..1f1c0c8 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := perl-Path-Class 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 b98f86ade08f0d0808f5d3296984d046b38e2dec Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 02:12:20 +0000 Subject: [PATCH 07/21] 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 26a288e..1f1c0c8 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := perl-Path-Class 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 d572aee8b1ac763b2511acaae21e9c29f2d6b41c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Kasal?= Date: Mon, 7 Dec 2009 14:35:56 +0000 Subject: [PATCH 08/21] - rebuild against perl 5.10.1 --- perl-Path-Class.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Path-Class.spec b/perl-Path-Class.spec index cecc459..6aa0f68 100644 --- a/perl-Path-Class.spec +++ b/perl-Path-Class.spec @@ -1,6 +1,6 @@ Name: perl-Path-Class Version: 0.16 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Cross-platform path specification manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Mon Dec 7 2009 Stepan Kasal - 0.16-6 +- rebuild against perl 5.10.1 + * Sun Jul 26 2009 Fedora Release Engineering - 0.16-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 0bb37f5a3fc225b86155fc0ace4b18d9e2b817b4 Mon Sep 17 00:00:00 2001 From: Chris Weyl Date: Tue, 23 Feb 2010 04:46:17 +0000 Subject: [PATCH 09/21] - update to 0.18 (for latest DBIx::Class) --- .cvsignore | 2 +- perl-Path-Class.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.cvsignore b/.cvsignore index 9e650f2..e83a3e6 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -Path-Class-0.16.tar.gz +Path-Class-0.18.tar.gz diff --git a/perl-Path-Class.spec b/perl-Path-Class.spec index 6aa0f68..44eca92 100644 --- a/perl-Path-Class.spec +++ b/perl-Path-Class.spec @@ -1,6 +1,6 @@ Name: perl-Path-Class -Version: 0.16 -Release: 6%{?dist} +Version: 0.18 +Release: 1%{?dist} Summary: Cross-platform path specification manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Mon Feb 22 2010 Chris Weyl 0.18-1 +- update to 0.18 (for latest DBIx::Class) + * Mon Dec 7 2009 Stepan Kasal - 0.16-6 - rebuild against perl 5.10.1 diff --git a/sources b/sources index 951a125..e328b79 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3a2416d2f5ed1a8a98525baea5c25e1c Path-Class-0.16.tar.gz +8eab8d453de8e71d0d5ce076eeb53e21 Path-Class-0.18.tar.gz From f49d7c9ddb7858c6fb2765ee935954ddeba19321 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Tue, 4 May 2010 16:56:47 +0000 Subject: [PATCH 10/21] - Mass rebuild with perl-5.12.0 --- perl-Path-Class.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Path-Class.spec b/perl-Path-Class.spec index 44eca92..3afe046 100644 --- a/perl-Path-Class.spec +++ b/perl-Path-Class.spec @@ -1,6 +1,6 @@ Name: perl-Path-Class Version: 0.18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Cross-platform path specification manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Tue May 04 2010 Marcela Maslanova - 0.18-2 +- Mass rebuild with perl-5.12.0 + * Mon Feb 22 2010 Chris Weyl 0.18-1 - update to 0.18 (for latest DBIx::Class) From 28eca6426716755f7929ce4dcc80a9fd05fa69de Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 8 May 2010 02:10:53 +0000 Subject: [PATCH 11/21] Initialize branch EL-6 for perl-Path-Class --- 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 80dd8bea7fa90fa2fd4d1bd33a16bcf9dd9964f3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 07:45:01 +0000 Subject: [PATCH 12/21] 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 1f1c0c8..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: perl-Path-Class -# $Id$ -NAME := perl-Path-Class -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 02878c5b71a60887ceb3569f153ff63ddda94327 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 07:45:02 +0000 Subject: [PATCH 13/21] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- 2 files changed, 21 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile 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 1f1c0c8..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: perl-Path-Class -# $Id$ -NAME := perl-Path-Class -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) From d1661acf8dbcb87c695fa966f39ac8359b358117 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 07:45:03 +0000 Subject: [PATCH 14/21] 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 1f1c0c8..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: perl-Path-Class -# $Id$ -NAME := perl-Path-Class -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 From f7a2a15413d1880b1b778b72b874fa2cafd958d0 Mon Sep 17 00:00:00 2001 From: Iain Arnell Date: Thu, 2 Sep 2010 16:52:09 +0200 Subject: [PATCH 15/21] update to 0.18 (for latest DBIx::Class) --- .gitignore | 2 +- perl-Path-Class.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 9e650f2..e83a3e6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -Path-Class-0.16.tar.gz +Path-Class-0.18.tar.gz diff --git a/perl-Path-Class.spec b/perl-Path-Class.spec index cecc459..2ba4344 100644 --- a/perl-Path-Class.spec +++ b/perl-Path-Class.spec @@ -1,6 +1,6 @@ Name: perl-Path-Class -Version: 0.16 -Release: 5%{?dist} +Version: 0.18 +Release: 1%{?dist} Summary: Cross-platform path specification manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Mon Feb 22 2010 Chris Weyl 0.18-1 +- update to 0.18 (for latest DBIx::Class) + * Sun Jul 26 2009 Fedora Release Engineering - 0.16-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild diff --git a/sources b/sources index 951a125..e328b79 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3a2416d2f5ed1a8a98525baea5c25e1c Path-Class-0.16.tar.gz +8eab8d453de8e71d0d5ce076eeb53e21 Path-Class-0.18.tar.gz From 724d10e65a3d8c166e7b3a962150cc808351b5d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Tue, 21 Dec 2010 13:00:01 +0100 Subject: [PATCH 16/21] - 661697 rebuild for fixing problems with vendorach/lib --- perl-Path-Class.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Path-Class.spec b/perl-Path-Class.spec index 3afe046..72b4adb 100644 --- a/perl-Path-Class.spec +++ b/perl-Path-Class.spec @@ -1,6 +1,6 @@ Name: perl-Path-Class Version: 0.18 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Cross-platform path specification manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Tue Dec 21 2010 Marcela Maslanova - 0.18-3 +- 661697 rebuild for fixing problems with vendorach/lib + * Tue May 04 2010 Marcela Maslanova - 0.18-2 - Mass rebuild with perl-5.12.0 From 63c6a38a7a5aa498e13dd0db6aa199b75b9fc488 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 8 Feb 2011 23:43:27 -0600 Subject: [PATCH 17/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- perl-Path-Class.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Path-Class.spec b/perl-Path-Class.spec index 72b4adb..c310c8f 100644 --- a/perl-Path-Class.spec +++ b/perl-Path-Class.spec @@ -1,6 +1,6 @@ Name: perl-Path-Class Version: 0.18 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Cross-platform path specification manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Tue Feb 08 2011 Fedora Release Engineering - 0.18-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Tue Dec 21 2010 Marcela Maslanova - 0.18-3 - 661697 rebuild for fixing problems with vendorach/lib From d752bd823fd3c14f09b1459b45615d438387f669 Mon Sep 17 00:00:00 2001 From: Ian Burrell Date: Thu, 14 Apr 2011 20:22:05 -0700 Subject: [PATCH 18/21] Update to 0.23 --- .gitignore | 1 + perl-Path-Class.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e83a3e6..5b786d6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ Path-Class-0.18.tar.gz +/Path-Class-0.23.tar.gz diff --git a/perl-Path-Class.spec b/perl-Path-Class.spec index c310c8f..27c4f78 100644 --- a/perl-Path-Class.spec +++ b/perl-Path-Class.spec @@ -1,6 +1,6 @@ Name: perl-Path-Class -Version: 0.18 -Release: 4%{?dist} +Version: 0.23 +Release: 1%{?dist} Summary: Cross-platform path specification manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Apr 14 2011 Ian Burrell - 0.23-1 +- Update to 0.23 + * Tue Feb 08 2011 Fedora Release Engineering - 0.18-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild diff --git a/sources b/sources index e328b79..a8085ae 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8eab8d453de8e71d0d5ce076eeb53e21 Path-Class-0.18.tar.gz +afff1b24d09674575d37c6a61e1e8b5a Path-Class-0.23.tar.gz From b5bb2f9de55ca102daf34cad3697b8b4bbd7bf8f Mon Sep 17 00:00:00 2001 From: Ian Burrell Date: Thu, 21 Apr 2011 20:25:03 -0700 Subject: [PATCH 19/21] fix .gitignore --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5b786d6..324ea31 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -Path-Class-0.18.tar.gz /Path-Class-0.23.tar.gz From 8a07cfa91f9dcc1825ca64b9fe3aa482d91fbf42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Fri, 17 Jun 2011 19:49:29 +0200 Subject: [PATCH 20/21] Perl mass rebuild --- perl-Path-Class.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Path-Class.spec b/perl-Path-Class.spec index 27c4f78..506a223 100644 --- a/perl-Path-Class.spec +++ b/perl-Path-Class.spec @@ -1,6 +1,6 @@ Name: perl-Path-Class Version: 0.23 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Cross-platform path specification manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jun 17 2011 Marcela Mašláňová - 0.23-2 +- Perl mass rebuild + * Thu Apr 14 2011 Ian Burrell - 0.23-1 - Update to 0.23 From c094ea3eba4c4995ea48653678e0bedd31715200 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 10:46:25 -0600 Subject: [PATCH 21/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- perl-Path-Class.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Path-Class.spec b/perl-Path-Class.spec index 506a223..ff03984 100644 --- a/perl-Path-Class.spec +++ b/perl-Path-Class.spec @@ -1,6 +1,6 @@ Name: perl-Path-Class Version: 0.23 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Cross-platform path specification manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jan 13 2012 Fedora Release Engineering - 0.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Fri Jun 17 2011 Marcela Mašláňová - 0.23-2 - Perl mass rebuild