Codebase list libmasonx-interp-withcallbacks-perl / df784fb
* New upstream release. * Add libtest-pod-perl to Build-Depends-Indep. Gregor Herrmann 17 years ago
8 changed file(s) with 56 addition(s) and 38 deletion(s). Raw diff Collapse all Expand all
1717 recommends => {
1818 'Apache::TestMB' => 0
1919 },
20 create_makefile_pl => 'passthrough',
2120 add_to_cleanup => ['t/mason'],
2221 )->create_build_script;
00 Revision history for Perl extension MasonX::Interp::WithCallbacks.
1
2 1.16 2006-07-21T17:00:55
3 - Replaced broken passthrough Makefile.PL with a real Makefile.PL.
4 Reported by Scott Lanning.
15
26 1.15 2006-05-26T23:02:03
37 - Added missing t/htdocs/alt.mc to MANIFEST and therefore to the
00 ---
11 name: MasonX-Interp-WithCallbacks
2 version: 1.15
2 version: !!perl/hash:Module::Build::Version
3 original: 1.16
4 version:
5 - 1
6 - 160
37 author:
48 - 'David Wheeler <david@kineticode.com>'
59 abstract: Mason callback support via Params::CallbackRequest.
1822 provides:
1923 MasonX::Interp::WithCallbacks:
2024 file: lib/MasonX/Interp/WithCallbacks.pm
21 version: 1.15
22 generated_by: Module::Build version 0.2801
25 version: 1.16
26 generated_by: Module::Build version 0.2804
2327 meta-spec:
2428 url: http://module-build.sourceforge.net/META-spec-v1.2.html
2529 version: 1.2
0 # Note: this file was auto-generated by Module::Build::Compat version 0.03
1
2 unless (eval "use Module::Build::Compat 0.02; 1" ) {
3 print "This module requires Module::Build to install itself.\n";
4
5 require ExtUtils::MakeMaker;
6 my $yn = ExtUtils::MakeMaker::prompt
7 (' Install Module::Build now from CPAN?', 'y');
8
9 unless ($yn =~ /^y/i) {
10 die " *** Cannot install without Module::Build. Exiting ...\n";
11 }
12
13 require Cwd;
14 require File::Spec;
15 require CPAN;
16
17 # Save this 'cause CPAN will chdir all over the place.
18 my $cwd = Cwd::cwd();
19
20 CPAN::Shell->install('Module::Build::Compat');
21 CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
22 or die "Couldn't install Module::Build, giving up.\n";
23
24 chdir $cwd or die "Cannot chdir() back to $cwd: $!";
25 }
26 eval "use Module::Build::Compat 0.02; 1" or die $@;
27
28 Module::Build::Compat->run_build_pl(args => \@ARGV);
29 require Apache::TestMB;
30 Module::Build::Compat->write_makefile(build_class => 'Apache::TestMB');
0 use strict;
1 use ExtUtils::MakeMaker;
2 use File::Spec::Functions qw(catdir);
3 use constant HAS_APACHE_TEST => eval {
4 require Apache::Test && Apache::Test->VERSION >= 1.04
5 };
6
7 # Set up the test suite.
8 if (HAS_APACHE_TEST) {
9 require Apache::TestMM;
10 require Apache::TestRunPerl;
11 Apache::TestMM->import(qw(test clean));
12 Apache::TestMM::filter_args();
13 Apache::TestRunPerl->generate_script();
14 } else {
15 print "Skipping Apache test setup.\n";
16 }
17
18 my $clean = join ' ', map { catdir('t', $_) } qw(mason TEST);
19
20 WriteMakefile(
21 NAME => 'MasonX::Interp::WithCallbacks',
22 VERSION_FROM => 'lib/MasonX/Interp/WithCallbacks.pm',
23 PREREQ_PM => {
24 'HTML::Mason' => '1.23',
25 'Test::Simple' => '0.17',
26 'Class::Container' => '0.09',
27 'Params::CallbackRequest' => '1.15',
28 },
29 clean => { FILES => $clean },
30 ($] >= 5.005 ? ## Add these new keywords supported since 5.005
31 (ABSTRACT_FROM => 'lib/MasonX/Interp/WithCallbacks.pm',
32 AUTHOR => 'David Wheeler <david@kineticode.com>') : ()),
33 );
34
0 MasonX/Interp/WithCallbacks version 1.15
0 MasonX/Interp/WithCallbacks version 1.16
11 ========================================
22
33 MasonX::Interp::WithCallbacks subclasses HTML::Mason::Interp in order to
0 libmasonx-interp-withcallbacks-perl (1.16-1) unstable; urgency=low
1
2 * New upstream release.
3 * Add libtest-pod-perl to Build-Depends-Indep.
4
5 -- gregor herrmann <gregor+debian@comodo.priv.at> Mon, 7 Aug 2006 01:19:34 +0200
6
07 libmasonx-interp-withcallbacks-perl (1.15-1) unstable; urgency=low
18
29 * New upstream release.
11 Section: perl
22 Priority: optional
33 Build-Depends: debhelper (>= 5.0.0)
4 Build-Depends-Indep: libmodule-build-perl, perl (>= 5.8.0-7), libhtml-mason-perl (>= 1.23), libparams-callbackrequest-perl (>= 1.15), libclass-container-perl (>= 0.09)
4 Build-Depends-Indep: libmodule-build-perl, perl (>= 5.8.0-7), libhtml-mason-perl (>= 1.23), libparams-callbackrequest-perl (>= 1.15), libclass-container-perl (>= 0.09), libtest-pod-perl
55 Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
66 Uploaders: Jonas Genannt <jonas.genannt@capi2name.de>, gregor herrmann <gregor+debian@comodo.priv.at>
77 Standards-Version: 3.7.2
77
88 use vars qw($VERSION @ISA);
99 @ISA = qw(HTML::Mason::Interp);
10 $VERSION = '1.15';
10 $VERSION = '1.16';
1111
1212 Params::Validate::validation_options
1313 ( on_fail => sub { HTML::Mason::Exception::Params->throw( join '', @_ ) } );