From a299ea2feed40fd3c29a7612a87475aadd28ae5c Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Thu, 3 Oct 2013 10:34:31 +1300 Subject: [PATCH 1/1] Simple Build.PL script, allows us to do perl Build.PL ./Build build ./Build test Signed-off-by: Chris Cormack --- Build.PL | 6 ++++++ MANIFEST | 24 ++++++++++++++++++++++++ MYMETA.json | 24 ++++++++++++++++++++++++ MYMETA.yml | 15 +++++++++++++++ 4 files changed, 69 insertions(+) create mode 100644 Build.PL create mode 100644 MANIFEST create mode 100644 MYMETA.json create mode 100644 MYMETA.yml diff --git a/Build.PL b/Build.PL new file mode 100644 index 0000000..27fde65 --- /dev/null +++ b/Build.PL @@ -0,0 +1,6 @@ +use Module::Build; +Module::Build->new( + dist_abstract => 'Main module for NCIP support', + module_name => 'NCIP', + license => 'gpl', +)->create_build_script; diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..2db6a82 --- /dev/null +++ b/MANIFEST @@ -0,0 +1,24 @@ +bin/start_server.pl +Build.PL +COPYING +lib/NCIP.pm +lib/NCIP/Configuration.pm +lib/NCIP/Configuration/Service.pm +lib/NCIP/Handler.pm +lib/NCIP/Handler/LookupItem.pm +lib/NCIP/Item.pm +lib/NCIP/User.pm +lib/NCIPResponder.pm +lib/NCIPServer.pm +LICENSE +MANIFEST This list of files +README +t/config_sample/NCIP.xml +t/NCIP.t +t/NCIP_Configuration.t +t/NCIP_Handler.t +t/NCIP_Item.t +t/NCIP_User.t +t/NCIPServer.t +t/sample_data/LookupItem.xml +t/sample_data/LookupItemWithExampleItemIdentifierType.xml diff --git a/MYMETA.json b/MYMETA.json new file mode 100644 index 0000000..13bfbea --- /dev/null +++ b/MYMETA.json @@ -0,0 +1,24 @@ +{ + "abstract" : "Main module for NCIP support", + "author" : [ + "unknown" + ], + "dynamic_config" : 0, + "generated_by" : "Module::Build version 0.4, CPAN::Meta::Converter version 2.120921", + "license" : [ + "open_source" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "NCIP", + "prereqs" : {}, + "release_status" : "stable", + "resources" : { + "license" : [ + "http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt" + ] + }, + "version" : "0.01" +} diff --git a/MYMETA.yml b/MYMETA.yml new file mode 100644 index 0000000..19a5f39 --- /dev/null +++ b/MYMETA.yml @@ -0,0 +1,15 @@ +--- +abstract: 'Main module for NCIP support' +author: + - unknown +build_requires: {} +dynamic_config: 0 +generated_by: 'Module::Build version 0.4, CPAN::Meta::Converter version 2.120921' +license: open_source +meta-spec: + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: 1.4 +name: NCIP +resources: + license: http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt +version: 0.01 -- 2.43.2