From 4b10de662bdc9ef43a3728938b08bf571ee2ca53 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 7 Jul 2009 00:00:52 -0500 Subject: switch to Dist::Zilla --- Makefile.PL | 14 -------------- README | 41 ----------------------------------------- dist.ini | 11 +++++++++++ lib/IO/Pty/Easy.pm | 8 -------- 4 files changed, 11 insertions(+), 63 deletions(-) delete mode 100644 Makefile.PL delete mode 100644 README create mode 100644 dist.ini diff --git a/Makefile.PL b/Makefile.PL deleted file mode 100644 index 1cc695b..0000000 --- a/Makefile.PL +++ /dev/null @@ -1,14 +0,0 @@ -# Load the Module::Install bundled in ./inc/ -use inc::Module::Install; - -# Define metadata -name 'IO-Pty-Easy'; -all_from 'lib/IO/Pty/Easy.pm'; - -requires 'IO::Pty'; - -build_requires 'Test::More'; - -auto_install; -WriteAll; - diff --git a/README b/README deleted file mode 100644 index 334a3b1..0000000 --- a/README +++ /dev/null @@ -1,41 +0,0 @@ -IO-Pty-Easy 0.06 - -IO::Pty::Easy is a module that makes using IO::Pty much easier. It wraps all of the code required to create the PTY, spawn subprocesses in it, and read/write on it. This module provides the same basic functionality as Expect.pm, except at a lower level; just reading and writing to the subprocess is supported, without any of the pattern matching or extra functionality provided by Expect.pm. Its primary use is to allow for intercepting and modifying input and output for console apps which require tty access; for instance it is currently being used in Interhack, a filter program for NetHack. - -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 IO::Pty::Easy - -You can also look for information at: - - Search CPAN - http://search.cpan.org/dist/IO-Pty-Easy - - CPAN Request Tracker: - http://rt.cpan.org/NoAuth/Bugs.html?Dist=IO-Pty-Easy - - AnnoCPAN, annotated CPAN documentation: - http://annocpan.org/dist/IO-Pty-Easy - - CPAN Ratings: - http://cpanratings.perl.org/d/IO-Pty-Easy - -COPYRIGHT AND LICENSE - -Copyright (C) 2007-2009 Jesse Luehrs - -This program is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. - diff --git a/dist.ini b/dist.ini new file mode 100644 index 0000000..8444990 --- /dev/null +++ b/dist.ini @@ -0,0 +1,11 @@ +name = IO-Pty-Easy +version = 0.07 +author = Jesse Luehrs +license = Perl_5 +copyright_holder = Jesse Luehrs +abstract = Easy interface to IO::Pty + +[@Classic] + +[Prereq] +IO::Pty = 0 diff --git a/lib/IO/Pty/Easy.pm b/lib/IO/Pty/Easy.pm index 0061588..79d7f44 100644 --- a/lib/IO/Pty/Easy.pm +++ b/lib/IO/Pty/Easy.pm @@ -11,14 +11,6 @@ use POSIX (); IO::Pty::Easy - Easy interface to IO::Pty -=head1 VERSION - -Version 0.06 released 7/6/2009 - -=cut - -our $VERSION = '0.06'; - =head1 SYNOPSIS use IO::Pty::Easy; -- cgit v1.2.3