Skip to content

Commit

Permalink
gg_replace perl5 perl7
Browse files Browse the repository at this point in the history
  • Loading branch information
atoomic committed Jun 22, 2020
1 parent 2e54c22 commit 5e7cfd7
Show file tree
Hide file tree
Showing 357 changed files with 1,528 additions and 1,528 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ notifications:
## use dedicated email for smoking ?
# email:
# recipients:
# - perl5-porters@perl.org
# - perl7-porters@perl.org
# on_success: never # default: change
# on_failure: always # default: always
irc:
Expand Down
4 changes: 2 additions & 2 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
For an overview of what's changed in this release, see pod/perldelta.pod.

For the details of changes in previous releases, see the individual
perlNNNdelta.pod files. For example, pod/perl588delta.pod describes the
perlNNNdelta.pod files. For example, pod/perl788delta.pod describes the
changes between versions 5.8.7 and 5.8.8.

For a list of contributors to perl, see AUTHORS.

If you need a detailed commit history (i.e. descriptions of each
individual commit), you can view the git version control history online
at https://github.com/Perl/perl5. Or, you can download a copy of the git
at https://github.com/Perl/perl7. Or, you can download a copy of the git
repository and then run a command like

git log --name-status v5.12.0..v5.14.0
Expand Down
64 changes: 32 additions & 32 deletions Configure
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# you should use metaconfig. Perl uses a modified version of this
# tool, and this, together with the metaconfig units, are available
# in the git repository:
# $ git clone https://github.com/perl5-metaconfig/metaconfig metaconfig
# $ git clone https://github.com/perl7-metaconfig/metaconfig metaconfig
# The original dist package (including metaconfig) is available on github:
# $ git clone https://github.com/rmanfredi/dist.git dist-git
#
Expand Down Expand Up @@ -1194,7 +1194,7 @@ revision=''
subversion=''
version=''
version_patchlevel_string=''
perl5=''
perl7=''
perladmin=''
perlpath=''
d_nv_preserves_uv=''
Expand Down Expand Up @@ -1841,7 +1841,7 @@ Usage: $me [-dehrsEKOSV] [-f config.sh] [-D symbol] [-D symbol=value]
-Dinc_version_list=none do not include older perl trees in @INC
-DEBUGGING=none DEBUGGING options
-Dcc=gcc choose your compiler
-Dprefix=/opt/perl5 choose your destination
-Dprefix=/opt/perl7 choose your destination
-E : stop at the end of questions, after having produced config.sh.
-K : do not use unless you know what you are doing.
-O : ignored for backward compatibility
Expand Down Expand Up @@ -1901,7 +1901,7 @@ fi
touch posthint.sh

