Changeset 5601
- Timestamp:
- 06/26/09 09:06:01 (3 years ago)
- Location:
- trunk/Perl-Dist-Padre
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
Makefile.PL (modified) (1 diff)
-
lib/Perl/Dist/Padre.pm (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Perl-Dist-Padre
- Property svn:ignore
-
old new 1 1 META.yml 2 Makefile 3 blib 2 4 inc 3 Makefile 5 pm_to_blib
-
- Property svn:ignore
-
trunk/Perl-Dist-Padre/Makefile.PL
r2771 r5601 1 use inc::Module::Install 0. 77;1 use inc::Module::Install 0.91; 2 2 3 3 all_from 'lib/Perl/Dist/Padre.pm'; 4 requires 'Perl::Dist::Strawberry' => '1.07'; 4 requires 'Perl::Dist::Strawberry' => '1.11'; 5 requires 'Perl::Dist::WiX' => '0.185'; 5 6 test_requires 'Test::More' => '0.42'; 6 7 test_requires 'LWP::Online' => '1.07'; -
trunk/Perl-Dist-Padre/lib/Perl/Dist/Padre.pm
r4933 r5601 26 26 use Perl::Dist::Strawberry (); 27 27 28 our $VERSION = '0.2 5';28 our $VERSION = '0.260_001'; 29 29 our @ISA = 'Perl::Dist::Strawberry'; 30 30 … … 39 39 shift->SUPER::new( 40 40 app_id => 'padre', 41 app_name => 'Padre Standalone Win32',41 app_name => 'Padre Standalone', 42 42 app_publisher => 'Padre', 43 43 app_publisher_url => 'http://padre.perlide.org/', 44 image_dir => 'C:\\padre', 45 44 image_dir => 'C:\strawberry', 45 46 # Set e-mail to something Strawberry-specific. 47 perl_config_cf_email => 'perl.padre@csjewell.fastmail.us', 48 49 # Program version. 50 build_number => 1, 51 beta_number => 1, 52 46 53 # Build both exe and zip versions 47 exe=> 1,54 msi => 1, 48 55 zip => 1, 49 56 @_, … … 53 60 sub app_ver_name { 54 61 $_[0]->{app_ver_name} or 55 $_[0]->app_name . ' ' . $_[0]->perl_version_human . ' Alpha 1'; 62 $_[0]->app_name 63 . ' ' . $_[0]->perl_version_human 64 . '.' . $_[0]->build_number 65 . ($_[0]->beta_number ? ' Beta ' . $_[0]->beta_number : ''); 56 66 } 57 67 58 68 sub output_base_filename { 59 69 $_[0]->{output_base_filename} or 60 'padre-standalone-' . $_[0]->perl_version_human . '-alpha-1'; 70 'padre-standalone' 71 . '-' . $_[0]->perl_version_human 72 . '.' . $_[0]->build_number 73 . ($_[0]->beta_number ? '-beta-' . $_[0]->beta_number : '') 61 74 } 62 75 … … 70 83 sub install_perl_588 { 71 84 my $self = shift; 72 die "Perl 5.8.8 is not available in Chocolate Perl"; 85 die "Perl 5.8.8 is not available in Padre Standalone"; 86 } 87 88 sub install_perl_589 { 89 my $self = shift; 90 die "Perl 5.8.9 is not available in Padre Standalone"; 73 91 } 74 92 … … 80 98 # them from the Wx problems 81 99 $self->install_modules( qw{ 100 File::Next 82 101 App::Ack 83 102 Class::Adapter 103 Class::Inspector 84 104 Class::Unload 105 AutoXS::Header 85 106 Class::XSAccessor 86 107 Devel::Dumpvar 87 Encode88 108 File::Copy::Recursive 89 109 File::ShareDir 90 110 File::ShareDir::PAR 91 IPC::Cmd111 Win32::Process 92 112 IPC::Run 113 Test::Object 114 Config::Tiny 115 Test::ClassAPI 116 Clone 117 Hook::LexWrap 118 Test::SubCalls 119 List::MoreUtils 120 Task::Weaken 121 PPI 122 File::Find::Rule::Perl 123 File::Find::Rule::VCS 124 Module::Extract 125 Module::Manifest 126 Module::Math::Depends 93 127 Module::Inspector 94 128 Module::Refresh 129 Devel::Symdump 130 Pod::Coverage 131 Test::Pod::Coverage 95 132 Module::Starter 96 133 ORLite 97 134 ORLite::Migrate 98 PPI 135 Text::Diff 136 Test::Differences 137 File::Slurp 138 Pod::POM 99 139 Parse::ErrorString::Perl 100 Pod::POM101 140 Pod::Simple 102 141 Pod::Simple::XHTML 103 Text::Diff104 142 Text::FindIndent 105 threads106 threads::shared107 143 Thread::Queue 108 Clone109 List::MoreUtils110 Task::Weaken111 Test::Object112 Class::Inspector113 Config::Tiny114 Hook::LexWrap144 Pod::Abstract 145 Test::Most 146 Devel::StackTrace 147 Class::Data::Inheritable 148 Exception::Class 149 Text::Balanced 150 Class::XSAccessor::Array 115 151 } ); 116 152 … … 148 184 should be reported to their respective distributions. 149 185 150 =head1 AUTHOR 186 =head1 AUTHORS 187 188 Curtis Jewell E<lt>csjewell@cpan.orgE<gt> 151 189 152 190 Adam Kennedy E<lt>adamk@cpan.orgE<gt> … … 154 192 =head1 COPYRIGHT 155 193 156 Copyright 2009 Adam Kennedy .194 Copyright 2009 Adam Kennedy and Curtis Jewell. 157 195 158 196 This program is free software; you can redistribute
Note: See TracChangeset
for help on using the changeset viewer.
