r19530 - in /trunk/libtext-wrapper-perl: Build.PL Changes MANIFEST META.yml Makefile.PL My_Build.pm README Wrapper.pm debian/ debian/changelog example/ lib/ t/ test.pl

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Tue May 6 14:54:23 UTC 2008


Author: dmn
Date: Tue May  6 14:54:20 2008
New Revision: 19530

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=19530
Log:
New upstream release

Added:
    trunk/libtext-wrapper-perl/Build.PL
      - copied unchanged from r19529, branches/upstream/libtext-wrapper-perl/current/Build.PL
    trunk/libtext-wrapper-perl/META.yml
      - copied unchanged from r19529, branches/upstream/libtext-wrapper-perl/current/META.yml
    trunk/libtext-wrapper-perl/My_Build.pm
      - copied unchanged from r19529, branches/upstream/libtext-wrapper-perl/current/My_Build.pm
    trunk/libtext-wrapper-perl/example/
      - copied from r19529, branches/upstream/libtext-wrapper-perl/current/example/
    trunk/libtext-wrapper-perl/lib/
      - copied from r19529, branches/upstream/libtext-wrapper-perl/current/lib/
    trunk/libtext-wrapper-perl/t/
      - copied from r19529, branches/upstream/libtext-wrapper-perl/current/t/
Removed:
    trunk/libtext-wrapper-perl/Wrapper.pm
    trunk/libtext-wrapper-perl/test.pl
Modified:
    trunk/libtext-wrapper-perl/Changes
    trunk/libtext-wrapper-perl/MANIFEST
    trunk/libtext-wrapper-perl/Makefile.PL
    trunk/libtext-wrapper-perl/README
    trunk/libtext-wrapper-perl/debian/   (props changed)
    trunk/libtext-wrapper-perl/debian/changelog

Modified: trunk/libtext-wrapper-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-wrapper-perl/Changes?rev=19530&op=diff
==============================================================================
--- trunk/libtext-wrapper-perl/Changes (original)
+++ trunk/libtext-wrapper-perl/Changes Tue May  6 14:54:20 2008
@@ -1,4 +1,10 @@
 Revision history for Perl extension Text::Wrapper.
+
+1.01   Mar 21 2007
+	- converted to Module::Build
+        - updated my email address
+        - added example/gettysburg.pl
+        - added POD tests & fixed POD error
 
 1.000  Oct 26 1998
         - updated my email address

Modified: trunk/libtext-wrapper-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-wrapper-perl/MANIFEST?rev=19530&op=diff
==============================================================================
--- trunk/libtext-wrapper-perl/MANIFEST (original)
+++ trunk/libtext-wrapper-perl/MANIFEST Tue May  6 14:54:20 2008
@@ -1,6 +1,13 @@
+Build.PL
 Changes				Revision history
+example/gettysburg.pl
+lib/Text/Wrapper.pm		The Text::Wrapper module
+Makefile.PL			MakeMaker wrapper for Module::Build
 MANIFEST			See MANIFEST
-Makefile.PL			MakeMaker Makefile
+META.yml
+My_Build.pm			Customize Module::Build
 README				About the Text::Wrapper module
-Wrapper.pm			The Text::Wrapper module
-test.pl				Testing... 1, 2, 3, Testing... 1, 2, 3
+t/00.load.t
+t/10.wrapper.t			Testing... 1, 2, 3, Testing... 1, 2, 3
+t/pod-coverage.t
+t/pod.t

