gnucash maint: Align perl module requirements with recent Finance::Quote versions

Geert Janssens gjanssens at code.gnucash.org
Tue Sep 16 06:03:50 EDT 2014


Updated	 via  https://github.com/Gnucash/gnucash/commit/5d180470 (commit)
	from  https://github.com/Gnucash/gnucash/commit/a406186b (commit)



commit 5d180470685f6ab8b8c058f9d9857a494843e70a
Author: Geert Janssens <janssens-geert at telenet.be>
Date:   Tue Sep 16 12:00:14 2014 +0200

    Align perl module requirements with recent Finance::Quote versions

diff --git a/src/quotes/gnc-fq-check.in b/src/quotes/gnc-fq-check.in
index 8060c5f..09b6fa0 100644
--- a/src/quotes/gnc-fq-check.in
+++ b/src/quotes/gnc-fq-check.in
@@ -52,7 +52,7 @@ non-zero - failure
 =cut
 
 sub check_modules {
-  my @modules = qw(Finance::Quote LWP HTML::Parser HTML::TableExtract Crypt::SSLeay Date::Manip);
+  my @modules = qw(Finance::Quote LWP HTTP::Request::Common HTML::TableExtract Crypt::SSLeay Date::Manip);
   my @missing;
 
   foreach my $mod (@modules) {
diff --git a/src/quotes/gnc-fq-dump b/src/quotes/gnc-fq-dump
index 0836dc0..68b192f 100755
--- a/src/quotes/gnc-fq-dump
+++ b/src/quotes/gnc-fq-dump
@@ -21,7 +21,7 @@
 use strict;
 
 sub check_modules {
-  my @modules = qw(Finance::Quote LWP HTML::Parser HTML::TableExtract Crypt::SSLeay Date::Manip);
+  my @modules = qw(Finance::Quote LWP HTTP::Request::Common HTML::TableExtract Crypt::SSLeay);
   my @missing;
 
   foreach my $mod (@modules) {
diff --git a/src/quotes/gnc-fq-helper.in b/src/quotes/gnc-fq-helper.in
index a0427f0..13dfb3b 100644
--- a/src/quotes/gnc-fq-helper.in
+++ b/src/quotes/gnc-fq-helper.in
@@ -122,7 +122,7 @@ non-zero - failure
 # signature so this works OK.
 
 sub check_modules {
-  my @modules = qw(Finance::Quote LWP HTML::TableExtract Crypt::SSLeay);
+  my @modules = qw(Finance::Quote LWP HTTP::Request::Common HTML::TableExtract Crypt::SSLeay);
   my @missing;
 
   foreach my $mod (@modules) {
diff --git a/src/quotes/gnc-fq-update.in b/src/quotes/gnc-fq-update.in
index bb1e8d7..c61bf89 100644
--- a/src/quotes/gnc-fq-update.in
+++ b/src/quotes/gnc-fq-update.in
@@ -36,12 +36,11 @@ if ($( != 0) {
   exit 0 if ($input ne "y");
 }
 
-CPAN::Shell->install('LWP');
 CPAN::Shell->install('Date::Manip');
-CPAN::Shell->install('Mozilla::CA');
-CPAN::Shell->install('HTML::Parser');
 CPAN::Shell->install('HTML::TableExtract');
+CPAN::Shell->install('HTTP::Request::Common');
 CPAN::Shell->install('Crypt::SSLeay');
+CPAN::Shell->install('LWP');
 CPAN::Shell->install('Finance::Quote');
 
 ## Local Variables:



Summary of changes:
 src/quotes/gnc-fq-check.in  | 2 +-
 src/quotes/gnc-fq-dump      | 2 +-
 src/quotes/gnc-fq-helper.in | 2 +-
 src/quotes/gnc-fq-update.in | 5 ++---
 4 files changed, 5 insertions(+), 6 deletions(-)



More information about the gnucash-changes mailing list