Skip to content

Commit

Permalink
contents of Text-EP3-1.10.tar.gz from CPAN
Browse files Browse the repository at this point in the history
  • Loading branch information
andyleiserson committed Feb 3, 2013
0 parents commit 7ad70b8
Show file tree
Hide file tree
Showing 17 changed files with 2,459 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Changes
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
17 changes: 17 additions & 0 deletions MANIFEST
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
17 changes: 17 additions & 0 deletions META.yml
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
24 changes: 24 additions & 0 deletions Makefile.PL
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-*' },
);
32 changes: 32 additions & 0 deletions README
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

6 changes: 6 additions & 0 deletions bin/ep3
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;
Loading

0 comments on commit 7ad70b8

Please sign in to comment.