Skip to content

Commit 0f14f67

Browse files
committed
Rename PPPort_xs.PL to RealPPPort_xs.PL
Fixes Devel-PPPort GH #21 To avoid confusion rename the template for RealPPPort.xs file as RealPPPort_xs.PL so it's now clear what file it generates.
1 parent 87e54f0 commit 0f14f67

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

MANIFEST

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3324,7 +3324,7 @@ dist/Devel-PPPort/parts/todo/5024000 Devel::PPPort todo file
33243324
dist/Devel-PPPort/PPPort.xs Devel::PPPort dummy PPPort.xs
33253325
dist/Devel-PPPort/ppport_h.PL Devel::PPPort ppport.h writer
33263326
dist/Devel-PPPort/PPPort_pm.PL Devel::PPPort PPPort.pm writer
3327-
dist/Devel-PPPort/PPPort_xs.PL Devel::PPPort RealPPPort.xs writer
3327+
dist/Devel-PPPort/RealPPPort_xs.PL Devel::PPPort RealPPPort.xs writer
33283328
dist/Devel-PPPort/soak Devel::PPPort Test Harness to run under various Perls
33293329
dist/Devel-PPPort/t/call.t Devel::PPPort test file
33303330
dist/Devel-PPPort/t/cop.t Devel::PPPort test file

Makefile.SH

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,7 @@ catamount)
11021102
$spitshell >>$Makefile <<!GROK!THIS!
11031103
.PHONY: makeppport
11041104
makeppport: \$(MINIPERL_EXE) \$(CONFIGPM)
1105-
-@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \
1105+
-@for f in Makefile.PL PPPort_pm.PL RealPPPort_xs.PL ppport_h.PL; do \
11061106
(cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \
11071107
done
11081108

dist/Devel-PPPort/HACKERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ hints, dependency information, XS code and tests.
160160
The files are in a POD-like format that is parsed using the
161161
functions in F<parts/ppptools.pl>.
162162

163-
The scripts F<PPPort_pm.PL>, F<PPPort_xs.PL> and F<mktests.PL> all
163+
The scripts F<PPPort_pm.PL>, F<RealPPPort_xs.PL> and F<mktests.PL> all
164164
use the information in F<parts/inc/> to generate the main module
165165
F<PPPort.pm>, the XS code in F<RealPPPort.xs> and various test files
166166
in F<t/>.
@@ -196,7 +196,7 @@ section.
196196
The code required to add to PPPort.xs for testing the implementation.
197197
This code goes into the C<=xshead>, C<=xsinit>, C<=xsmisc>, C<=xsboot>
198198
and C<=xsubs> section. Have a look at the template at the bottom
199-
of F<PPPort_xs.PL> to see where the code ends up.
199+
of F<RealPPPort_xs.PL> to see where the code ends up.
200200

201201
=item *
202202

dist/Devel-PPPort/Makefile.PL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ sub configure
4646
my %PL_FILES = (
4747
'ppport_h.PL' => 'ppport.h',
4848
'PPPort_pm.PL' => 'PPPort.pm',
49-
'PPPort_xs.PL' => 'RealPPPort.xs',
49+
'RealPPPort_xs.PL' => 'RealPPPort.xs',
5050
);
5151
my @moreopts;
5252

@@ -127,7 +127,7 @@ regen_pm:
127127
$(PERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) PPPort_pm.PL
128128
129129
regen_xs:
130-
$(PERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) PPPort_xs.PL
130+
$(PERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) RealPPPort_xs.PL
131131
132132
regen_tests:
133133
$(PERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) mktests.PL

dist/Devel-PPPort/PPPort.xs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
This is just a dummy file to let Configure know that Devel::PPPort
2-
is an XS module. The real XS code is autogenerated from PPPort_xs.PL
2+
is an XS module. The real XS code is autogenerated from RealPPPort_xs.PL
33
when this module is built and will go to RealPPPort.xs.

dist/Devel-PPPort/PPPort_xs.PL renamed to dist/Devel-PPPort/RealPPPort_xs.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
################################################################################
22
#
3-
# PPPort_xs.PL -- generate RealPPPort.xs
3+
# RealPPPort_xs.PL -- generate RealPPPort.xs
44
#
55
################################################################################
66
#

0 commit comments

Comments
 (0)