From 11aed99ced813bcc57b7d9b5434f8b1f9baaa85e Mon Sep 17 00:00:00 2001 From: Andrew Moore Date: Fri, 20 Jun 2008 13:02:04 -0500 Subject: [PATCH] Bug 2176: adding SMS::Send to list of dependencies SMS::Send is used by the new enhanced messaging stuff. It's a pure-perl module that provides a consistent interface to SMS sending gateways. There are alredy a handful of driver modules for gateways on CPAN, and adding one for a new gateway is possible. Signed-off-by: Joshua Ferraro --- Makefile.PL | 172 ++++++++++++++++++++++++++-------------------------- about.pl | 1 + 2 files changed, 87 insertions(+), 86 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 29dc0393bc..f7d457db3f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -524,92 +524,92 @@ my %test_suite_override_dirs = ( ); WriteMakefile( - NAME => 'koha', - #VERSION => strftime('2.9.%Y%m%d%H',gmtime), - VERSION_FROM => 'kohaversion.pl', - ABSTRACT => 'Award-winning integrated library system (ILS) and Web OPAC', - AUTHOR => 'Koha Developers ', - NO_META => 1, - PREREQ_PM => { -# awaiting package maintainer's use of $VERSION -#'Algorithm::CheckDigits' => 0.48, -#'Algorithm::CheckDigits::M43_001' => 0.48, -'Biblio::EndnoteStyle' => 0.05, -'CGI' => 3.15, -'CGI::Carp' => 1.29, -'CGI::Session' => '4.10', -'Class::Factory::Util' => 1.6, -'Class::Accessor' => 0.30, -'DBD::mysql' => 4.004, -'DBI' => 1.53, -'Data::ICal' => 0.13, -'Data::Dumper' => 2.121, -'Date::Calc' => 5.4, -'Date::ICal' => 1.72, -'Date::Manip' => 5.44, -'Digest::MD5' => 2.36, -'File::Temp' => 0.16, -'GD::Barcode::UPCE' => 1.1, -'Getopt::Long' => 2.35, -'Getopt::Std' => 1.05, -'HTML::Template::Pro' => 0.69, -'HTML::Scrubber' => 0.08, -'HTTP::Cookies' => 1.39, -'HTTP::Request::Common' => 1.26, -'Image::Magick' => 6.2, -'LWP::Simple' => 1.41, -'LWP::UserAgent' => 2.033, -'Lingua::Stem' => 0.82, -'List::Util' => 1.18, -'List::MoreUtils' => 0.21, -'Locale::Language' => 2.07, -'MARC::Charset' => 0.98, -'MARC::Crosswalk::DublinCore' => 0.02, -'MARC::File::XML' => 0.88, -'MARC::Record' => 2.00, -'MIME::Base64' => 3.07, -'MIME::QuotedPrint' => 3.07, -'Mail::Sendmail' => 0.79, -'Net::LDAP' => 0.33, -'Net::LDAP::Filter' => 0.14, -'Net::Z3950::ZOOM' => 1.16, -'PDF::API2' => 2.000, -'PDF::API2::Page' => 2.000, -'PDF::API2::Util' => 2.000, -'PDF::Reuse' => 0.33, -'PDF::Reuse::Barcode' => 0.05, -'POE' => 0.9999, -'POSIX' => 1.09, -'Schedule::At' => 1.06, -'Term::ANSIColor' => 1.10, -'Test' => 1.25, -'Test::Harness' => 2.56, -'Test::More' => 0.62, -'Text::CSV' => 0.01, -'Text::CSV_XS' => 0.32, -'Text::Iconv' => 1.7, -'Text::Wrap' => 2005.082401, -'Time::HiRes' => 1.86, -'Time::localtime' => 1.02, -'Unicode::Normalize' => 0.32, -'XML::Dumper' => 0.81, -'XML::LibXML' => 1.59, -'XML::LibXSLT' => 1.59, -'XML::SAX::ParserFactory' => 1.01, -'XML::Simple' => 2.14, -'XML::RSS' => 1.31, -'YAML::Syck' => 0.71, - }, - - # File tree mapping - PM => $file_map, - - # Man pages generated from POD - INSTALLMAN1DIR => File::Spec->catdir($target_directories->{'MAN_DIR'}, 'man1'), - INSTALLMAN3DIR => File::Spec->catdir($target_directories->{'MAN_DIR'}, 'man3'), - - PL_FILES => $pl_files, - + NAME => 'koha', + #VERSION => strftime('2.9.%Y%m%d%H',gmtime), + VERSION_FROM => 'kohaversion.pl', + ABSTRACT => 'Award-winning integrated library system (ILS) and Web OPAC', + AUTHOR => 'Koha Developers ', + NO_META => 1, + PREREQ_PM => { + # awaiting package maintainer's use of $VERSION + #'Algorithm::CheckDigits' => 0.48, + #'Algorithm::CheckDigits::M43_001' => 0.48, + 'Biblio::EndnoteStyle' => 0.05, + 'CGI' => 3.15, + 'CGI::Carp' => 1.29, + 'CGI::Session' => '4.10', + 'Class::Factory::Util' => 1.6, + 'Class::Accessor' => 0.30, + 'DBD::mysql' => 4.004, + 'DBI' => 1.53, + 'Data::ICal' => 0.13, + 'Data::Dumper' => 2.121, + 'Date::Calc' => 5.4, + 'Date::ICal' => 1.72, + 'Date::Manip' => 5.44, + 'Digest::MD5' => 2.36, + 'File::Temp' => 0.16, + 'GD::Barcode::UPCE' => 1.1, + 'Getopt::Long' => 2.35, + 'Getopt::Std' => 1.05, + 'HTML::Template::Pro' => 0.69, + 'HTML::Scrubber' => 0.08, + 'HTTP::Cookies' => 1.39, + 'HTTP::Request::Common' => 1.26, + 'Image::Magick' => 6.2, + 'LWP::Simple' => 1.41, + 'LWP::UserAgent' => 2.033, + 'Lingua::Stem' => 0.82, + 'List::Util' => 1.18, + 'List::MoreUtils' => 0.21, + 'Locale::Language' => 2.07, + 'MARC::Charset' => 0.98, + 'MARC::Crosswalk::DublinCore' => 0.02, + 'MARC::File::XML' => 0.88, + 'MARC::Record' => 2.00, + 'MIME::Base64' => 3.07, + 'MIME::QuotedPrint' => 3.07, + 'Mail::Sendmail' => 0.79, + 'Net::LDAP' => 0.33, + 'Net::LDAP::Filter' => 0.14, + 'Net::Z3950::ZOOM' => 1.16, + 'PDF::API2' => 2.000, + 'PDF::API2::Page' => 2.000, + 'PDF::API2::Util' => 2.000, + 'PDF::Reuse' => 0.33, + 'PDF::Reuse::Barcode' => 0.05, + 'POE' => 0.9999, + 'POSIX' => 1.09, + 'Schedule::At' => 1.06, + 'SMS::Send' => 0.05, + 'Term::ANSIColor' => 1.10, + 'Test' => 1.25, + 'Test::Harness' => 2.56, + 'Test::More' => 0.62, + 'Text::CSV' => 0.01, + 'Text::CSV_XS' => 0.32, + 'Text::Iconv' => 1.7, + 'Text::Wrap' => 2005.082401, + 'Time::HiRes' => 1.86, + 'Time::localtime' => 1.02, + 'Unicode::Normalize' => 0.32, + 'XML::Dumper' => 0.81, + 'XML::LibXML' => 1.59, + 'XML::LibXSLT' => 1.59, + 'XML::SAX::ParserFactory' => 1.01, + 'XML::Simple' => 2.14, + 'XML::RSS' => 1.31, + 'YAML::Syck' => 0.71, + }, + + # File tree mapping + PM => $file_map, + + # Man pages generated from POD + INSTALLMAN1DIR => File::Spec->catdir($target_directories->{'MAN_DIR'}, 'man1'), + INSTALLMAN3DIR => File::Spec->catdir($target_directories->{'MAN_DIR'}, 'man3'), + + PL_FILES => $pl_files, ); =head1 FUNCTIONS diff --git a/about.pl b/about.pl index 9834807db9..e414f6b1f9 100755 --- a/about.pl +++ b/about.pl @@ -111,6 +111,7 @@ PDF::Reuse::Barcode POE POSIX Schedule::At +SMS::Send Term::ANSIColor Test Test::Harness -- 2.20.1