X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FHelper.pm;h=0a1e108fcf78483eaa37889008017a8bf20978fd;hb=829a28ca1fb2e9b4bc207d6fa3ef3eba42cec4b3;hp=878dc76a80f47c28a4faaae2b0fb6caddc405146;hpb=4e90e3c19d5c4411edb78516b07088da22a0d178;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Helper.pm b/lib/Catalyst/Helper.pm index 878dc76..0a1e108 100644 --- a/lib/Catalyst/Helper.pm +++ b/lib/Catalyst/Helper.pm @@ -74,12 +74,12 @@ sub mk_app { $self->{author} = $self->{author} = $ENV{'AUTHOR'} || eval { @{ [ getpwuid($<) ] }[6] } || 'Catalyst developer'; - + my $gen_scripts = ( $self->{makefile} ) ? 0 : 1; - my $gen_makefile = ( $self->{scripts} ) ? 0 : 1; - my $gen_app = ( $self->{scripts} || $self->{makefile} ) ? 0 : 1; - - if ( $gen_app ) { + my $gen_makefile = ( $self->{scripts} ) ? 0 : 1; + my $gen_app = ( $self->{scripts} || $self->{makefile} ) ? 0 : 1; + + if ($gen_app) { $self->_mk_dirs; $self->_mk_appclass; $self->_mk_readme; @@ -88,10 +88,10 @@ sub mk_app { $self->_mk_images; $self->_mk_favicon; } - if ( $gen_makefile ) { + if ($gen_makefile) { $self->_mk_makefile; - } - if ( $gen_scripts ) { + } + if ($gen_scripts) { $self->_mk_cgi; $self->_mk_fastcgi; $self->_mk_server; @@ -228,9 +228,10 @@ sub mk_file { my ( $self, $file, $content ) = @_; if ( -e $file ) { print qq/ exists "$file"\n/; - return 0 unless ( $self->{'.newfiles'} - || $self->{scripts} - || $self->{makefile} ); + return 0 + unless ( $self->{'.newfiles'} + || $self->{scripts} + || $self->{makefile} ); if ( $self->{'.newfiles'} ) { if ( my $f = IO::File->new("< $file") ) { my $oldcontent = join( '', (<$f>) ); @@ -343,6 +344,13 @@ sub _mk_makefile { $self->{path} .= '.pm'; my $dir = $self->{dir}; $self->render_file( 'makefile', "$dir\/Makefile.PL" ); + + if ( $self->{makefile} ) { + + # deprecate the old Build.PL file when regenerating Makefile.PL + $self->_deprecate_file( + File::Spec->catdir( $self->{dir}, 'Build.PL' ) ); + } } sub _mk_readme { @@ -441,6 +449,27 @@ sub _mk_favicon { } +sub _deprecate_file { + my ( $self, $file ) = @_; + if ( -e $file ) { + my $oldcontent; + if ( my $f = IO::File->new("< $file") ) { + $oldcontent = join( '', (<$f>) ); + } + my $newfile = $file . '.deprecated'; + if ( my $f = IO::File->new("> $newfile") ) { + binmode $f; + print $f $oldcontent; + print qq/created "$newfile"\n/; + unlink $file; + print qq/removed "$file"\n/; + return 1; + } + Catalyst::Exception->throw( + message => qq/Couldn't create "$file", "$!"/ ); + } +} + =head1 HELPERS Helpers are classes that provide two methods. @@ -574,12 +603,14 @@ author('[% author %]'); version_from('[% path %]'); license('perl'); -requires( Catalyst => '5.57' ); +include('ExtUtils::AutoInstall'); -install_script( glob('script/*.pl') ); +requires( Catalyst => '5.58' ); catalyst_files(); +install_script( glob('script/*.pl') ); +auto_install(); &WriteAll; __readme__ Run script/[% appprefix %]_server.pl to test the application.