From 681d08cd2275fa438532bc9355b0602f0c708862 Mon Sep 17 00:00:00 2001 From: David Hampton Date: Wed, 28 Jun 2006 04:21:45 +0000 Subject: [PATCH] Recent version of Finance::Quote no longer depend on Date::Manip, but they do now depend on Crypt::SSLeay. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14456 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 10 ++++++++++ packaging/gnucash-1.9.x.ebuild | 2 +- 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 | 2 +- 6 files changed, 15 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index c642934092..454d8bf32c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2006-06-28 David Hampton + + * packaging/gnucash-1.9.x.ebuild: + * src/quotes/gnc-fq-update.in: + * src/quotes/gnc-fq-check.in: + * src/quotes/gnc-fq-helper.in: + * src/quotes/gnc-fq-dump: Recent version of Finance::Quote no + longer depend on Date::Manip, but they do now depend on + Crypt::SSLeay. + 2006-06-27 David Hampton * src/report/standard-reports/portfolio.scm: diff --git a/packaging/gnucash-1.9.x.ebuild b/packaging/gnucash-1.9.x.ebuild index 70f86f2689..02d491a582 100644 --- a/packaging/gnucash-1.9.x.ebuild +++ b/packaging/gnucash-1.9.x.ebuild @@ -45,7 +45,7 @@ RDEPEND=">=dev-libs/glib-2.4.0 hbci? ( net-libs/aqbanking chipcard? ( sys-libs/libchipcard ) ) - quotes? ( dev-perl/DateManip + quotes? ( dev-perl/Crypt-SSLeay dev-perl/Finance-Quote dev-perl/HTML-TableExtract ) postgres? ( dev-db/postgresql ) diff --git a/src/quotes/gnc-fq-check.in b/src/quotes/gnc-fq-check.in index f64c58dea2..cdd1d1a815 100644 --- a/src/quotes/gnc-fq-check.in +++ b/src/quotes/gnc-fq-check.in @@ -41,7 +41,7 @@ use FileHandle; # non-zero - failure sub check_modules { - my @modules = qw(Date::Manip Finance::Quote LWP HTML::Parser HTML::TableExtract); + my @modules = qw(Finance::Quote LWP HTML::Parser HTML::TableExtract Crypt::SSLeay); my @missing; foreach my $mod (@modules) { diff --git a/src/quotes/gnc-fq-dump b/src/quotes/gnc-fq-dump index 38f892450c..c7037891b4 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(Date::Manip Finance::Quote LWP HTML::TableExtract); + my @modules = qw(Finance::Quote LWP 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 63e9e2f79f..9ff82cca7c 100644 --- a/src/quotes/gnc-fq-helper.in +++ b/src/quotes/gnc-fq-helper.in @@ -103,7 +103,7 @@ use FileHandle; # signature so this works OK. sub check_modules { - my @modules = qw(Date::Manip Finance::Quote LWP HTML::TableExtract); + my @modules = qw(Finance::Quote LWP 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 6e22a20522..37fc13df45 100644 --- a/src/quotes/gnc-fq-update.in +++ b/src/quotes/gnc-fq-update.in @@ -39,9 +39,9 @@ if ($( != 0) { } CPAN::Shell->install('LWP'); -CPAN::Shell->install('Date::Manip'); CPAN::Shell->install('HTML::Parser'); CPAN::Shell->install('HTML::TableExtract'); +CPAN::Shell->install('Crypt::SSLeay'); CPAN::Shell->install('Finance::Quote'); ## Local Variables: