* Add a prereq on Data::Dumper 2.11 or better, needed to dump q// objects.

master
Joey Hess 2008-01-07 18:12:12 -05:00
parent 08cb5f7bad
commit e35eb5a418
4 changed files with 7 additions and 1 deletions

View File

@ -3,7 +3,7 @@
use warnings; use warnings;
use strict; use strict;
use Cwd q{abs_path}; use Cwd q{abs_path};
use Data::Dumper; use Data::Dumper ;
use IkiWiki; use IkiWiki;
package IkiWiki; package IkiWiki;

View File

@ -103,5 +103,6 @@ WriteMakefile(
'Mail::Sendmail' => 0, 'Mail::Sendmail' => 0,
'HTML::Parser' => 0, 'HTML::Parser' => 0,
'URI' => 0, 'URI' => 0,
'Data::Dumper' => 2.11,
}, },
); );

1
debian/changelog vendored
View File

@ -8,6 +8,7 @@ ikiwiki (2.19) UNRELEASED; urgency=low
forcing a user to log in. forcing a user to log in.
* opendiscussion: allow editing of the toplevel discussion page, * opendiscussion: allow editing of the toplevel discussion page,
and, indirectly, allow creating new discussion pages. and, indirectly, allow creating new discussion pages.
* Add a prereq on Data::Dumper 2.11 or better, needed to dump q// objects.
-- Joey Hess <joeyh@debian.org> Mon, 07 Jan 2008 15:35:16 -0500 -- Joey Hess <joeyh@debian.org> Mon, 07 Jan 2008 15:35:16 -0500

View File

@ -29,3 +29,7 @@ without any payload of the actual regexp, and that would also certainly also hav
'wiki_file_regexp' => qr/(?-xism:(^[-[:alnum:]_.:\/+]+$))/ 'wiki_file_regexp' => qr/(?-xism:(^[-[:alnum:]_.:\/+]+$))/
This would call for at most an installation prerequisite of Data::Dumper >= 1.121. A look at the module's changelog shows that no intervening versions were actually released, so 1.121 would be the minimal good one. This would call for at most an installation prerequisite of Data::Dumper >= 1.121. A look at the module's changelog shows that no intervening versions were actually released, so 1.121 would be the minimal good one.
> You must have a very old version of perl there. This seems to be a bug in
> data dumper before 2.11, which didn't properly dump q// objects. Prereq
> added, [[done]] --[[Joey]]