r37933 - in /branches/upstream/libmodule-extract-use-perl/current: Changes META.yml Makefile.PL README lib/Use.pm t/load.t t/pod.t t/pod_coverage.t t/test_manifest

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Jun 10 14:14:16 UTC 2009


Author: jawnsy-guest
Date: Wed Jun 10 14:14:11 2009
New Revision: 37933

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=37933
Log:
[svn-upgrade] Integrating new upstream version, libmodule-extract-use-perl (0.16)

Modified:
    branches/upstream/libmodule-extract-use-perl/current/Changes
    branches/upstream/libmodule-extract-use-perl/current/META.yml
    branches/upstream/libmodule-extract-use-perl/current/Makefile.PL
    branches/upstream/libmodule-extract-use-perl/current/README
    branches/upstream/libmodule-extract-use-perl/current/lib/Use.pm
    branches/upstream/libmodule-extract-use-perl/current/t/load.t
    branches/upstream/libmodule-extract-use-perl/current/t/pod.t
    branches/upstream/libmodule-extract-use-perl/current/t/pod_coverage.t
    branches/upstream/libmodule-extract-use-perl/current/t/test_manifest

Modified: branches/upstream/libmodule-extract-use-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/Changes?rev=37933&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/Changes (original)
+++ branches/upstream/libmodule-extract-use-perl/current/Changes Wed Jun 10 14:14:11 2009
@@ -1,4 +1,8 @@
 # Changes for Module::Extract::Use
+
+0.16 - Wed Jun 10 00:21:12 2009
+	* Small distro cleanups and new META_MERGE hotness. No need
+	to upgrade.
 
 0.15 - Sun May 31 23:35:10 2009
 	* Debian wants the man pages, so I guess I'll make them

Modified: branches/upstream/libmodule-extract-use-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/META.yml?rev=37933&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/META.yml (original)
+++ branches/upstream/libmodule-extract-use-perl/current/META.yml Wed Jun 10 14:14:11 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Module-Extract-Use
-version:            0.15
+version:            0.16
 abstract:           Extract the modules that a modules uses
 author:
     - brian d foy <bdfoy at cpan.org>
@@ -11,9 +11,12 @@
 build_requires:
     ExtUtils::MakeMaker:  0
 requires:
+    perl:          5.006
     PPI:           0
     Test::More:    0
     Test::Output:  0
+resources:
+    repository:  git://github.com/briandfoy/module--extract--use.git
 no_index:
     directory:
         - t
@@ -22,3 +25,7 @@
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
+keywords:
+    - testing
+    - STDOUT
+    - STDERR

Modified: branches/upstream/libmodule-extract-use-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/Makefile.PL?rev=37933&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/Makefile.PL (original)
+++ branches/upstream/libmodule-extract-use-perl/current/Makefile.PL Wed Jun 10 14:14:11 2009
@@ -1,4 +1,3 @@
-# $Id: Makefile.PL,v 1.4 2004/07/04 17:04:17 comdog Exp $
 use ExtUtils::MakeMaker;
 
 require 5.006;
@@ -22,6 +21,22 @@
 		'lib/Use.pm'         => '$(INST_LIBDIR)/Use.pm',
 		},
 
+	(
+	$ExtUtils::MakeMaker::VERSION ge '6.48' ? 
+		(
+		MIN_PERL_VERSION => 5.006,
+
+		META_MERGE       => {
+			resources => {
+		  		repository => 'git://github.com/briandfoy/module--extract--use.git',
+				},
+			keywords => ['testing','STDOUT','STDERR'],
+	  		},
+	 	) 
+	 	: 
+	 	()
+	 ),
+
 	'MAN3PODS'     => {
 		'lib/Use.pm' => '$(INST_MAN3DIR)/Module::Extract::Use.$(MAN3EXT)',
 		},

Modified: branches/upstream/libmodule-extract-use-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/README?rev=37933&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/README (original)
+++ branches/upstream/libmodule-extract-use-perl/current/README Wed Jun 10 14:14:11 2009
@@ -1,5 +1,3 @@
-$Id: README,v 1.1 2004/09/08 00:25:41 comdog Exp $
-
 You can install this using in the usual Perl fashion
 
 	perl Makefile.PL
@@ -17,11 +15,10 @@
 
 	perldoc  lib/Use.pm
 	
-This module is also in CVS on SourceForge
+This module is Github
 
-	http://sourceforge.net/projects/brian-d-foy/
-
+	http://github.com/briandfoy/module--extract--use/tree/master
 
 Enjoy, 
 
-brian d foy, bdfoy at cpan.org
+brian d foy, bdfoy at cpan.org

Modified: branches/upstream/libmodule-extract-use-perl/current/lib/Use.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/lib/Use.pm?rev=37933&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/lib/Use.pm (original)
+++ branches/upstream/libmodule-extract-use-perl/current/lib/Use.pm Wed Jun 10 14:14:11 2009
@@ -1,4 +1,3 @@
-# $Id$
 package Module::Extract::Use;
 use strict;
 
@@ -8,7 +7,7 @@
 use subs qw();
 use vars qw($VERSION);
 
-$VERSION = '0.15';
+$VERSION = '0.16';
 
 =head1 NAME
 
@@ -142,7 +141,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2008, brian d foy, All Rights Reserved.
+Copyright (c) 2008-2009, brian d foy, All Rights Reserved.
 
 You may redistribute this under the same terms as Perl itself.
 

Modified: branches/upstream/libmodule-extract-use-perl/current/t/load.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/t/load.t?rev=37933&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/t/load.t (original)
+++ branches/upstream/libmodule-extract-use-perl/current/t/load.t Wed Jun 10 14:14:11 2009
@@ -1,4 +1,3 @@
-# $Id: load.t,v 1.2 2004/09/08 00:25:42 comdog Exp $
 BEGIN {
 	@classes = qw(Module::Extract::Use);
 	}

Modified: branches/upstream/libmodule-extract-use-perl/current/t/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/t/pod.t?rev=37933&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/t/pod.t (original)
+++ branches/upstream/libmodule-extract-use-perl/current/t/pod.t Wed Jun 10 14:14:11 2009
@@ -1,4 +1,3 @@
-# $Id$
 use Test::More;
 eval "use Test::Pod 1.00";
 plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;

Modified: branches/upstream/libmodule-extract-use-perl/current/t/pod_coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/t/pod_coverage.t?rev=37933&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/t/pod_coverage.t (original)
+++ branches/upstream/libmodule-extract-use-perl/current/t/pod_coverage.t Wed Jun 10 14:14:11 2009
@@ -1,6 +1,5 @@
-# $Id$
 use Test::More;
 eval "use Test::Pod::Coverage 1.00";
 plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;
 all_pod_coverage_ok();
-																						 
+																						 

Modified: branches/upstream/libmodule-extract-use-perl/current/t/test_manifest
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/t/test_manifest?rev=37933&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/t/test_manifest (original)
+++ branches/upstream/libmodule-extract-use-perl/current/t/test_manifest Wed Jun 10 14:14:11 2009
@@ -1,5 +1,4 @@
-# $Id$
 load.t
 pod.t
 pod_coverage.t
-get_modules.t
+get_modules.t




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