summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas R <atoomic@cpan.org>2019-05-16 16:47:56 -0600
committerNicolas R <atoomic@cpan.org>2019-05-16 16:48:06 -0600
commit2b9c8be2c787ef71cd93339abeb95c64fdd07abc (patch)
treef409a57418051603cb028d71a1edf13dfc1e7cca
parentea03ac00d9f52448d3e7605fe477f03efff9739e (diff)
downloadperl-2b9c8be2c787ef71cd93339abeb95c64fdd07abc.tar.gz
Revert "Rename PPPort_xs.PL to RealPPPort_xs.PL"
This reverts commit 0f14f67985491207f4a0e3936307f4c565717fd6. need to apply after current freeze
-rw-r--r--MANIFEST2
-rwxr-xr-xMakefile.SH2
-rw-r--r--dist/Devel-PPPort/HACKERS4
-rw-r--r--dist/Devel-PPPort/Makefile.PL4
-rw-r--r--dist/Devel-PPPort/PPPort.xs2
-rw-r--r--dist/Devel-PPPort/PPPort_xs.PL (renamed from dist/Devel-PPPort/RealPPPort_xs.PL)2
6 files changed, 8 insertions, 8 deletions
diff --git a/MANIFEST b/MANIFEST
index bf1e48b843..07adfc57f1 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -3324,7 +3324,7 @@ dist/Devel-PPPort/parts/todo/5024000 Devel::PPPort todo file
dist/Devel-PPPort/PPPort.xs Devel::PPPort dummy PPPort.xs
dist/Devel-PPPort/ppport_h.PL Devel::PPPort ppport.h writer
dist/Devel-PPPort/PPPort_pm.PL Devel::PPPort PPPort.pm writer
-dist/Devel-PPPort/RealPPPort_xs.PL Devel::PPPort RealPPPort.xs writer
+dist/Devel-PPPort/PPPort_xs.PL Devel::PPPort RealPPPort.xs writer
dist/Devel-PPPort/soak Devel::PPPort Test Harness to run under various Perls
dist/Devel-PPPort/t/call.t Devel::PPPort test file
dist/Devel-PPPort/t/cop.t Devel::PPPort test file
diff --git a/Makefile.SH b/Makefile.SH
index 76af93ec8e..5777970638 100755
--- a/Makefile.SH
+++ b/Makefile.SH
@@ -1102,7 +1102,7 @@ catamount)
$spitshell >>$Makefile <<!GROK!THIS!
.PHONY: makeppport
makeppport: \$(MINIPERL_EXE) \$(CONFIGPM)
- -@for f in Makefile.PL PPPort_pm.PL RealPPPort_xs.PL ppport_h.PL; do \
+ -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \
(cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \
done
diff --git a/dist/Devel-PPPort/HACKERS b/dist/Devel-PPPort/HACKERS
index 1db7f34ec1..8cd57a95d8 100644
--- a/dist/Devel-PPPort/HACKERS
+++ b/dist/Devel-PPPort/HACKERS
@@ -160,7 +160,7 @@ hints, dependency information, XS code and tests.
The files are in a POD-like format that is parsed using the
functions in F<parts/ppptools.pl>.
-The scripts F<PPPort_pm.PL>, F<RealPPPort_xs.PL> and F<mktests.PL> all
+The scripts F<PPPort_pm.PL>, F<PPPort_xs.PL> and F<mktests.PL> all
use the information in F<parts/inc/> to generate the main module
F<PPPort.pm>, the XS code in F<RealPPPort.xs> and various test files
in F<t/>.
@@ -196,7 +196,7 @@ section.
The code required to add to PPPort.xs for testing the implementation.
This code goes into the C<=xshead>, C<=xsinit>, C<=xsmisc>, C<=xsboot>
and C<=xsubs> section. Have a look at the template at the bottom
-of F<RealPPPort_xs.PL> to see where the code ends up.
+of F<PPPort_xs.PL> to see where the code ends up.
=item *
diff --git a/dist/Devel-PPPort/Makefile.PL b/dist/Devel-PPPort/Makefile.PL
index 8915a4d73b..62ba014cf6 100644
--- a/dist/Devel-PPPort/Makefile.PL
+++ b/dist/Devel-PPPort/Makefile.PL
@@ -46,7 +46,7 @@ sub configure
my %PL_FILES = (
'ppport_h.PL' => 'ppport.h',
'PPPort_pm.PL' => 'PPPort.pm',
- 'RealPPPort_xs.PL' => 'RealPPPort.xs',
+ 'PPPort_xs.PL' => 'RealPPPort.xs',
);
my @moreopts;
@@ -127,7 +127,7 @@ regen_pm:
$(PERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) PPPort_pm.PL
regen_xs:
- $(PERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) RealPPPort_xs.PL
+ $(PERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) PPPort_xs.PL
regen_tests:
$(PERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) mktests.PL
diff --git a/dist/Devel-PPPort/PPPort.xs b/dist/Devel-PPPort/PPPort.xs
index 72d4cabd47..2586824ebb 100644
--- a/dist/Devel-PPPort/PPPort.xs
+++ b/dist/Devel-PPPort/PPPort.xs
@@ -1,3 +1,3 @@
This is just a dummy file to let Configure know that Devel::PPPort
-is an XS module. The real XS code is autogenerated from RealPPPort_xs.PL
+is an XS module. The real XS code is autogenerated from PPPort_xs.PL
when this module is built and will go to RealPPPort.xs.
diff --git a/dist/Devel-PPPort/RealPPPort_xs.PL b/dist/Devel-PPPort/PPPort_xs.PL
index e6ca841c1c..d00cffa81b 100644
--- a/dist/Devel-PPPort/RealPPPort_xs.PL
+++ b/dist/Devel-PPPort/PPPort_xs.PL
@@ -1,6 +1,6 @@
################################################################################
#
-# RealPPPort_xs.PL -- generate RealPPPort.xs
+# PPPort_xs.PL -- generate RealPPPort.xs
#
################################################################################
#