rpms/perl-Moose/EL-5 import.log, NONE, 1.1 .cvsignore, 1.4, 1.5 perl-Moose.spec, 1.12, 1.13 sources, 1.10, 1.11

Lubomir Rintel (lkundrak) fedora-extras-commits at redhat.com
Sun Jul 13 19:46:23 UTC 2008


Author: lkundrak

Update of /cvs/pkgs/rpms/perl-Moose/EL-5
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv23487/EL-5

Modified Files:
	.cvsignore perl-Moose.spec sources 
Added Files:
	import.log 
Log Message:
merge from devel


--- NEW FILE import.log ---
perl-Moose-0_51-1_fc10:EL-5:perl-Moose-0.51-1.fc10.src.rpm:1215978342


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/perl-Moose/EL-5/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore	10 Oct 2006 15:46:56 -0000	1.4
+++ .cvsignore	13 Jul 2008 19:45:33 -0000	1.5
@@ -1 +1 @@
-Moose-0.14.tar.gz
+Moose-0.51.tar.gz


Index: perl-Moose.spec
===================================================================
RCS file: /cvs/pkgs/rpms/perl-Moose/EL-5/perl-Moose.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- perl-Moose.spec	1 Jun 2007 00:46:42 -0000	1.12
+++ perl-Moose.spec	13 Jul 2008 19:45:33 -0000	1.13
@@ -1,23 +1,28 @@
 Name:           perl-Moose
-Version:        0.22
+Version:        0.51
 Release:        1%{?dist}
 Summary:        Complete modern object system for Perl 5
-License:        GPL or Artistic
+License:        GPL+ or Artistic
 Group:          Development/Libraries
 URL:            http://search.cpan.org/dist/Moose/
-Source0:        http://www.cpan.org/authors/id/S/ST/STEVAN/Moose-%{version}.tar.gz
+# source tends to flip between these three authors
+Source0:        http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/Moose-%{version}.tar.gz
+#Source0:        http://search.cpan.org/CPAN/authors/id/S/ST/STEVAN/Moose-%{version}.tar.gz
+#Source0:        http://search.cpan.org/CPAN/authors/id/G/GR/GRODITI/Moose-%{version}.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:      noarch
 Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
 
 # core
-BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Test::More)         >= 0.62
+BuildRequires:  perl(ExtUtils::MakeMaker)
 # cpan
-BuildRequires:  perl(Module::Build)
-BuildRequires:  perl(Class::MOP) >= 0.36
-BuildRequires:  perl(Sub::Exporter) >= 0.954
-BuildRequires:  perl(Sub::Install) >= 0.92
-BuildRequires:  perl(Test::Exception) >= 0.21
+BuildRequires:  perl(Class::MOP)         >= 0.55
+BuildRequires:  perl(Module::Build) 
+BuildRequires:  perl(Filter::Simple) 
+BuildRequires:  perl(Sub::Exporter)      >= 0.954
+BuildRequires:  perl(Sub::Install)       >= 0.92
+BuildRequires:  perl(Test::Exception)    >= 0.21
 BuildRequires:  perl(Test::LongString)
 BuildRequires:  perl(UNIVERSAL::require) >= 0.10
 # optional test #1 (in no particular order)
@@ -60,12 +65,11 @@
 %prep
 %setup -q -n Moose-%{version}
 
-%build
-%{__perl} Build.PL installdirs=vendor
-./Build
-
 find t/ -type f -exec perl -pi -e 's|^#!/usr/local/bin|#!/usr/bin|' {} +
 
+# remove the originals of patched files...
+find . -name '*.orig' -exec rm -v {} +
+
 # Filter unwanted Provides:
 cat << \EOF > %{name}-prov
 #!/bin/sh
@@ -76,27 +80,73 @@
 %define __perl_provides %{_builddir}/Moose-%{version}/%{name}-prov
 chmod +x %{__perl_provides}
 
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+
 %install
 rm -rf %{buildroot}
 
-./Build install destdir=%{buildroot} create_packlist=0
+make pure_install PERL_INSTALL_ROOT=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} +
 find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
 
 %{_fixperms} %{buildroot}/*
 
 %check
-./Build test
+make test
 
 %clean
 rm -rf %{buildroot}
 
 %files
 %defattr(-,root,root,-)
-%doc Changes README t/
+%doc Changes README doap.rdf t/
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 28 2008 Chris Weyl <cweyl at alumni.drew.edu> 0.51-1
+- update to 0.51
+
+* Tue Jun 17 2008 Chris Weyl <cweyl at alumni.drew.edu> 0.50-1
+- update to 0.50
+- drop obviated test patch
+
+* Wed May 28 2008 Chris Weyl <cweyl at alumni.drew.edu> 0.44-2
+- bump
+
+* Wed May 21 2008 Chris Weyl <cweyl at alumni.drew.edu> 0.44-1
+- update to 0.44
+
+* Wed Mar 05 2008 Tom "spot" Callaway <tcallawa at redhat.com> 0.33-3
+- rebuild for new perl
+
+* Mon Jan 07 2008 Chris Weyl <cweyl at alumni.drew.edu> 0.33-2
+- remove *.orig files from t/ (BZ#427754)
+
+* Sat Dec 15 2007 Chris Weyl <cweyl at alumni.drew.edu> 0.33-1
+- update to 0.33
+
+* Wed Dec 05 2007 Chris Weyl <cweyl at alumni.drew.edu> 0.32-1
+- update to 0.32
+
+* Sun Nov 25 2007 Chris Weyl <cweyl at alumni.drew.edu> 0.30-1
+- update to 0.30
+
+* Sat Nov 17 2007 Chris Weyl <cweyl at alumni.drew.edu> 0.29-1
+- update to 0.29
+- refactor to Module::Install
+
+* Sun Oct 14 2007 Chris Weyl <cweyl at alumni.drew.edu> 0.26-1
+- udpate to 0.26
+
+* Sat Aug 11 2007 Chris Weyl <cweyl at alumni.drew.edu> 0.24-1
+- update to 0.24
+- license tag: GPL -> GPL+
+- patch t/202_...t to write to a tmpdir rather than .
+
 * Thu May 31 2007 Chris Weyl <cweyl at alumni.drew.edu> 0.22-1
 - update to 0.22
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/perl-Moose/EL-5/sources,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sources	1 Jun 2007 00:46:42 -0000	1.10
+++ sources	13 Jul 2008 19:45:33 -0000	1.11
@@ -1 +1 @@
-cc0b951659e9669a81a0e675b5618cb1  Moose-0.22.tar.gz
+a6f36fc2874a01dafcce09fcd3301111  Moose-0.51.tar.gz




More information about the fedora-extras-commits mailing list