#acl PaulHowarth:read,write,admin,revert,delete All:read === Wednesday 8th July 2009 === ==== Local Packages ==== * Cleaned up and rebuilt `moin-theme-dew` * Updated `perl-Module-Build` to 0.34; I couldn't get `t/PL_files.t` to work with RHL-9 and RHEL-3 so I disabled it for `perl` < 5.8.1: . {{{ --- Module-Build-0.34/t/PL_files.t 2009-07-08 12:17:26.000000000 +0100 +++ Module-Build-0.34/t/PL_files.t 2009-07-08 12:23:05.000000000 +0100 @@ -2,10 +2,18 @@ use strict; use lib $ENV{PERL_CORE} ? '../lib/Module/Build/t/lib' : 't/lib'; -use MBTest tests => 8; +use MBTest; use DistGen; use Module::Build; +{ + if ( $] < 5.008001 ) { + plan skip_all => 'Test would fail on perl < 5.8.1'; + } else { + plan tests => 8; + } +} + my $dist; # Test that PL files don't get installed even in bin or lib }}} . Not quite sure what was going wrong there but perhaps related to the old version of `File::Temp` on those releases? * Updated `unrar` to 3.9.5 and made the package compatible with the one in [[http://rpmfusion.org/|RPM Fusion]], by including subpackages for `libunrar` and `libunrar-devel`, and using `alternatives` to manage the `unrar` binary (and also its manpage, which the RPM Fusion version doesn't do yet) ----