Alvis-Saa

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
name:         Alvis-Saa
version:      0.2
version_from: lib/Alvis/Saa.pm
installdirs:  site
requires:
    Data::Dumper:                  0
    Fcntl:                         0
    IO::Select:                    0
    IO::Socket:                    0
    Sys::Hostname:                 0

distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.17

Makefile.PL  view on Meta::CPAN

use 5.008004;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME              => 'Alvis::Saa',
    VERSION_FROM      => 'lib/Alvis/Saa.pm', # finds $VERSION
    PREREQ_PM         => {IO::Socket => 0,Data::Dumper => 0,Sys::Hostname => 0,IO::Select => 0,
                          Fcntl => 0}, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM  => 'lib/Alvis/Saa.pm', # retrieve abstract from module
       AUTHOR         => 'Antti Tuominen,<antti.tuominen@hiit.fi>, Kimmo Valtonen <kimmo.valtonen@hiit.fi>') : ()),

);

README  view on Meta::CPAN

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

This module requires these other modules and libraries:

	IO::Socket
	Data::Dumper (only if you uncomment debugging)
	Sys::Hostname
	IO::Select
        Fcntl

COPYRIGHT AND LICENCE

Put the correct copyright and licence information here.

Copyright (C) 2006 by Antti Tuominen, Kimmo Valtonen

lib/Alvis/Saa.pm  view on Meta::CPAN

package Alvis::Saa;

$Alvis::Saa::VERSION = '0.2';

use strict;

use Alvis::Tana;

# use Data::Dumper;
use Sys::Hostname;
use IO::Socket;
use IO::Select;
use Fcntl;

my $LOCALADDR_PREFIX = "/var/tmp/searchrpc_localsoc_";
my $debug = 0;

######################################################################
#

lib/Alvis/Tana.pm  view on Meta::CPAN

package Alvis::Tana;

$Alvis::Tana::VERSION = '0.1';

# use Data::Dumper;

use strict;

my %ERROR;
my $debug = 0;

######################################################################
#
#  Public methods
#



( run in 0.291 second using v1.01-cache-2.11-cpan-4d50c553e7e )