From b2fe2ed6ac76062cc9e6aec1be143c9398476ca5 Mon Sep 17 00:00:00 2001 From: Steven Pritchard Date: Jul 28 2006 18:23:44 +0000 Subject: Update to 0.2804. BR perl(version). Fix find option order. --- diff --git a/perl-Module-Build.spec b/perl-Module-Build.spec index 77d9cb7..17314b0 100644 --- a/perl-Module-Build.spec +++ b/perl-Module-Build.spec @@ -1,7 +1,8 @@ -%define module_version 0.2801 +%define module_version 0.2804 Name: perl-Module-Build -Version: 0.2801 +# When the module version is x.yz, set Version to x.yz00. +Version: 0.2804 Release: 1%{?dist} Summary: Perl module for building and installing Perl modules License: GPL or Artistic @@ -15,6 +16,7 @@ BuildRequires: perl(ExtUtils::CBuilder) >= 0.15 BuildRequires: perl(ExtUtils::ParseXS) >= 1.02 BuildRequires: perl(YAML) BuildRequires: perl(Pod::Readme) >= 0.04 +BuildRequires: perl(version) > 0.64 Requires: perl(Archive::Tar) >= 1.08 Requires: perl(ExtUtils::CBuilder) >= 0.15 Requires: perl(ExtUtils::ParseXS) >= 1.02 @@ -43,7 +45,7 @@ works fine on perl 5.005 if you can install a few additional modules. rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 -find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null \; +find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; chmod -R u+rwX,go+rX,go-w $RPM_BUILD_ROOT/* @@ -62,6 +64,11 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Module::Build*.3* %changelog +* Fri Jul 28 2006 Steven Pritchard 0.2804-1 +- Update to 0.2804. +- BR perl(version). +- Fix find option order. + * Mon May 22 2006 Steven Pritchard 0.2801-1 - Update to 0.2801. - Drop the /dev/zero hack. (Upstream fixed this problem.)