r29742 - in /branches/upstream/libsub-exporter-perl/current: Changes MANIFEST META.yml Makefile.PL inc/Module/Install/AutoManifest.pm inc/Module/Install/ExtraTests.pm lib/Sub/Exporter.pm lib/Sub/Exporter/Util.pm

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Sat Jan 17 11:03:59 UTC 2009


Author: ansgar-guest
Date: Sat Jan 17 11:03:45 2009
New Revision: 29742

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=29742
Log:
[svn-upgrade] Integrating new upstream version, libsub-exporter-perl (0.982)

Added:
    branches/upstream/libsub-exporter-perl/current/inc/Module/Install/AutoManifest.pm
Modified:
    branches/upstream/libsub-exporter-perl/current/Changes
    branches/upstream/libsub-exporter-perl/current/MANIFEST
    branches/upstream/libsub-exporter-perl/current/META.yml
    branches/upstream/libsub-exporter-perl/current/Makefile.PL
    branches/upstream/libsub-exporter-perl/current/inc/Module/Install/ExtraTests.pm
    branches/upstream/libsub-exporter-perl/current/lib/Sub/Exporter.pm
    branches/upstream/libsub-exporter-perl/current/lib/Sub/Exporter/Util.pm

Modified: branches/upstream/libsub-exporter-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsub-exporter-perl/current/Changes?rev=29742&op=diff
==============================================================================
--- branches/upstream/libsub-exporter-perl/current/Changes (original)
+++ branches/upstream/libsub-exporter-perl/current/Changes Sat Jan 17 11:03:45 2009
@@ -1,4 +1,7 @@
 Revision history for Sub-Exporter
+
+0.982     2009-01-16
+          add metadata for repo
 
 0.981     2008-10-24
           finally fix very occasional hash ordering issue in tests

Modified: branches/upstream/libsub-exporter-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsub-exporter-perl/current/MANIFEST?rev=29742&op=diff
==============================================================================
--- branches/upstream/libsub-exporter-perl/current/MANIFEST (original)
+++ branches/upstream/libsub-exporter-perl/current/MANIFEST Sat Jan 17 11:03:45 2009
@@ -1,5 +1,6 @@
 Changes
 inc/Module/Install.pm
+inc/Module/Install/AutoManifest.pm
 inc/Module/Install/Base.pm
 inc/Module/Install/Can.pm
 inc/Module/Install/ExtraTests.pm

Modified: branches/upstream/libsub-exporter-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsub-exporter-perl/current/META.yml?rev=29742&op=diff
==============================================================================
--- branches/upstream/libsub-exporter-perl/current/META.yml (original)
+++ branches/upstream/libsub-exporter-perl/current/META.yml Sat Jan 17 11:03:45 2009
@@ -21,4 +21,5 @@
   perl: 5.6.0
 resources:
   license: http://dev.perl.org/licenses/
-version: 0.981
+  repository: http://github.com/rjbs/sub-exporter
+version: 0.982

Modified: branches/upstream/libsub-exporter-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsub-exporter-perl/current/Makefile.PL?rev=29742&op=diff
==============================================================================
--- branches/upstream/libsub-exporter-perl/current/Makefile.PL (original)
+++ branches/upstream/libsub-exporter-perl/current/Makefile.PL Sat Jan 17 11:03:45 2009
@@ -8,4 +8,7 @@
 
 extra_tests;
 
+repository('http://github.com/rjbs/sub-exporter');
+auto_manifest;
+
 WriteAll();

Added: branches/upstream/libsub-exporter-perl/current/inc/Module/Install/AutoManifest.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsub-exporter-perl/current/inc/Module/Install/AutoManifest.pm?rev=29742&op=file
==============================================================================
--- branches/upstream/libsub-exporter-perl/current/inc/Module/Install/AutoManifest.pm (added)
+++ branches/upstream/libsub-exporter-perl/current/inc/Module/Install/AutoManifest.pm Sat Jan 17 11:03:45 2009
@@ -1,0 +1,45 @@
+#line 1
+use strict;
+use warnings;
+
+package Module::Install::AutoManifest;
+
+use Module::Install::Base;
+
+BEGIN {
+  our $VERSION = '0.003';
+  our $ISCORE  = 1;
+  our @ISA     = qw(Module::Install::Base);
+}
+
+sub auto_manifest {
+  my ($self) = @_;
+
+  return unless $Module::Install::AUTHOR;
+
+  die "auto_manifest requested, but no MANIFEST.SKIP exists\n"
+    unless -e "MANIFEST.SKIP";
+
+  if (-e "MANIFEST") {
+    unlink('MANIFEST') or die "Can't remove MANIFEST: $!";
+  }
+
+  $self->postamble(<<"END");
+create_distdir: manifest_clean manifest
+
+distclean :: manifest_clean
+
+manifest_clean:
+\t\$(RM_F) MANIFEST
+END
+
+}
+
+1;
+__END__
+
+#line 48
+
+#line 131
+
+1; # End of Module::Install::AutoManifest

Modified: branches/upstream/libsub-exporter-perl/current/inc/Module/Install/ExtraTests.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsub-exporter-perl/current/inc/Module/Install/ExtraTests.pm?rev=29742&op=diff
==============================================================================
--- branches/upstream/libsub-exporter-perl/current/inc/Module/Install/ExtraTests.pm (original)
+++ branches/upstream/libsub-exporter-perl/current/inc/Module/Install/ExtraTests.pm Sat Jan 17 11:03:45 2009
@@ -6,7 +6,7 @@
 use Module::Install::Base;
 
 BEGIN {
-  our $VERSION = '0.003';
+  our $VERSION = '0.004';
   our $ISCORE  = 1;
   our @ISA     = qw{Module::Install::Base};
 }
@@ -14,7 +14,7 @@
 sub extra_tests {
   my ($self) = @_;
 
-  die "extra_tests requested, but no ./xt exists\n" unless -d 'xt';
+  return unless -d 'xt';
   return unless my @content = grep { $_ =~ /^[.]/ } <xt/*>;
 
   die "unknown files found in ./xt" if grep { -f } @content;

Modified: branches/upstream/libsub-exporter-perl/current/lib/Sub/Exporter.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsub-exporter-perl/current/lib/Sub/Exporter.pm?rev=29742&op=diff
==============================================================================
--- branches/upstream/libsub-exporter-perl/current/lib/Sub/Exporter.pm (original)
+++ branches/upstream/libsub-exporter-perl/current/lib/Sub/Exporter.pm Sat Jan 17 11:03:45 2009
@@ -14,11 +14,11 @@
 
 =head1 VERSION
 
-version 0.981
+version 0.982
 
 =cut
 
-our $VERSION = '0.981';
+our $VERSION = '0.982';
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libsub-exporter-perl/current/lib/Sub/Exporter/Util.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsub-exporter-perl/current/lib/Sub/Exporter/Util.pm?rev=29742&op=diff
==============================================================================
--- branches/upstream/libsub-exporter-perl/current/lib/Sub/Exporter/Util.pm (original)
+++ branches/upstream/libsub-exporter-perl/current/lib/Sub/Exporter/Util.pm Sat Jan 17 11:03:45 2009
@@ -12,11 +12,11 @@
 
 =head1 VERSION
 
-version 0.981
-
-=cut
-
-our $VERSION = '0.981';
+version 0.982
+
+=cut
+
+our $VERSION = '0.982';
 
 =head1 DESCRIPTION
 




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