r45600 - in /branches/upstream/libtest-compile-perl/current: Changes META.yml README README.mkdn inc/Module/Install/ReadmeMarkdownFromPod.pm inc/Module/Install/Repository.pm lib/Test/Compile.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Mon Oct 12 00:52:07 UTC 2009


Author: jawnsy-guest
Date: Mon Oct 12 00:52:02 2009
New Revision: 45600

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=45600
Log:
[svn-upgrade] Integrating new upstream version, libtest-compile-perl (0.10)

Modified:
    branches/upstream/libtest-compile-perl/current/Changes
    branches/upstream/libtest-compile-perl/current/META.yml
    branches/upstream/libtest-compile-perl/current/README
    branches/upstream/libtest-compile-perl/current/README.mkdn
    branches/upstream/libtest-compile-perl/current/inc/Module/Install/ReadmeMarkdownFromPod.pm
    branches/upstream/libtest-compile-perl/current/inc/Module/Install/Repository.pm
    branches/upstream/libtest-compile-perl/current/lib/Test/Compile.pm

Modified: branches/upstream/libtest-compile-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-compile-perl/current/Changes?rev=45600&op=diff
==============================================================================
--- branches/upstream/libtest-compile-perl/current/Changes (original)
+++ branches/upstream/libtest-compile-perl/current/Changes Mon Oct 12 00:52:02 2009
@@ -1,4 +1,7 @@
 Revision history for Perl extension Test-Compile
+
+0.10  Thu 2009.10.08 22:29:11 CEST (Marcel Gruenauer <marcel at cpan.org>)
+    - re-release with fixed inc::Module::Install::ReadmeMarkdownFromPod
 
 0.09  Wed 2009.10.07 00:57:14 CEST (Marcel Gruenauer <marcel at cpan.org>)
      - Always report name of .pl files (thanks xsawyerx).

Modified: branches/upstream/libtest-compile-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-compile-perl/current/META.yml?rev=45600&op=diff
==============================================================================
--- branches/upstream/libtest-compile-perl/current/META.yml (original)
+++ branches/upstream/libtest-compile-perl/current/META.yml Mon Oct 12 00:52:02 2009
@@ -28,4 +28,4 @@
   homepage: http://search.cpan.org/dist/Test-Compile/
   license: http://dev.perl.org/licenses/
   repository: git://github.com/hanekomu/test-compile.git
-version: 0.09
+version: 0.10

Modified: branches/upstream/libtest-compile-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-compile-perl/current/README?rev=45600&op=diff
==============================================================================
--- branches/upstream/libtest-compile-perl/current/README (original)
+++ branches/upstream/libtest-compile-perl/current/README Mon Oct 12 00:52:02 2009
@@ -79,7 +79,7 @@
         correctly. You need to give the path to the script relative to this
         distribution's base directory. So if you put your scripts in a
         'top-level' directory called script the argument would be
-        script/filename
+        "script/filename".
 
         When it fails, "pl_file_ok()" will show any compilation errors as
         diagnostics.

Modified: branches/upstream/libtest-compile-perl/current/README.mkdn
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-compile-perl/current/README.mkdn?rev=45600&op=diff
==============================================================================
--- branches/upstream/libtest-compile-perl/current/README.mkdn (original)
+++ branches/upstream/libtest-compile-perl/current/README.mkdn Mon Oct 12 00:52:02 2009
@@ -74,22 +74,22 @@
 diagnostics.
 
 The optional second argument `TESTNAME` is the name of the test. If it is
-omitted, `pm_file_ok()` chooses a default test name "Compile test for
-FILENAME".
+omitted, `pm_file_ok()` chooses a default test name `Compile test for
+FILENAME`.
 
 - `pl_file_ok(FILENAME[, TESTNAME ])`
 
 `pl_file_ok()` will okay the test if the Perl script compiles correctly. You
 need to give the path to the script relative to this distribution's base
 directory. So if you put your scripts in a 'top-level' directory called script
-the argument would be script/filename
+the argument would be `script/filename`.
 
 When it fails, `pl_file_ok()` will show any compilation errors as
 diagnostics.
 
 The optional second argument `TESTNAME` is the name of the test. If it is