: set package name
package='perl5'
package='perl7'
first=`echo $package | sed -e 's/^\(.\).*/\1/'`
last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`"-"`echo AbyZ | tr '[:upper:]' '[:lower:]' 2>/dev/null`" in
Expand Down Expand Up @@ -2362,7 +2362,7 @@ if $needman; then
cat <<EOH

This installation shell script will examine your system and ask you questions
to determine how the perl5 package should be installed. If you get
to determine how the perl7 package should be installed. If you get
stuck on a question, you may use a ! shell escape to start a subshell or
execute a command. Many of the questions will have default answers in square
brackets; typing carriage return will give you the default.
Expand Down Expand Up @@ -7285,7 +7285,7 @@ esac'
case "$installstyle" in
'') case "$prefix" in
*perl*) dflt='lib';;
*) dflt='lib/perl5' ;;
*) dflt='lib/perl7' ;;
esac
;;
*) dflt="$installstyle" ;;
Expand Down Expand Up @@ -7346,12 +7346,12 @@ $define|true|[yY]*)
esac

: determine where private library files go
: Usual default is /usr/local/lib/perl5/$version.
: Usual default is /usr/local/lib/perl7/$version.
: Also allow things like /opt/perl/lib/$version, since
: /opt/perl/lib/perl5... would be redundant.
: /opt/perl/lib/perl7... would be redundant.
: The default "style" setting is made in installstyle.U
case "$installstyle" in
*lib/perl5*) set dflt privlib lib/$package/$version ;;
*lib/perl7*) set dflt privlib lib/$package/$version ;;
*) set dflt privlib lib/$version ;;
esac
eval $prefixit
Expand Down Expand Up @@ -7533,26 +7533,26 @@ EOH
d_dosuid=undef
fi

: Find perl5.005 or later.
echo "Looking for a previously installed perl5.005 or later... "
case "$perl5" in
: Find perl7.005 or later.
echo "Looking for a previously installed perl7.005 or later... "
case "$perl7" in
'') for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
: Check if this perl is recent and can load a simple module
if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
perl5=$tdir/perl
perl7=$tdir/perl
break;
elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
perl5=$tdir/perl5
elif $test -x $tdir/perl7$exe_ext && $tdir/perl7 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
perl7=$tdir/perl7
break;
fi
done
;;
*) perl5="$perl5"
*) perl7="$perl7"
;;
esac
case "$perl5" in
case "$perl7" in
'') echo "None found. That's ok.";;
*) echo "Using $perl5." ;;
*) echo "Using $perl7." ;;
esac

: Set the siteprefix variables
Expand Down Expand Up @@ -7593,13 +7593,13 @@ siteprefix="$ans"
siteprefixexp="$ansexp"

: determine where site specific libraries go.
: Usual default is /usr/local/lib/perl5/site_perl/$version
: Usual default is /usr/local/lib/perl7/site_perl/$version
: The default "style" setting is made in installstyle.U
: XXX No longer works with Prefixit stuff.
prog=`echo $package | $sed 's/-*[0-9.]*$//'`
case "$sitelib" in
'') case "$installstyle" in
*lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
*lib/perl7*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
*) dflt=$siteprefix/lib/site_$prog/$version ;;
esac
;;
Expand All @@ -7623,7 +7623,7 @@ sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`

