Author: particle
Date: Wed Dec 28 13:53:23 2005
New Revision: 10747
Added:
trunk/runtime/parrot/library/libpcre.pir
- copied, changed from r10744, trunk/runtime/parrot/library/libpcre.imc
trunk/runtime/parrot/library/pcre.pir
- copied, changed from r10744, trunk/runtime/parrot/library/pcre.imc
Removed:
trunk/runtime/parrot/library/libpcre.imc
trunk/runtime/parrot/library/pcre.imc
Modified:
trunk/MANIFEST
trunk/examples/library/pcre.pir
trunk/src/call_list.txt
trunk/t/examples/library.t
trunk/t/library/pcre.t
Log:
#37520: [TODO] rename library files from .imc to .pir
~converted prce and libpcre libraries
Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST (original)
+++ trunk/MANIFEST Wed Dec 28 13:53:23 2005
@@ -1500,7 +1500,7 @@ runtime/parrot/library/ncurses.imc
runtime/parrot/library/ncurses.pasm [library]
runtime/parrot/library/parrotlib.imc [runtime]
runtime/parrot/library/pcore.pir [library]
-runtime/parrot/library/pcre.imc [library]
+runtime/parrot/library/pcre.pir [library]
runtime/parrot/library/postgres.declarations [library]
runtime/parrot/library/postgres.imc [library]
runtime/parrot/library/postgres.pasm [library]
Modified: trunk/examples/library/pcre.pir
==============================================================================
--- trunk/examples/library/pcre.pir (original)
+++ trunk/examples/library/pcre.pir Wed Dec 28 13:53:23 2005
@@ -3,7 +3,7 @@
=head1 NAME
-examples/library/pcre.imc - Perl compatible regular expressions
+examples/library/pcre.pir - Perl compatible regular expressions
=head1 SYNOPSIS
@@ -22,7 +22,7 @@ E<lt>jerry dot gay at gmail dot com<gt>
=cut
-.include 'library/pcre.imc'
+.include 'library/pcre.pir'
.sub main :main
Copied: trunk/runtime/parrot/library/libpcre.pir (from r10744,
trunk/runtime/parrot/library/libpcre.imc)
==============================================================================
--- trunk/runtime/parrot/library/libpcre.imc (original)
+++ trunk/runtime/parrot/library/libpcre.pir Wed Dec 28 13:53:23 2005
@@ -3,11 +3,11 @@
=head1 TITEL
-libpcre.imc - NCI interface to Perl-Compatible Regular Expression library
+libpcre.pir - NCI interface to Perl-Compatible Regular Expression library
=head1 DESCRIPTION
-See 'library/pcre.imc' for details on the user interface.
+See 'library/pcre.pir' for details on the user interface.
=cut
@@ -165,7 +165,7 @@ all:
=head1 FILES
-pcre.imc, libpcre.imc
+pcre.pir, libpcre.pir
=head1 SEE ALSO
Copied: trunk/runtime/parrot/library/pcre.pir (from r10744,
trunk/runtime/parrot/library/pcre.imc)
==============================================================================
--- trunk/runtime/parrot/library/pcre.imc (original)
+++ trunk/runtime/parrot/library/pcre.pir Wed Dec 28 13:53:23 2005
@@ -3,11 +3,11 @@
=head1 TITLE
-pcre.imc - user interface to Perl-Compatible Regular Expression library
+pcre.pir - user interface to Perl-Compatible Regular Expression library
=head1 SYNOPSIS
- load_bytecode 'library/pcre.imc'
+ load_bytecode 'library/pcre.pir'
lib = pcre_init()
func = find_global 'PCRE', 'compile'
@@ -25,7 +25,7 @@ This is the user interface to PCRE. Use
compile regexes, match against strings, and return the results.
All functions are found in the 'PCRE' namespace.
-The NCI interface is contained in libpcre.imc.
+The NCI interface is contained in libpcre.pir.
=cut
@@ -68,7 +68,7 @@ LIB_CYGWIN:
LIB_LOADED:
store_global 'PCRE', 'lib', libpcre
- load_bytecode 'library/libpcre.imc'
+ load_bytecode 'library/libpcre.pir'
# pcre *pcre_compile(const char *pattern, int options,
# const char **errptr, int *erroffset,
@@ -181,7 +181,7 @@ Send bug reports to E<lt>[EMAIL PROTECTED]
=head1 FILES
-pcre.imc, libpcre.imc
+pcre.pir, libpcre.pir
=head1 SEE ALSO
Modified: trunk/src/call_list.txt
==============================================================================
--- trunk/src/call_list.txt (original)
+++ trunk/src/call_list.txt Wed Dec 28 13:53:23 2005
@@ -264,7 +264,7 @@ p ptit33i
i ptit33i
i ptiit33i
-# The following are used by library/pcre.imc
+# The following are used by library/pcre.pir
p tiB3P
p tip3P
i pPtiiipi
Modified: trunk/t/examples/library.t
==============================================================================
--- trunk/t/examples/library.t (original)
+++ trunk/t/examples/library.t Wed Dec 28 13:53:23 2005
@@ -57,7 +57,7 @@ my $PARROT = ".$PConfig{slash}$PConfig{t
is( $sum, "fb171bd1a17bf6cd08d73105ad738a35\t$sample_fn\n", $md5sum_fn );
}
-# Testing pcre.imc with a simple pattern, if we have PCRE
+# Testing pcre.pir with a simple pattern, if we have PCRE
my $cmd = ($^O =~ /MSWin32/) ? "pcregrep --version" : "pcre-config --version";
my $has_pcre = Parrot::Test::run_command($cmd, STDERR => '/dev/null') == 0;
SKIP:
Modified: trunk/t/library/pcre.t
==============================================================================
--- trunk/t/library/pcre.t (original)
+++ trunk/t/library/pcre.t Wed Dec 28 13:53:23 2005
@@ -11,7 +11,7 @@ use Parrot::Test;
=head1 NAME
-t/library/pcre.t - testing library/pcre.imc
+t/library/pcre.t - testing library/pcre.pir
=head1 SYNOPSIS
@@ -19,7 +19,7 @@ t/library/pcre.t - testing library/pcre.
=head1 DESCRIPTION
-This program tests whether the 'pcre.imc' library accesses
+This program tests whether the 'pcre.pir' library accesses
the installed PCRE library, and matches patterns successfully.
=cut
@@ -38,7 +38,7 @@ pir_output_is( <<'CODE', <<'OUT', 'soup
.sub main :main
- load_bytecode "library/pcre.imc"
+ load_bytecode "library/pcre.pir"
.local pmc func
.local pmc lib