r46486 - in /branches/upstream/libtext-markdown-perl/current: Changes META.yml Makefile.PL lib/Text/Markdown.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Oct 28 15:45:55 UTC 2009


Author: jawnsy-guest
Date: Wed Oct 28 15:44:32 2009
New Revision: 46486

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=46486
Log:
[svn-upgrade] Integrating new upstream version, libtext-markdown-perl (1.000029)

Modified:
    branches/upstream/libtext-markdown-perl/current/Changes
    branches/upstream/libtext-markdown-perl/current/META.yml
    branches/upstream/libtext-markdown-perl/current/Makefile.PL
    branches/upstream/libtext-markdown-perl/current/lib/Text/Markdown.pm

Modified: branches/upstream/libtext-markdown-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-markdown-perl/current/Changes?rev=46486&op=diff
==============================================================================
--- branches/upstream/libtext-markdown-perl/current/Changes (original)
+++ branches/upstream/libtext-markdown-perl/current/Changes Wed Oct 28 15:44:32 2009
@@ -1,4 +1,9 @@
 This file documents the revision history for Perl extension Text::Markdown.
+
+1.0.29 2009-10-28T15:19:26
+        - Note Test::Differences is needed for tests to run (RT#50918)
+        - Change build_requires to test_requires in Makefile.PL where
+          appropriate.
 
 1.0.28 2009-10-27T14:28:12
         - Fix MANIFEST.skip to avoid extraneous crap in the distribution.

Modified: branches/upstream/libtext-markdown-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-markdown-perl/current/META.yml?rev=46486&op=diff
==============================================================================
--- branches/upstream/libtext-markdown-perl/current/META.yml (original)
+++ branches/upstream/libtext-markdown-perl/current/META.yml Wed Oct 28 15:44:32 2009
@@ -7,6 +7,7 @@
   File::Slurp: 9999.08
   FindBin: 0
   List::MoreUtils: 0
+  Test::Differences: 0
   Test::Exception: 0
   Test::More: 0.42
 configure_requires:
@@ -31,4 +32,4 @@
   bugtracker: http://github.com/bobtfish/text-markdown/issues
   license: http://opensource.org/licenses/bsd-license.php
   repository: http://github.com/bobtfish/text-markdown/
-version: 1.000028
+version: 1.000029

Modified: branches/upstream/libtext-markdown-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-markdown-perl/current/Makefile.PL?rev=46486&op=diff
==============================================================================
--- branches/upstream/libtext-markdown-perl/current/Makefile.PL (original)
+++ branches/upstream/libtext-markdown-perl/current/Makefile.PL Wed Oct 28 15:44:32 2009
@@ -15,11 +15,12 @@
 requires        'Digest::MD5'     => undef;
 requires        'Text::Balanced'  => undef;
 requires        'Encode'          => undef;
-build_requires  'Test::More'      => '0.42';
-build_requires  'Test::Exception' => undef;
-build_requires  'List::MoreUtils' => undef;
-build_requires  'File::Slurp'     => '9999.08';
-build_requires  'FindBin'         => undef;
+test_requires  'Test::More'      => '0.42';
+test_requires  'Test::Exception' => undef;
+test_requires  'List::MoreUtils' => undef;
+test_requires  'File::Slurp'     => '9999.08';
+test_requires 'Test::Differences' => undef;
+test_requires  'FindBin'         => undef;
 
 if ($Module::Install::AUTHOR) {
     system("pod2text lib/Text/Markdown.pm > README")

Modified: branches/upstream/libtext-markdown-perl/current/lib/Text/Markdown.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-markdown-perl/current/lib/Text/Markdown.pm?rev=46486&op=diff
==============================================================================
--- branches/upstream/libtext-markdown-perl/current/lib/Text/Markdown.pm (original)
+++ branches/upstream/libtext-markdown-perl/current/lib/Text/Markdown.pm Wed Oct 28 15:44:32 2009
@@ -9,7 +9,7 @@
 use Carp        qw(croak);
 use base        'Exporter';
 
-our $VERSION   = '1.000028'; # 1.0.28
+our $VERSION   = '1.000029'; # 1.0.29
 $VERSION = eval $VERSION;
 our @EXPORT_OK = qw(markdown);
 




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