r43954 - in /trunk/libsuper-perl: Build.PL Changes MANIFEST META.yml Makefile.PL README debian/changelog lib/SUPER.pm t/developer/
nhandler-guest at users.alioth.debian.org
nhandler-guest at users.alioth.debian.org
Sat Sep 12 02:46:11 UTC 2009
Author: nhandler-guest
Date: Sat Sep 12 02:46:05 2009
New Revision: 43954
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=43954
Log:
Update to 1.17-1
Removed:
trunk/libsuper-perl/Makefile.PL
trunk/libsuper-perl/t/developer/
Modified:
trunk/libsuper-perl/Build.PL
trunk/libsuper-perl/Changes
trunk/libsuper-perl/MANIFEST
trunk/libsuper-perl/META.yml
trunk/libsuper-perl/README
trunk/libsuper-perl/debian/changelog
trunk/libsuper-perl/lib/SUPER.pm
Modified: trunk/libsuper-perl/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsuper-perl/Build.PL?rev=43954&op=diff
==============================================================================
--- trunk/libsuper-perl/Build.PL (original)
+++ trunk/libsuper-perl/Build.PL Sat Sep 12 02:46:05 2009
@@ -1,53 +1,26 @@
#! perl
+
+BEGIN { require 5.006002 }
use Module::Build;
-my $class = Module::Build->subclass(
- class => 'Module::Build::FilterTests',
- code => <<'END_HERE',
-
- use File::Glob;
- use File::Spec::Functions;
-
- sub ACTION_disttest
- {
- my $self = shift;
- local $ENV{PERL_RUN_ALL_TESTS} = 1;
- $self->SUPER::ACTION_disttest( @_ );
- }
-
- sub find_test_files
- {
- my $self = shift;
- my $tests = $self->SUPER::find_test_files( @_ );
-
- return $tests unless $ENV{PERL_RUN_ALL_TESTS};
-
- my $test_pattern = catfile(qw( t developer *.t ) );
- unshift @$tests, File::Glob::bsd_glob( $test_pattern );
- return $tests;
- }
-END_HERE
-);
-
-my $build = $class->new(
- module_name => 'SUPER',
- license => 'perl',
- requires =>
- {
- 'Scalar::Util' => '',
- 'Sub::Identify' => '',
- },
- build_requires =>
- {
- 'Test::Simple' => '0.61',
- },
- create_makefile_pl => 'traditional',
- sign => 1,
- no_index =>
- {
- package => [ qw( UNIVERSAL DB ) ]
- },
+my $build = Module::Build->new(
+ module_name => 'SUPER',
+ license => 'perl',
+ requires =>
+ {
+ 'perl' => '5.6.2',
+ 'Scalar::Util' => '1.20',
+ 'Sub::Identify' => '0.03',
+ },
+ build_requires =>
+ {
+ 'Test::Simple' => '0.61',
+ },
+ no_index =>
+ {
+ package => [ qw( UNIVERSAL DB ) ]
+ },
);
$build->create_build_script();
Modified: trunk/libsuper-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsuper-perl/Changes?rev=43954&op=diff
==============================================================================
--- trunk/libsuper-perl/Changes (original)
+++ trunk/libsuper-perl/Changes Sat Sep 12 02:46:05 2009
@@ -1,7 +1,7 @@
Revision history for Perl extension SUPER.
1.16
- Wed Apr 4 05:54:23 UTC 2007 ($Rev$, $Author$)
+ Wed Apr 4 05:54:23 UTC 2007 ($Rev: 154 $, $Author: chromatic $)
- avoid deep recursion problem on deep hierarchies (RT #24795, Paul Talacko)
1.15
Modified: trunk/libsuper-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsuper-perl/MANIFEST?rev=43954&op=diff
==============================================================================
--- trunk/libsuper-perl/MANIFEST (original)
+++ trunk/libsuper-perl/MANIFEST Sat Sep 12 02:46:05 2009
@@ -1,6 +1,5 @@
Changes
Build.PL
-Makefile.PL
MANIFEST
README
lib/SUPER.pm
@@ -11,6 +10,4 @@
t/get_all_parents.t
t/keep_going.t
t/keep_going_manual.t
-t/developer/pod.t
-t/developer/pod_coverage.t
META.yml Module meta-data (added by MakeMaker)
Modified: trunk/libsuper-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsuper-perl/META.yml?rev=43954&op=diff
==============================================================================
--- trunk/libsuper-perl/META.yml (original)
+++ trunk/libsuper-perl/META.yml Sat Sep 12 02:46:05 2009
@@ -1,30 +1,33 @@
---
name: SUPER
-version: 1.16
+version: 1.17
author:
- - 'Created by Simon Cozens, C<simon at cpan.org>.'
+ - 'Created by Simon Cozens, C<simon at cpan.org>. Copyright (c) 2003 Simon Cozens.'
abstract: control superclass method dispatch
license: perl
resources:
license: http://dev.perl.org/licenses/
-requires:
- Scalar::Util: ''
- Sub::Identify: ''
build_requires:
Test::Simple: 0.61
+requires:
+ Scalar::Util: 1.20
+ Sub::Identify: 0.03
+ perl: v5.6.2
+configure_requires:
+ Module::Build: 0.35
provides:
DB:
file: lib/SUPER.pm
SUPER:
file: lib/SUPER.pm
- version: 1.16
+ version: 1.17
UNIVERSAL:
file: lib/SUPER.pm
no_index:
package:
- UNIVERSAL
- DB
-generated_by: Module::Build version 0.2806
+generated_by: Module::Build version 0.35
meta-spec:
- url: http://module-build.sourceforge.net/META-spec-v1.2.html
- version: 1.2
+ url: http://module-build.sourceforge.net/META-spec-v1.4.html
+ version: 1.4
Modified: trunk/libsuper-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsuper-perl/README?rev=43954&op=diff
==============================================================================
--- trunk/libsuper-perl/README (original)
+++ trunk/libsuper-perl/README Sat Sep 12 02:46:05 2009
@@ -1,7 +1,7 @@
-SUPER version 1.16
+SUPER version 1.17
==================
-Wed Apr 4 05:55:29 UTC 2007
+Sat Sep 5 01:50:48 UTC 2009
This module provides three different ways to control superclass method
dispatch. Please see the POD for details.
@@ -27,7 +27,7 @@
COPYRIGHT AND LICENCE
Copyright (c) 2003 Simon Cozens.
-Copyright (c) 2004-2007 chromatic.
+Copyright (c) 2004-2009 chromatic.
This library is free software; you can redistribute it and/or modify it under
-the same terms as Perl itself.
+the same terms as Perl 5.10 itself.
Modified: trunk/libsuper-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsuper-perl/debian/changelog?rev=43954&op=diff
==============================================================================
--- trunk/libsuper-perl/debian/changelog (original)
+++ trunk/libsuper-perl/debian/changelog Sat Sep 12 02:46:05 2009
@@ -1,3 +1,9 @@
+libsuper-perl (1.17-1) UNRELEASED; urgency=low
+
+ * (NOT RELEASED YET) New upstream release
+
+ -- Live session user <ubuntu at ubuntu> Sat, 12 Sep 2009 02:45:53 +0000
+
libsuper-perl (1.16-2) UNRELEASED; urgency=low
[ Nathan Handler ]
Modified: trunk/libsuper-perl/lib/SUPER.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsuper-perl/lib/SUPER.pm?rev=43954&op=diff
==============================================================================
--- trunk/libsuper-perl/lib/SUPER.pm (original)
+++ trunk/libsuper-perl/lib/SUPER.pm Sat Sep 12 02:46:05 2009
@@ -32,7 +32,7 @@
use strict;
use warnings;
-our $VERSION = '1.16';
+our $VERSION = '1.17';
use base 'Exporter';
@SUPER::ISA = 'Exporter';
@@ -245,9 +245,10 @@
=head1 AUTHOR
-Created by Simon Cozens, C<simon at cpan.org>.
+Created by Simon Cozens, C<simon at cpan.org>. Copyright (c) 2003 Simon Cozens.
Maintained by chromatic, E<lt>chromatic at wgz dot orgE<gt> after version 1.01.
+Copyright (c) 2004-2009 chromatic.
Thanks to Joshua ben Jore for bug reports and suggestions.
More information about the Pkg-perl-cvs-commits
mailing list