From 81d257e91348f182890ac51fac064605dbc8644b Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:30:36 +0000 Subject: [PATCH 1/5] 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 091d717..7fb14fc 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := perl-Class-Method-Modifiers 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 bb5ff180db29ebc7264ed540cd8eba34f949dbb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Kasal?= Date: Fri, 4 Dec 2009 02:01:49 +0000 Subject: [PATCH 2/5] - rebuild against perl 5.10.1 --- perl-Class-Method-Modifiers.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Class-Method-Modifiers.spec b/perl-Class-Method-Modifiers.spec index c897b5b..a44b776 100644 --- a/perl-Class-Method-Modifiers.spec +++ b/perl-Class-Method-Modifiers.spec @@ -1,7 +1,7 @@ Name: perl-Class-Method-Modifiers Version: 1.04 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ or Artistic Group: Development/Libraries Summary: Provides Moose-like method modifiers @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Fri Dec 4 2009 Stepan Kasal - 1.04-2 +- rebuild against perl 5.10.1 + * Fri Jul 31 2009 Chris Weyl 1.04-1 - auto-update to 1.04 (by cpan-spec-update 0.01) From 8c7434993882afc15071a0656c0c393d828ec2a1 Mon Sep 17 00:00:00 2001 From: Chris Weyl Date: Mon, 1 Mar 2010 08:14:05 +0000 Subject: [PATCH 3/5] - update by Fedora::App::MaintainerTools 0.004 - PERL_INSTALL_ROOT => DESTDIR --- .cvsignore | 2 +- auto.ini | 3 +++ perl-Class-Method-Modifiers.spec | 43 +++++++++++++++++--------------- sources | 2 +- 4 files changed, 28 insertions(+), 22 deletions(-) create mode 100644 auto.ini diff --git a/.cvsignore b/.cvsignore index b376727..afd7467 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -Class-Method-Modifiers-1.04.tar.gz +Class-Method-Modifiers-1.05.tar.gz diff --git a/auto.ini b/auto.ini new file mode 100644 index 0000000..d362ba3 --- /dev/null +++ b/auto.ini @@ -0,0 +1,3 @@ +[add_build_requires] +perl(MRO::Compat)=0 +perl(Test::More)=0 diff --git a/perl-Class-Method-Modifiers.spec b/perl-Class-Method-Modifiers.spec index a44b776..dbbc33f 100644 --- a/perl-Class-Method-Modifiers.spec +++ b/perl-Class-Method-Modifiers.spec @@ -1,22 +1,23 @@ +Name: perl-Class-Method-Modifiers +Summary: Provides Moose-like method modifiers +Version: 1.05 +Release: 1%{?dist} +License: GPL+ or Artistic +Group: Development/Libraries +Source0: http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/Class-Method-Modifiers-%{version}.tar.gz +URL: http://search.cpan.org/dist/Class-Method-Modifiers +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +BuildArch: noarch -Name: perl-Class-Method-Modifiers -Version: 1.04 -Release: 2%{?dist} -License: GPL+ or Artistic -Group: Development/Libraries -Summary: Provides Moose-like method modifiers -Source: http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/Class-Method-Modifiers-%{version}.tar.gz -Url: http://search.cpan.org/dist/Class-Method-Modifiers -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -BuildArch: noarch +BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42 +BuildRequires: perl(MRO::Compat) +BuildRequires: perl(Test::Exception) +BuildRequires: perl(Test::More) -BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42 -BuildRequires: perl(MRO::Compat) -# testing -BuildRequires: perl(Test::Exception) -BuildRequires: perl(Test::More) +%{?perl_default_filter} +%{?perl_default_subpackage_tests} %description Method modifiers are a powerful feature from the CLOS (Common Lisp Object @@ -37,8 +38,6 @@ particular modifiers work. %prep %setup -q -n Class-Method-Modifiers-%{version} -find t/ -type f -exec perl -pi -e 's|^#!perl|#!/usr/bin/perl|' {} + - %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} @@ -46,7 +45,7 @@ make %{?_smp_mflags} %install rm -rf %{buildroot} -make pure_install PERL_INSTALL_ROOT=%{buildroot} +make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' @@ -60,11 +59,15 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc Changes t/ +%doc Changes %{perl_vendorlib}/* %{_mandir}/man3/*.3* %changelog +* Mon Mar 01 2010 Chris Weyl 1.05-1 +- update by Fedora::App::MaintainerTools 0.004 +- PERL_INSTALL_ROOT => DESTDIR + * Fri Dec 4 2009 Stepan Kasal - 1.04-2 - rebuild against perl 5.10.1 diff --git a/sources b/sources index 60a0922..d22c09f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -bf278d379903849d492ab975d6504cbe Class-Method-Modifiers-1.04.tar.gz +8f504d4a95b2994835fbe72a3790864e Class-Method-Modifiers-1.05.tar.gz From 721ff52edfa126773ee938926552048b4882234e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Fri, 30 Apr 2010 10:02:04 +0000 Subject: [PATCH 4/5] - Mass rebuild with perl-5.12.0 --- perl-Class-Method-Modifiers.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Class-Method-Modifiers.spec b/perl-Class-Method-Modifiers.spec index dbbc33f..78ab5b6 100644 --- a/perl-Class-Method-Modifiers.spec +++ b/perl-Class-Method-Modifiers.spec @@ -1,7 +1,7 @@ Name: perl-Class-Method-Modifiers Summary: Provides Moose-like method modifiers Version: 1.05 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ or Artistic Group: Development/Libraries Source0: http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/Class-Method-Modifiers-%{version}.tar.gz @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Fri Apr 30 2010 Marcela Maslanova - 1.05-2 +- Mass rebuild with perl-5.12.0 + * Mon Mar 01 2010 Chris Weyl 1.05-1 - update by Fedora::App::MaintainerTools 0.004 - PERL_INSTALL_ROOT => DESTDIR From ed13d6d5e78cd839f8f1a3da5435be23d3bc46fb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 06:08:27 +0000 Subject: [PATCH 5/5] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile 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 7fb14fc..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: perl-Class-Method-Modifiers -# $Id$ -NAME := perl-Class-Method-Modifiers -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/import.log b/import.log deleted file mode 100644 index 492c969..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -perl-Class-Method-Modifiers-1_01-1_fc9:HEAD:perl-Class-Method-Modifiers-1.01-1.fc9.src.rpm:1220898535