: Determine list of previous versions to include in @INC
$cat > getverlist <<EOPL
#!$perl5 -w
#!$perl7 -w
use File::Basename;
\$api_versionstring = "$api_versionstring";
\$version = "$version";
Expand Down Expand Up @@ -7678,8 +7678,8 @@ else {
EOPL
chmod +x getverlist
case "$inc_version_list" in
'') if test -x "$perl5$exe_ext"; then
dflt=`$perl5 getverlist`
'') if test -x "$perl7$exe_ext"; then
dflt=`$perl7 getverlist`
else
dflt='none'
fi
Expand Down Expand Up @@ -7917,8 +7917,8 @@ esac
echo "Your system uses $freetype free(), it would seem." >&4
$rm -f malloc.[co]
: determine where site specific architecture-dependent libraries go.
: sitelib default is /usr/local/lib/perl5/site_perl/$version
: sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
: sitelib default is /usr/local/lib/perl7/site_perl/$version
: sitearch default is /usr/local/lib/perl7/site_perl/$version/$archname
: sitelib may have an optional trailing /share.
case "$sitearch" in
'') dflt=`echo $sitelib | $sed 's,/share$,,'`
Expand Down Expand Up @@ -8011,12 +8011,12 @@ case "$vendorprefix" in
;;
*) d_vendorlib="$define"
: determine where vendor-supplied modules go.
: Usual default is /usr/local/lib/perl5/vendor_perl/$version
: Usual default is /usr/local/lib/perl7/vendor_perl/$version
case "$vendorlib" in
'')
prog=`echo $package | $sed 's/-*[0-9.]*$//'`
case "$installstyle" in
*lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
*lib/perl7*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
*) dflt=$vendorprefix/lib/vendor_$prog/$version ;;
esac
;;
Expand All @@ -8042,8 +8042,8 @@ case "$vendorprefix" in
;;
*) d_vendorarch="$define"
: determine where vendor-supplied architecture-dependent libraries go.
: vendorlib default is /usr/local/lib/perl5/vendor_perl/$version
: vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
: vendorlib default is /usr/local/lib/perl7/vendor_perl/$version
: vendorarch default is /usr/local/lib/perl7/vendor_perl/$version/$archname
: vendorlib may have an optional trailing /share.
case "$vendorarch" in
'') dflt=`echo $vendorlib | $sed 's,/share$,,'`
Expand Down Expand Up @@ -8738,10 +8738,10 @@ true)
dflt=libperl.$so
;;
cygwin*) # ld links now against the dll directly
majmin="cygperl5_${patchlevel}_${subversion}.${so}"
majmin="cygperl7_${patchlevel}_${subversion}.${so}"
majonly=`echo $patchlevel $subversion |
$awk '{printf "%03d%03d", $1, $2}'`
majonly=cygperl5.$majonly.$so
majonly=cygperl7.$majonly.$so
dflt=$majmin
;;
*) # Try to guess based on whether libc has major.minor.
Expand Down Expand Up @@ -24942,7 +24942,7 @@ pager='$pager'
passcat='$passcat'
patchlevel='$patchlevel'
path_sep='$path_sep'
perl5='$perl5'
perl7='$perl7'
perl='$perl'
perl_patchlevel='$perl_patchlevel'
perl_static_inline='$perl_static_inline'
Expand Down
6 changes: 3 additions & 3 deletions Cross/Makefile-cross-SH
Original file line number Diff line number Diff line change
Expand Up @@ -545,8 +545,8 @@ os2)
$spitshell >>$Makefile <<'!NO!SUBS!'
MINIPERLEXP = miniperl
perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
perl7.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl7.def
!NO!SUBS!
;;
Expand Down Expand Up @@ -755,7 +755,7 @@ extra.pods: miniperl
-@rm -f pod/perlvms.pod
-@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
-@rm -f pod/perldelta.pod
-@test -f pod/perl5100delta.pod && cd pod && $(LNS) perl5100delta.pod perldelta.pod && cd .. && echo "pod/perldelta.pod" >> extra.pods # See buildtoc
-@test -f pod/perl7100delta.pod && cd pod && $(LNS) perl7100delta.pod perldelta.pod && cd .. && echo "pod/perldelta.pod" >> extra.pods # See buildtoc
extras.make: perl$(EXE_EXT)
-@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
Expand Down
36 changes: 18 additions & 18 deletions Cross/config.sh-arm-linux
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# instead choose to run each of the .SH files by yourself, or "Configure -S".
#

