In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/51b1bca10c16ef14af0a0e9cb91a2879f6826041?hp=f0cf37549cc42506257ecbe810815fc2f537192b>

- Log -----------------------------------------------------------------
commit 51b1bca10c16ef14af0a0e9cb91a2879f6826041
Author: James E Keenan <[email protected]>
Date:   Thu Mar 21 21:40:34 2013 -0400

    Porting/curliff.pl no longer needed; delete it.
    
    Documentation patch submitted by Brad Gilbert++ provoked discussion 
concerning
    whether this program is still needed.  Consensus was that it is not.
    
    For: RT #117185
-----------------------------------------------------------------------

Summary of changes:
 MANIFEST             |    1 -
 Porting/README.pod   |    7 -------
 Porting/curliff.pl   |   43 -------------------------------------------
 Porting/exec-bit.txt |    1 -
 4 files changed, 0 insertions(+), 52 deletions(-)
 delete mode 100755 Porting/curliff.pl

diff --git a/MANIFEST b/MANIFEST
index e65ccdc..1fc1048 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -4861,7 +4861,6 @@ Porting/corecpan.pl               Reports outdated 
dual-lived modules
 Porting/corelist-diff          Tool to produce corelist diffs
 Porting/corelist-perldelta.pl  Generates data perldelta from Module::CoreList
 Porting/corelist.pl            Generates data for Module::CoreList
-Porting/curliff.pl             Curliff or liff your curliffable files.
 Porting/epigraphs.pod          the release epigraphs used over the years
 Porting/exec-bit.txt           List of files that get +x in release tarball
 Porting/exercise_makedef.pl    Brute force testing for makedef.pl
diff --git a/Porting/README.pod b/Porting/README.pod
index bff2835..a714193 100644
--- a/Porting/README.pod
+++ b/Porting/README.pod
@@ -124,13 +124,6 @@ Generates a list of the module changes for the Perl you 
are currently
 building.  Also generates a diff between the corelist sections of two
 F<perldelta*> files.
 
-=head2 F<curliff.pl>
-
-Convert certain files in the Perl distribution that need to be in CR-LF format
-to CR-LF, or back to LF format (with the -r option).  The CR-LF format is NOT
-to be used for checking in files to the Perforce repository, but it IS to be
-used when making Perl snapshots or releases.
-
 =head2 F<epigraphs.pod>
 
 List of Perl release epigraphs.
diff --git a/Porting/curliff.pl b/Porting/curliff.pl
deleted file mode 100755
index d7c7591..0000000
--- a/Porting/curliff.pl
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/perl -ws
-
-# curliff.pl - convert certain files in the Perl distribution that
-# need to be in CR-LF format to CR-LF, or back to LF format (with the
-# -r option).  The CR-LF format is NOT to be used for checking in
-# files to the Perforce repository, but it IS to be used when making
-# Perl snapshots or releases.
-
-use strict;
-
-use vars qw($r);
-
-# This list is also in makerel.
-my @FILES = qw(
-              djgpp/configure.bat
-              README.ce
-              README.dos
-              README.symbian
-              README.win32
-              symbian/config.pl
-              symbian/makesis.pl
-              symbian/README
-              symbian/xsbuild.pl
-              win32/Makefile
-              win32/makefile.mk
-              win32/Makefile.ce
-              win32/ce-helpers/compile-all.bat
-              win32/ce-helpers/compile.bat
-              win32/ce-helpers/registry.bat
-              );
-
-{
-    local($^I, @ARGV) = ('.orig', @FILES);
-    while (<>) {
-       if ($r) {
-           s/\015\012/\012/;           # Curliffs to liffs.
-       } else {
-           s/\015?\012/\015\012/;      # Curliffs and liffs to curliffs.
-       }
-        print;
-        close ARGV if eof;              # Reset $.
-    }
-}
diff --git a/Porting/exec-bit.txt b/Porting/exec-bit.txt
index ce7bd91..e2f445b 100644
--- a/Porting/exec-bit.txt
+++ b/Porting/exec-bit.txt
@@ -45,7 +45,6 @@ Porting/config_h.pl
 Porting/corecpan.pl
 Porting/corelist-perldelta.pl
 Porting/corelist.pl
-Porting/curliff.pl
 Porting/expand-macro.pl
 Porting/findrfuncs
 Porting/makerel

--
Perl5 Master Repository

Reply via email to