Modified: trunk/libtext-wrapper-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-wrapper-perl/Makefile.PL?rev=19530&op=diff
==============================================================================
--- trunk/libtext-wrapper-perl/Makefile.PL (original)
+++ trunk/libtext-wrapper-perl/Makefile.PL Tue May  6 14:54:20 2008
@@ -1,13 +1,31 @@
-# $Id: Makefile.PL 0.1 1998/05/14 22:25:07 Madsen Exp $
-
-use ExtUtils::MakeMaker;
-# See lib/ExtUtils/MakeMaker.pm for details of how to influence
-# the contents of the Makefile that is written.
-WriteMakefile(
-    'NAME'	=> 'Text::Wrapper',
-    'VERSION_FROM' => 'Wrapper.pm', # finds $VERSION
-    'dist'	=> {COMPRESS => 'gzip -9f', SUFFIX => 'gz',
-# This next line is just for my own use, you should comment it out:
-                    PREOP => 'cjm_fixup $(DISTVNAME)' # Converts CRLF to LF
-                   }
-);
+# Note: this file was auto-generated by Module::Build::Compat version 0.03
+    
+    unless (eval "use Module::Build::Compat 0.02; 1" ) {
+      print "This module requires Module::Build to install itself.\n";
+      
+      require ExtUtils::MakeMaker;
+      my $yn = ExtUtils::MakeMaker::prompt
+	('  Install Module::Build now from CPAN?', 'y');
+      
+      unless ($yn =~ /^y/i) {
+	die " *** Cannot install without Module::Build.  Exiting ...\n";
+      }
+      
+      require Cwd;
+      require File::Spec;
+      require CPAN;
+      
+      # Save this 'cause CPAN will chdir all over the place.
+      my $cwd = Cwd::cwd();
+      
+      CPAN::Shell->install('Module::Build::Compat');
+      CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
+	or die "Couldn't install Module::Build, giving up.\n";
+      
+      chdir $cwd or die "Cannot chdir() back to $cwd: $!";
+    }
+    eval "use Module::Build::Compat 0.02; 1" or die $@;
+    use lib '.';
+    Module::Build::Compat->run_build_pl(args => \@ARGV);
+    require My_Build;
+    Module::Build::Compat->write_makefile(build_class => 'My_Build');

Modified: trunk/libtext-wrapper-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-wrapper-perl/README?rev=19530&op=diff
==============================================================================
--- trunk/libtext-wrapper-perl/README (original)
+++ trunk/libtext-wrapper-perl/README Tue May  6 14:54:20 2008
@@ -1,4 +1,4 @@
-Text::Wrapper 1.000
+Text::Wrapper 1.01
 Copyright 1998 Christopher J. Madsen
 
 DESCRIPTION
@@ -24,6 +24,9 @@
 
 RECENT CHANGES
 
+    Version 1.01 updates my email address and modernizes the build
+    system (to Module::Build).  There are no functional changes.
+
     Version 1.000 ends the beta stage and updates my email address.
 
     Version 0.008 corrects a bug that caused an infinite loop if a

Propchange: trunk/libtext-wrapper-perl/debian/
------------------------------------------------------------------------------
--- svn-bp:TrunkUrl (added)
+++ svn-bp:TrunkUrl Tue May  6 14:54:20 2008
@@ -1,0 +1,1 @@
+svn+ssh://svn.debian.org/svn/pkg-perl/trunk/libtext-wrapper-perl

Propchange: trunk/libtext-wrapper-perl/debian/
------------------------------------------------------------------------------
--- svn-bp:tagsUrl (added)
+++ svn-bp:tagsUrl Tue May  6 14:54:20 2008
@@ -1,0 +1,1 @@
+svn+ssh://svn.debian.org/svn/pkg-perl/tags/libtext-wrapper-perl

Propchange: trunk/libtext-wrapper-perl/debian/
------------------------------------------------------------------------------
--- svn-bp:upsCurrentUrl (added)
+++ svn-bp:upsCurrentUrl Tue May  6 14:54:20 2008
@@ -1,0 +1,1 @@
+svn+ssh://svn.debian.org/svn/pkg-perl/branches/upstream/libtext-wrapper-perl/current

Propchange: trunk/libtext-wrapper-perl/debian/
------------------------------------------------------------------------------
--- svn-bp:upsTagUrl (added)
+++ svn-bp:upsTagUrl Tue May  6 14:54:20 2008
@@ -1,0 +1,1 @@
+svn+ssh://svn.debian.org/svn/pkg-perl/branches/upstream/libtext-wrapper-perl

Modified: trunk/libtext-wrapper-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-wrapper-perl/debian/changelog?rev=19530&op=diff
==============================================================================
--- trunk/libtext-wrapper-perl/debian/changelog (original)
+++ trunk/libtext-wrapper-perl/debian/changelog Tue May  6 14:54:20 2008
@@ -1,4 +1,4 @@
-libtext-wrapper-perl (1.000-3) UNRELEASED; urgency=low
+libtext-wrapper-perl (1.01-1) UNRELEASED; urgency=low
 
   * Take over for the Debian Perl Group; Closes: #479671 -- RFA
 
@@ -13,7 +13,9 @@
     + stop installing redundant README
   * add debian/watch
 
- -- Damyan Ivanov <dmn at debian.org>  Tue, 06 May 2008 17:25:45 +0300
+  * New upstream release
+
+ -- Damyan Ivanov <dmn at debian.org>  Tue, 06 May 2008 17:43:40 +0300
 
 libtext-wrapper-perl (1.000-2) unstable; urgency=low
 




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