r3412 - in /packages/libmasonx-interp-withcallbacks-perl/trunk: Build.PL Changes META.yml Makefile.PL README debian/changelog debian/control lib/MasonX/Interp/WithCallbacks.pm

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sun Aug 6 23:21:02 UTC 2006


Author: gregoa-guest
Date: Sun Aug  6 23:21:01 2006
New Revision: 3412

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=3412
Log:
* New upstream release.
* Add libtest-pod-perl to Build-Depends-Indep.

Modified:
    packages/libmasonx-interp-withcallbacks-perl/trunk/Build.PL
    packages/libmasonx-interp-withcallbacks-perl/trunk/Changes
    packages/libmasonx-interp-withcallbacks-perl/trunk/META.yml
    packages/libmasonx-interp-withcallbacks-perl/trunk/Makefile.PL
    packages/libmasonx-interp-withcallbacks-perl/trunk/README
    packages/libmasonx-interp-withcallbacks-perl/trunk/debian/changelog
    packages/libmasonx-interp-withcallbacks-perl/trunk/debian/control
    packages/libmasonx-interp-withcallbacks-perl/trunk/lib/MasonX/Interp/WithCallbacks.pm

Modified: packages/libmasonx-interp-withcallbacks-perl/trunk/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmasonx-interp-withcallbacks-perl/trunk/Build.PL?rev=3412&op=diff
==============================================================================
--- packages/libmasonx-interp-withcallbacks-perl/trunk/Build.PL (original)
+++ packages/libmasonx-interp-withcallbacks-perl/trunk/Build.PL Sun Aug  6 23:21:01 2006
@@ -18,6 +18,5 @@
     recommends         => {
         'Apache::TestMB' => 0
     },
-    create_makefile_pl => 'passthrough',
     add_to_cleanup     => ['t/mason'],
 )->create_build_script;

Modified: packages/libmasonx-interp-withcallbacks-perl/trunk/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmasonx-interp-withcallbacks-perl/trunk/Changes?rev=3412&op=diff
==============================================================================
--- packages/libmasonx-interp-withcallbacks-perl/trunk/Changes (original)
+++ packages/libmasonx-interp-withcallbacks-perl/trunk/Changes Sun Aug  6 23:21:01 2006
@@ -1,4 +1,8 @@
 Revision history for Perl extension MasonX::Interp::WithCallbacks.
+
+1.16  2006-07-21T17:00:55
+      - Replaced broken passthrough Makefile.PL with a real Makefile.PL.
+        Reported by Scott Lanning.
 
 1.15  2006-05-26T23:02:03
       - Added missing t/htdocs/alt.mc to MANIFEST and therefore to the

Modified: packages/libmasonx-interp-withcallbacks-perl/trunk/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmasonx-interp-withcallbacks-perl/trunk/META.yml?rev=3412&op=diff
==============================================================================
--- packages/libmasonx-interp-withcallbacks-perl/trunk/META.yml (original)
+++ packages/libmasonx-interp-withcallbacks-perl/trunk/META.yml Sun Aug  6 23:21:01 2006
@@ -1,6 +1,10 @@
 ---
 name: MasonX-Interp-WithCallbacks
-version: 1.15
+version: !!perl/hash:Module::Build::Version
+  original: 1.16
+  version:
+    - 1
+    - 160
 author:
   - 'David Wheeler <david at kineticode.com>'
 abstract: Mason callback support via Params::CallbackRequest.
@@ -19,8 +23,8 @@
 provides:
   MasonX::Interp::WithCallbacks:
     file: lib/MasonX/Interp/WithCallbacks.pm
-    version: 1.15
-generated_by: Module::Build version 0.2801
+    version: 1.16
+generated_by: Module::Build version 0.2804
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.2.html
   version: 1.2