-omitted, `pl_file_ok()` chooses a default test name "Compile test for
-FILENAME".
+omitted, `pl_file_ok()` chooses a default test name `Compile test for
+FILENAME`.
 
 - `all_pm_files_ok([@files/@directories])`
 

Modified: branches/upstream/libtest-compile-perl/current/inc/Module/Install/ReadmeMarkdownFromPod.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-compile-perl/current/inc/Module/Install/ReadmeMarkdownFromPod.pm?rev=45600&op=diff
==============================================================================
--- branches/upstream/libtest-compile-perl/current/inc/Module/Install/ReadmeMarkdownFromPod.pm (original)
+++ branches/upstream/libtest-compile-perl/current/inc/Module/Install/ReadmeMarkdownFromPod.pm Mon Oct 12 00:52:02 2009
@@ -4,7 +4,6 @@
 use 5.006;
 use strict;
 use warnings;
-use Pod::Markdown;
 
 our $VERSION = '0.02';
 
@@ -14,6 +13,10 @@
     my ($self, $file, $clean) = @_;
     return unless $Module::Install::AUTHOR;
     die "syntax: readme_markdown_from $file, [$clean]\n" unless $file;
+
+    # require, not use because otherwise Makefile.PL will complain if
+    # non-authors don't have Pod::Markdown, which would be bad.
+    require Pod::Markdown;
 
     my $parser = Pod::Markdown->new;
     $parser->parse_from_file($file);
@@ -43,4 +46,4 @@
 
 __END__
 
-#line 146
+#line 151

Modified: branches/upstream/libtest-compile-perl/current/inc/Module/Install/Repository.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-compile-perl/current/inc/Module/Install/Repository.pm?rev=45600&op=diff
==============================================================================
--- branches/upstream/libtest-compile-perl/current/inc/Module/Install/Repository.pm (original)
+++ branches/upstream/libtest-compile-perl/current/inc/Module/Install/Repository.pm Mon Oct 12 00:52:02 2009
@@ -4,7 +4,7 @@
 use strict;
 use 5.005;
 use vars qw($VERSION);
-$VERSION = '0.05';
+$VERSION = '0.06';
 
 use base qw(Module::Install::Base);
 

Modified: branches/upstream/libtest-compile-perl/current/lib/Test/Compile.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-compile-perl/current/lib/Test/Compile.pm?rev=45600&op=diff
==============================================================================
--- branches/upstream/libtest-compile-perl/current/lib/Test/Compile.pm (original)
+++ branches/upstream/libtest-compile-perl/current/lib/Test/Compile.pm Mon Oct 12 00:52:02 2009
@@ -5,7 +5,7 @@
 use Test::Builder;
 use File::Spec;
 use UNIVERSAL::require;
-our $VERSION = '0.09';
+our $VERSION = '0.10';
 my $Test = Test::Builder->new;
 
 sub import {
@@ -253,22 +253,22 @@
 diagnostics.
 
 The optional second argument C<TESTNAME> is the name of the test. If it is
-omitted, C<pm_file_ok()> chooses a default test name "Compile test for
-FILENAME".
+omitted, C<pm_file_ok()> chooses a default test name C<Compile test for
+FILENAME>.
 
 =item C<pl_file_ok(FILENAME[, TESTNAME ])>
 
 C<pl_file_ok()> will okay the test if the Perl script compiles correctly. You
 need to give the path to the script relative to this distribution's base
 directory. So if you put your scripts in a 'top-level' directory called script
-the argument would be script/filename
+the argument would be C<script/filename>.
 
 When it fails, C<pl_file_ok()> will show any compilation errors as
 diagnostics.
 
 The optional second argument C<TESTNAME> is the name of the test. If it is
-omitted, C<pl_file_ok()> chooses a default test name "Compile test for
-FILENAME".
+omitted, C<pl_file_ok()> chooses a default test name C<Compile test for
+FILENAME>.
 
 =item C<all_pm_files_ok([@files/@directories])>
 




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