r317@athlon: dpavlin | 2005-12-19 20:56:26 +0100
authorDobrica Pavlinusic <dpavlin@rot13.org>
Mon, 19 Dec 2005 19:55:21 +0000 (19:55 +0000)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Mon, 19 Dec 2005 19:55:21 +0000 (19:55 +0000)
 some fixes and cleanup, moved module versions to Makefile.PL

git-svn-id: svn+ssh://mjesec/home/dpavlin/svn/webpac2/trunk@298 07558da8-63fa-0310-ba24-9fe276d99e06

Makefile.PL
lib/WebPAC/Input/ISIS.pm
lib/WebPAC/Input/MARC.pm

index 573d96c..81a97c0 100644 (file)
@@ -26,6 +26,8 @@ WriteMakefile(
        'URI::Escape' => 0,
        'LWP' => 0,
        'File::Path' => 0,
+       'Biblio::Isis' => 0.13,
+       'MARC::Fast' => 0.02,
     },
     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
     clean               => { FILES => 'WebPAC-* pod2html Makefile tags' },
index af062d2..f102648 100644 (file)
@@ -38,7 +38,7 @@ Autoconfigure this module to use C<Biblio::Isis> or C<OpenIsis>.
 sub init {
        my $self = shift;
 
-       eval "use Biblio::Isis 0.13;";
+       eval "use Biblio::Isis;";
        unless ($@) { 
                $self->{have_biblio_isis} = 1
        } else {
index 79358fa..80eca25 100644 (file)
@@ -5,7 +5,6 @@ use strict;
 
 use blib;
 
-use WebPAC::Common;
 use MARC::Fast;
 
 =head1 NAME
@@ -14,11 +13,11 @@ WebPAC::Input::MARC - support for MARC database files
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =cut
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 
 =head1 SYNOPSIS