Modified: packages/libmasonx-interp-withcallbacks-perl/trunk/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmasonx-interp-withcallbacks-perl/trunk/Makefile.PL?rev=3412&op=diff
==============================================================================
--- packages/libmasonx-interp-withcallbacks-perl/trunk/Makefile.PL (original)
+++ packages/libmasonx-interp-withcallbacks-perl/trunk/Makefile.PL Sun Aug  6 23:21:01 2006
@@ -1,31 +1,35 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.03
-    
-    unless (eval "use Module::Build::Compat 0.02; 1" ) {
-      print "This module requires Module::Build to install itself.\n";
-      
-      require ExtUtils::MakeMaker;
-      my $yn = ExtUtils::MakeMaker::prompt
-	('  Install Module::Build now from CPAN?', 'y');
-      
-      unless ($yn =~ /^y/i) {
-	die " *** Cannot install without Module::Build.  Exiting ...\n";
-      }
-      
-      require Cwd;
-      require File::Spec;
-      require CPAN;
-      
-      # Save this 'cause CPAN will chdir all over the place.
-      my $cwd = Cwd::cwd();
-      
-      CPAN::Shell->install('Module::Build::Compat');
-      CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
-	or die "Couldn't install Module::Build, giving up.\n";
-      
-      chdir $cwd or die "Cannot chdir() back to $cwd: $!";
-    }
-    eval "use Module::Build::Compat 0.02; 1" or die $@;
-    
-    Module::Build::Compat->run_build_pl(args => \@ARGV);
-    require Apache::TestMB;
-    Module::Build::Compat->write_makefile(build_class => 'Apache::TestMB');
+use strict;
+use ExtUtils::MakeMaker;
+use File::Spec::Functions qw(catdir);
+use constant HAS_APACHE_TEST => eval {
+    require Apache::Test && Apache::Test->VERSION >= 1.04
+};
+
+# Set up the test suite.
+if (HAS_APACHE_TEST) {
+    require Apache::TestMM;
+    require Apache::TestRunPerl;
+    Apache::TestMM->import(qw(test clean));
+    Apache::TestMM::filter_args();
+    Apache::TestRunPerl->generate_script();
+} else {
+    print "Skipping Apache test setup.\n";
+}
+
+my $clean = join ' ', map { catdir('t', $_) } qw(mason TEST);
+
+WriteMakefile(
+    NAME         => 'MasonX::Interp::WithCallbacks',
+    VERSION_FROM => 'lib/MasonX/Interp/WithCallbacks.pm',
+    PREREQ_PM    => {
+        'HTML::Mason'             => '1.23',
+        'Test::Simple'            => '0.17',
+        'Class::Container'        => '0.09',
+        'Params::CallbackRequest' => '1.15',
+    },
+    clean               => { FILES => $clean },
+    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
+      (ABSTRACT_FROM    => 'lib/MasonX/Interp/WithCallbacks.pm',
+       AUTHOR           => 'David Wheeler <david at kineticode.com>') : ()),
+);
+

Modified: packages/libmasonx-interp-withcallbacks-perl/trunk/README
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmasonx-interp-withcallbacks-perl/trunk/README?rev=3412&op=diff
==============================================================================
--- packages/libmasonx-interp-withcallbacks-perl/trunk/README (original)
+++ packages/libmasonx-interp-withcallbacks-perl/trunk/README Sun Aug  6 23:21:01 2006
@@ -1,4 +1,4 @@
-MasonX/Interp/WithCallbacks version 1.15
+MasonX/Interp/WithCallbacks version 1.16
 ========================================
 
 MasonX::Interp::WithCallbacks subclasses HTML::Mason::Interp in order to

Modified: packages/libmasonx-interp-withcallbacks-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmasonx-interp-withcallbacks-perl/trunk/debian/changelog?rev=3412&op=diff
==============================================================================
--- packages/libmasonx-interp-withcallbacks-perl/trunk/debian/changelog (original)
+++ packages/libmasonx-interp-withcallbacks-perl/trunk/debian/changelog Sun Aug  6 23:21:01 2006
@@ -1,3 +1,10 @@
+libmasonx-interp-withcallbacks-perl (1.16-1) unstable; urgency=low
+
+  * New upstream release.
+  * Add libtest-pod-perl to Build-Depends-Indep.
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Mon,  7 Aug 2006 01:19:34 +0200
+
 libmasonx-interp-withcallbacks-perl (1.15-1) unstable; urgency=low
 
   * New upstream release.

Modified: packages/libmasonx-interp-withcallbacks-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmasonx-interp-withcallbacks-perl/trunk/debian/control?rev=3412&op=diff
==============================================================================
--- packages/libmasonx-interp-withcallbacks-perl/trunk/debian/control (original)
+++ packages/libmasonx-interp-withcallbacks-perl/trunk/debian/control Sun Aug  6 23:21:01 2006
@@ -2,7 +2,7 @@
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 5.0.0)
-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)
+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
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jonas Genannt <jonas.genannt at capi2name.de>, gregor herrmann <gregor+debian at comodo.priv.at>
 Standards-Version: 3.7.2

Modified: packages/libmasonx-interp-withcallbacks-perl/trunk/lib/MasonX/Interp/WithCallbacks.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmasonx-interp-withcallbacks-perl/trunk/lib/MasonX/Interp/WithCallbacks.pm?rev=3412&op=diff
==============================================================================
--- packages/libmasonx-interp-withcallbacks-perl/trunk/lib/MasonX/Interp/WithCallbacks.pm (original)
+++ packages/libmasonx-interp-withcallbacks-perl/trunk/lib/MasonX/Interp/WithCallbacks.pm Sun Aug  6 23:21:01 2006
@@ -8,7 +8,7 @@
 
 use vars qw($VERSION @ISA);
 @ISA = qw(HTML::Mason::Interp);
-$VERSION = '1.15';
+$VERSION = '1.16';
 
 Params::Validate::validation_options
   ( on_fail => sub { HTML::Mason::Exception::Params->throw( join '', @_ ) } );




More information about the Pkg-perl-cvs-commits mailing list