summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-07-07 00:00:52 -0500
committerJesse Luehrs <doy@tozt.net>2009-07-07 00:00:52 -0500
commit4b10de662bdc9ef43a3728938b08bf571ee2ca53 (patch)
tree8fa08676448c877edb781cbe36598fcda5633abf
parent88fc4cd02aaf3ab74f813e3ce51541d94410da3b (diff)
downloadio-pty-easy-4b10de662bdc9ef43a3728938b08bf571ee2ca53.tar.gz
io-pty-easy-4b10de662bdc9ef43a3728938b08bf571ee2ca53.zip
switch to Dist::Zilla
-rw-r--r--Makefile.PL14
-rw-r--r--README41
-rw-r--r--dist.ini11
-rw-r--r--lib/IO/Pty/Easy.pm8
4 files changed, 11 insertions, 63 deletions
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 <doy at tozt dot net>
+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;