From 4891a89147aa46f955a5cfad6b4f8fd6c4968bf7 Mon Sep 17 00:00:00 2001 From: mike Date: Tue, 11 Oct 2005 11:07:24 +0000 Subject: [PATCH] Module changes from ZOOM to Net::Z3950::ZOOM. This will allow us to put it in CPAN. --- Changes | 5 ++--- MANIFEST | 4 ++-- Makefile.PL | 6 +++--- README | 4 ++-- ZOOM.xs | 2 +- 5 files changed, 10 insertions(+), 11 deletions(-) diff --git a/Changes b/Changes index e236945..97fe0c2 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,5 @@ -Revision history for Perl extension ZOOM. +Revision history for Perl extension Net::Z3950::ZOOM. 0.01 Fri Oct 7 16:14:20 2005 - original version; created by h2xs 1.23 with options - --name=ZOOM --compat-version=5.8.0 --omit-constant --skip-exporter --skip-ppport --autogen-xsubs yaz/zoom.h -lyaz -lxml2 - + --name=Net::Z3950::ZOOM --compat-version=5.8.0 --omit-constant --skip-exporter --skip-ppport --autogen-xsubs yaz/zoom.h -lyaz -lxml2 diff --git a/MANIFEST b/MANIFEST index 67ebd78..9a74938 100644 --- a/MANIFEST +++ b/MANIFEST @@ -4,6 +4,6 @@ MANIFEST README typemap ZOOM.xs -t/ZOOM.t -lib/ZOOM.pm +t/Net-Z3950-ZOOM.t +lib/Net/Z3950/ZOOM.pm MANIFEST.SKIP diff --git a/Makefile.PL b/Makefile.PL index f6b066f..ee2fa19 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,11 +3,11 @@ use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( - NAME => 'ZOOM', - VERSION_FROM => 'lib/ZOOM.pm', # finds $VERSION + NAME => 'Net::Z3950::ZOOM', + VERSION_FROM => 'lib/Net/Z3950/ZOOM.pm', # finds $VERSION PREREQ_PM => {}, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 - (ABSTRACT_FROM => 'lib/ZOOM.pm', # retrieve abstract from module + (ABSTRACT_FROM => 'lib/Net/Z3950/ZOOM.pm', # retrieve abstract from module AUTHOR => 'Mike Taylor ') : ()), LIBS => ['-lyaz -lxml2 '], # e.g., '-lm' DEFINE => '', # e.g., '-DHAVE_SOMETHING' diff --git a/README b/README index a392fb2..032c265 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -ZOOM version 0.01 -================= +Net-Z3950-ZOOM version 0.01 +=========================== The README is used to introduce the module and provide instructions on how to install the module, any machine dependencies it may have (for diff --git a/ZOOM.xs b/ZOOM.xs index 4fbf9a4..521e168 100644 --- a/ZOOM.xs +++ b/ZOOM.xs @@ -5,7 +5,7 @@ #include -MODULE = ZOOM PACKAGE = ZOOM +MODULE = Net::Z3950::ZOOM PACKAGE = Net::Z3950::ZOOM PROTOTYPES: ENABLE -- 1.7.10.4