~ubuntu-branches/ubuntu/saucy/gnucash/saucy-proposed

« back to all changes in this revision

Viewing changes to src/quotes/gnc-fq-check.in

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot, Dmitry Smirnov, Sébastien Villemot
  • Date: 2012-03-05 20:44:44 UTC
  • mfrom: (2.5.16 sid)
  • Revision ID: package-import@ubuntu.com-20120305204444-cvmgjgx36oxilhfq
Tags: 1:2.4.10-2
[ Dmitry Smirnov ]
* Removing obsolete lintian override
* Removing remnants of dh_make template to clean-up debian/rules
* Removing useless debian/gnucash-common.dirs
* Build-time generation of missing man pages
* Use dh-autoreconf to update toolchain
* Update to recommended debhelper compat level 9
* Fix short description of gnucash-common
* Introducing --as-needed to reduce overlinking
* debian/copyright: rewrite from scratch using machine-readable format 1.0

[ Sébastien Villemot ]
* Bump to Standards-Version 3.9.3, no changes needed
* Set myself as Maintainer. Add Dmitry Smirnov to Uploaders. (Closes: #639584)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
use English;
27
27
use FileHandle;
28
28
 
29
 
# Input: <none>
30
 
#
31
 
# Output (on standard output, one output form per input line):
32
 
#
33
 
# A list of quote sources supported by Finance::Quote, or the single
34
 
# term missing-lib if finance quote could not be executed.
35
 
#
36
 
# Exit status
37
 
#
38
 
# 0 - success
39
 
# non-zero - failure
 
29
=head1 NAME
 
30
 
 
31
gnc-fq-check  -  check for the presence of Finance::Quote
 
32
                 From gnc-fq-helper
 
33
 
 
34
=head1 SYNOPSIS
 
35
 
 
36
gnc-fq-check
 
37
 
 
38
=head1 DESCRIPTION
 
39
 
 
40
Input: <none>
 
41
 
 
42
Output (on standard output, one output form per input line):
 
43
 
 
44
A list of quote sources supported by Finance::Quote, or the single
 
45
term missing-lib if finance quote could not be executed.
 
46
 
 
47
Exit status
 
48
 
 
49
0 - success
 
50
non-zero - failure
 
51
 
 
52
=cut
40
53
 
41
54
sub check_modules {
42
55
  my @modules = qw(Finance::Quote LWP HTML::Parser HTML::TableExtract Crypt::SSLeay Date::Manip);