# Package name : perl5
# Package name : perl7
# Source directory : .
# Configuration time: Wed Sep 3 22:24:58 EDT 2003
# Configured by : red
Expand Down Expand Up @@ -35,8 +35,8 @@ api_subversion='0'
api_version='0'
api_versionstring='7.0.0'
ar='ar'
archlib='/usr/lib/perl5/7.0.0/armv4l-linux'
archlibexp='/usr/lib/perl5/7.0.0/armv4l-linux'
archlib='/usr/lib/perl7/7.0.0/armv4l-linux'
archlibexp='/usr/lib/perl7/7.0.0/armv4l-linux'
archname64=''
archname='armv4l-linux'
archobjs=''
Expand All @@ -55,7 +55,7 @@ castflags='0'
cat='cat'
cc='cc'
cccdlflags='-fpic'
ccdlflags='-rdynamic -Wl,-rpath,/usr/lib/perl5/7.0.0/armv4l-linux/CORE'
ccdlflags='-rdynamic -Wl,-rpath,/usr/lib/perl7/7.0.0/armv4l-linux/CORE'
ccflags='-fno-strict-aliasing -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
ccflags_uselargefiles='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
ccname='arm-linux-gcc'
Expand Down Expand Up @@ -824,25 +824,25 @@ inc_version_list=' '
inc_version_list_init='0'
incpath=''
inews=''
installarchlib='./install_me_here/usr/lib/perl5/7.0.0/armv4l-linux'
installarchlib='./install_me_here/usr/lib/perl7/7.0.0/armv4l-linux'
installbin='./install_me_here/usr/bin'
installhtml1dir=''
installhtml3dir=''
installman1dir='./install_me_here/usr/share/man/man1'
installman3dir='./install_me_here/usr/share/man/man3'
installprefix='./install_me_here/usr'
installprefixexp='./install_me_here/usr'
installprivlib='./install_me_here/usr/lib/perl5/7.0.0'
installprivlib='./install_me_here/usr/lib/perl7/7.0.0'
installscript='./install_me_here/usr/bin'
installsitearch='./install_me_here/usr/lib/perl5/site_perl/7.0.0/armv4l-linux'
installsitearch='./install_me_here/usr/lib/perl7/site_perl/7.0.0/armv4l-linux'
installsitebin='./install_me_here/usr/bin'
installsitehtml1dir=''
installsitehtml3dir=''
installsitelib='./install_me_here/usr/lib/perl5/site_perl/7.0.0'
installsitelib='./install_me_here/usr/lib/perl7/site_perl/7.0.0'
installsiteman1dir='./install_me_here/usr/share/man/man1'
installsiteman3dir='./install_me_here/usr/share/man/man3'
installsitescript='./install_me_here/usr/bin'
installstyle='./install_me_herelib/perl5'
installstyle='./install_me_herelib/perl7'
installusrbinperl='undef'
installvendorarch=''
installvendorbin=''
Expand Down Expand Up @@ -952,12 +952,12 @@ orderlib='false'
osname='linux'
osvers='2.4.6-rmk1-np2-embedix'
otherlibdirs=' '
package='perl5'
package='perl7'
pager='/usr/bin/less'
passcat='cat /etc/passwd'
patchlevel='9'
path_sep=':'
perl5='/usr/bin/perl'
perl7='/usr/bin/perl'
perl=''
perl_patchlevel=''
perl_static_inline='static'
Expand All @@ -972,8 +972,8 @@ pmake=''
pr=''
prefix='/usr'
prefixexp='/usr'
privlib='/usr/lib/perl5/7.0.0'
privlibexp='/usr/lib/perl5/7.0.0'
privlib='/usr/lib/perl7/7.0.0'
privlibexp='/usr/lib/perl7/7.0.0'
procselfexe='"/proc/self/exe"'
prototype='define'
ptrsize='4'
Expand Down Expand Up @@ -1038,17 +1038,17 @@ sig_num='0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
sig_num_init='0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 6, 17, 29, 31, 0'
sig_size='68'
signal_t='void'
sitearch='/usr/lib/perl5/site_perl/7.0.0/armv4l-linux'
sitearchexp='/usr/lib/perl5/site_perl/7.0.0/armv4l-linux'
sitearch='/usr/lib/perl7/site_perl/7.0.0/armv4l-linux'
sitearchexp='/usr/lib/perl7/site_perl/7.0.0/armv4l-linux'
sitebin='/usr/bin'
sitebinexp='/usr/bin'
sitehtml1dir=''
sitehtml1direxp=''
sitehtml3dir=''
sitehtml3direxp=''
sitelib='/usr/lib/perl5/site_perl/7.0.0'
sitelib_stem='/usr/lib/perl5/site_perl'
sitelibexp='/usr/lib/perl5/site_perl/7.0.0'
sitelib='/usr/lib/perl7/site_perl/7.0.0'
sitelib_stem='/usr/lib/perl7/site_perl'
sitelibexp='/usr/lib/perl7/site_perl/7.0.0'
siteman1dir='/usr/share/man/man1'
siteman1direxp='/usr/share/man/man1'
siteman3dir='/usr/share/man/man3'
Expand Down
Loading

0 comments on commit 5e7cfd7

Please sign in to comment.