Jonathan Rockway <[EMAIL PROTECTED]> writes: > Hello,
Hi Jon, > I gave a Catalyst talk at Frozen Perl last weekend. The slides are > here: > > http://www.jrock.us/fp2008/catalyst/start.html […] > The code is also available; it's linked to from the slides. I just went through the slides and code after nuking my entire set of non-deb-packaged modules (I wanted to play around with CPANPLUS::Dist::deb :) and noticed a few missing things in the dependencies and MANIFEST, here's a quick patch: [EMAIL PROTECTED]:~/src$ diff -ur KitiWiki-0.01{.orig,}/Makefile.PL --- KitiWiki-0.01.orig/Makefile.PL 2008-02-16 17:20:55.000000000 +0000 +++ KitiWiki-0.01/Makefile.PL 2008-02-22 03:23:10.000000000 +0000 @@ -9,11 +9,13 @@ requires 'Catalyst::Plugin::ConfigLoader'; requires 'Catalyst::Plugin::Static::Simple'; requires 'Catalyst::Runtime' => '5.7012'; +requires 'Catalyst::Model::Adaptor'; requires 'Catalyst::Devel'; # for the talk requires 'Encode'; requires 'File::Slurp'; requires 'Moose'; requires 'MooseX::Types::Path::Class'; +requires 'MosseX::AttributeHelpers;' requires 'Time::HiRes'; requires 'YAML'; build_requires 'Directory::Scratch'; [EMAIL PROTECTED]:~/src$ diff -ur KitiWiki-0.01{.orig,}/MANIFEST --- KitiWiki-0.01.orig/MANIFEST 2008-02-16 17:22:13.000000000 +0000 +++ KitiWiki-0.01/MANIFEST 2008-02-22 03:24:26.000000000 +0000 @@ -56,3 +56,4 @@ t/wiki-backend.t t/wiki-revision-sort.t t/wiki-validation.t +wiki_pages -- ilmari "A disappointingly low fraction of the human race is, at any given time, on fire." - Stig Sandbeck Mathisen _______________________________________________ List: [email protected] Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/[email protected]/ Dev site: http://dev.catalyst.perl.org/
