-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
contents of Text-EP3-1.10.tar.gz from CPAN
- Loading branch information
0 parents
commit 7ad70b8
Showing
17 changed files
with
2,459 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Revision history for Perl extension Text::EP3. | ||
|
||
1.1 Wed Mar 1, 2006 | ||
- repackaged using module-starter | ||
- fixed some warnings | ||
- added 'delimiter' synonyms for 'delimeter' | ||
- added sync-lines output option | ||
- fixed ep3_delimeter | ||
|
||
1.0 Sat Mar 7, 04:45:00 1998 | ||
- release version; Modified old code to be method based for a module. | ||
|
||
0.01 Wed Feb 18 15:38:50 1998 | ||
- original version; created by h2xs 1.18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Changes | ||
MANIFEST | ||
META.yml # Will be created by "make dist" | ||
Makefile.PL | ||
README | ||
lib/Text/EP3.pm | ||
t/00-load.t | ||
t/boilerplate.t | ||
t/pod-coverage.t | ||
t/pod.t | ||
t/tests1.t | ||
t/tests2.t | ||
t/ep3.tst | ||
t/tests2a.tst | ||
t/tests2b.tst | ||
t/tests2c.tst | ||
bin/ep3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# http://module-build.sourceforge.net/META-spec.html | ||
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# | ||
name: Text-EP3 | ||
version: 1.10 | ||
version_from: lib/Text/EP3.pm | ||
installdirs: site | ||
requires: | ||
AutoLoader: 0 | ||
Carp: 0 | ||
Cwd: 0 | ||
Env: 0 | ||
Exporter: 0 | ||
FileHandle: 0 | ||
Getopt::Long: 0 | ||
|
||
distribution_type: module | ||
generated_by: ExtUtils::MakeMaker version 6.17 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
use strict; | ||
use warnings; | ||
use ExtUtils::MakeMaker; | ||
|
||
WriteMakefile( | ||
NAME => 'Text::EP3', | ||
AUTHOR => 'Gary Spivey <[email protected]>', | ||
VERSION_FROM => 'lib/Text/EP3.pm', | ||
ABSTRACT => 'The Extensible Perl PreProcessor', | ||
PL_FILES => {}, | ||
EXE_FILES => ['bin/ep3'], | ||
PREREQ_PM => { | ||
# 'Test::More' => 0, | ||
'Exporter' => 0, | ||
'FileHandle' => 0, | ||
'Getopt::Long' => 0, | ||
'Cwd' => 0, | ||
'Carp' => 0, | ||
'AutoLoader' => 0, | ||
'Env' => 0, | ||
}, | ||
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, | ||
clean => { FILES => 'Text-EP3-*' }, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Text-EP3 | ||
|
||
INSTALLATION | ||
|
||
To install this module, run the following commands: | ||
|
||
perl Makefile.PL | ||
make | ||
make test | ||
make install | ||
|
||
|
||
SUPPORT AND DOCUMENTATION | ||
|
||
After installing, you can find documentation for this module with the perldoc command. | ||
|
||
perldoc Text::EP3 | ||
|
||
You can also look for information at: | ||
|
||
Search CPAN | ||
http://search.cpan.org/dist/Text-EP3 | ||
|
||
CPAN Request Tracker: | ||
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Text-EP3 | ||
|
||
AnnoCPAN, annotated CPAN documentation: | ||
http://annocpan.org/dist/Text-EP3 | ||
|
||
CPAN Ratings: | ||
http://cpanratings.perl.org/d/Text-EP3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/local/bin/perl -w | ||
require 5; | ||
use Text::EP3; | ||
my $file = Text::EP3->new; | ||
$file->ep3_execute; | ||
1; |
Oops, something went wrong.