r55327 - in /branches/upstream/libtext-multimarkdown-perl/current: Changes MANIFEST META.yml Makefile.PL inc/Module/Install/Base.pm inc/Module/Install/Scripts.pm lib/Text/MultiMarkdown.pm t/03podspelling.t
jawnsy-guest at users.alioth.debian.org
jawnsy-guest at users.alioth.debian.org
Sat Apr 3 02:56:37 UTC 2010
Author: jawnsy-guest
Date: Sat Apr 3 02:56:29 2010
New Revision: 55327
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=55327
Log:
[svn-upgrade] Integrating new upstream version, libtext-multimarkdown-perl (1.000033)
Added:
branches/upstream/libtext-multimarkdown-perl/current/inc/Module/Install/Scripts.pm
Modified:
branches/upstream/libtext-multimarkdown-perl/current/Changes
branches/upstream/libtext-multimarkdown-perl/current/MANIFEST
branches/upstream/libtext-multimarkdown-perl/current/META.yml
branches/upstream/libtext-multimarkdown-perl/current/Makefile.PL
branches/upstream/libtext-multimarkdown-perl/current/inc/Module/Install/Base.pm
branches/upstream/libtext-multimarkdown-perl/current/lib/Text/MultiMarkdown.pm
branches/upstream/libtext-multimarkdown-perl/current/t/03podspelling.t
Modified: branches/upstream/libtext-multimarkdown-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-multimarkdown-perl/current/Changes?rev=55327&op=diff
==============================================================================
--- branches/upstream/libtext-multimarkdown-perl/current/Changes (original)
+++ branches/upstream/libtext-multimarkdown-perl/current/Changes Sat Apr 3 02:56:29 2010
@@ -1,4 +1,7 @@
This file documents the revision history for Perl extension Text::MultiMarkdown.
+
+1.0.33 2010-03-20T23:08:00
+ - Fix installation of MultiMarkdown.pl script.
1.0.32 2010-12-19T10:31:00
- Removed File::Slurp dependency (v. 9999.13 fails tests on Strawberry
Modified: branches/upstream/libtext-multimarkdown-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-multimarkdown-perl/current/MANIFEST?rev=55327&op=diff
==============================================================================
--- branches/upstream/libtext-multimarkdown-perl/current/MANIFEST (original)
+++ branches/upstream/libtext-multimarkdown-perl/current/MANIFEST Sat Apr 3 02:56:29 2010
@@ -5,6 +5,7 @@
inc/Module/Install/Fetch.pm
inc/Module/Install/Makefile.pm
inc/Module/Install/Metadata.pm
+inc/Module/Install/Scripts.pm
inc/Module/Install/Win32.pm
inc/Module/Install/WriteAll.pm
lib/Text/MultiMarkdown.pm
Modified: branches/upstream/libtext-multimarkdown-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-multimarkdown-perl/current/META.yml?rev=55327&op=diff
==============================================================================
--- branches/upstream/libtext-multimarkdown-perl/current/META.yml (original)
+++ branches/upstream/libtext-multimarkdown-perl/current/META.yml Sat Apr 3 02:56:29 2010
@@ -8,7 +8,6 @@
List::MoreUtils: 0
Test::Exception: 0
Test::More: 0.42
- script/MultiMarkdown.pl: 0
configure_requires:
ExtUtils::MakeMaker: 6.42
distribution_type: module
@@ -31,4 +30,4 @@
bugtracker: http://github.com/bobtfish/text-multimarkdown/issues
license: http://opensource.org/licenses/bsd-license.php
repository: http://github.com/bobtfish/text-multimarkdown/
-version: 1.000032
+version: 1.000033
Modified: branches/upstream/libtext-multimarkdown-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-multimarkdown-perl/current/Makefile.PL?rev=55327&op=diff
==============================================================================
--- branches/upstream/libtext-multimarkdown-perl/current/Makefile.PL (original)
+++ branches/upstream/libtext-multimarkdown-perl/current/Makefile.PL Sat Apr 3 02:56:29 2010
@@ -24,7 +24,6 @@
and die $!;
}
-# Scripts I install
-prompt_script('script/MultiMarkdown.pl');
+install_script 'script/MultiMarkdown.pl';
WriteAll;
Modified: branches/upstream/libtext-multimarkdown-perl/current/inc/Module/Install/Base.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-multimarkdown-perl/current/inc/Module/Install/Base.pm?rev=55327&op=diff
==============================================================================
--- branches/upstream/libtext-multimarkdown-perl/current/inc/Module/Install/Base.pm (original)
+++ branches/upstream/libtext-multimarkdown-perl/current/inc/Module/Install/Base.pm Sat Apr 3 02:56:29 2010
@@ -9,8 +9,8 @@
# Suspend handler for "redefined" warnings
BEGIN {
- my $w = $SIG{__WARN__};
- $SIG{__WARN__} = sub { $w };
+# my $w = $SIG{__WARN__};
+# $SIG{__WARN__} = sub { $w };
}
#line 42
@@ -70,7 +70,7 @@
# Restore warning handler
BEGIN {
- $SIG{__WARN__} = $SIG{__WARN__}->();
+# $SIG{__WARN__} = $SIG{__WARN__}->();
}
1;
Added: branches/upstream/libtext-multimarkdown-perl/current/inc/Module/Install/Scripts.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-multimarkdown-perl/current/inc/Module/Install/Scripts.pm?rev=55327&op=file
==============================================================================
--- branches/upstream/libtext-multimarkdown-perl/current/inc/Module/Install/Scripts.pm (added)
+++ branches/upstream/libtext-multimarkdown-perl/current/inc/Module/Install/Scripts.pm Sat Apr 3 02:56:29 2010
@@ -1,0 +1,29 @@
+#line 1
+package Module::Install::Scripts;
+
+use strict 'vars';
+use Module::Install::Base ();
+
+use vars qw{$VERSION @ISA $ISCORE};
+BEGIN {
+ $VERSION = '0.91';
+ @ISA = 'Module::Install::Base';
+ $ISCORE = 1;
+}
+
+sub install_script {
+ my $self = shift;
+ my $args = $self->makemaker_args;
+ my $exe = $args->{EXE_FILES} ||= [];
+ foreach ( @_ ) {
+ if ( -f $_ ) {
+ push @$exe, $_;
+ } elsif ( -d 'script' and -f "script/$_" ) {
+ push @$exe, "script/$_";
+ } else {
+ die("Cannot find script '$_'");
+ }
+ }
+}
+
+1;
Modified: branches/upstream/libtext-multimarkdown-perl/current/lib/Text/MultiMarkdown.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-multimarkdown-perl/current/lib/Text/MultiMarkdown.pm?rev=55327&op=diff
==============================================================================
--- branches/upstream/libtext-multimarkdown-perl/current/lib/Text/MultiMarkdown.pm (original)
+++ branches/upstream/libtext-multimarkdown-perl/current/lib/Text/MultiMarkdown.pm Sat Apr 3 02:56:29 2010
@@ -9,7 +9,7 @@
use Carp qw(croak);
use base qw(Text::Markdown);
-our $VERSION = '1.000032'; # 1.0.32
+our $VERSION = '1.000033'; # 1.0.33
$VERSION = eval $VERSION;
our @EXPORT_OK = qw(markdown);
Modified: branches/upstream/libtext-multimarkdown-perl/current/t/03podspelling.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-multimarkdown-perl/current/t/03podspelling.t?rev=55327&op=diff
==============================================================================
--- branches/upstream/libtext-multimarkdown-perl/current/t/03podspelling.t (original)
+++ branches/upstream/libtext-multimarkdown-perl/current/t/03podspelling.t Sat Apr 3 02:56:29 2010
@@ -50,4 +50,5 @@
quux
GitHub
Redistributions
+Gunnar
More information about the Pkg-perl-cvs-commits
mailing list