summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2013-03-21 21:40:34 -0400
committerJames E Keenan <jkeenan@cpan.org>2013-04-13 18:54:21 +0100
commit51b1bca10c16ef14af0a0e9cb91a2879f6826041 (patch)
tree27b2a11ed585135f3a5b5021d6800d4d155bca3b
parentf0cf37549cc42506257ecbe810815fc2f537192b (diff)
downloadperl-51b1bca10c16ef14af0a0e9cb91a2879f6826041.tar.gz
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
-rw-r--r--MANIFEST1
-rw-r--r--Porting/README.pod7
-rwxr-xr-xPorting/curliff.pl43
-rw-r--r--Porting/exec-bit.txt1
4 files changed, 0 insertions, 52 deletions
diff --git a/MANIFEST b/MANIFEST
index e65ccdc137..1fc10480da 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 bff2835bab..a714193a74 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 d7c7591d95..0000000000
--- 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 ce7bd91c05..e2f445b095 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