libfinance-quote-perl 1.54-1 source package in Ubuntu

Changelog

libfinance-quote-perl (1.54-1) unstable; urgency=medium

  * Import upstream version 1.54.
  * Update upstream copyright holders and packaging copyright years.
  * Declare compliance with Debian Policy 4.6.2.
  * Update (test) dependencies.
  * Refresh text-trim.patch.

 -- gregor herrmann <email address hidden>  Sun, 15 Jan 2023 02:19:53 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfinance-quote-perl_1.54-1.dsc 3.3 KiB c96c4d584c571887250fd965ec9521cebafa52d35dadd1378a029029a7c7f010
libfinance-quote-perl_1.54.orig.tar.gz 248.8 KiB cdfca19f5454eb57c57cf232beee7823ab8ae435e65c37bf537b3f59fae5ddf4
libfinance-quote-perl_1.54-1.debian.tar.xz 6.7 KiB c240fe4600b7e2e60d2d82c72cad8d5151648b6cb568db428f2f9b920ac52e8c

Available diffs

No changes file available.

Binary packages built by this source

libfinance-quote-perl: Perl module for retrieving stock quotes from a variety of sources

 Finance::Quote gets stock quotes from various internet sources all over the
 world. Quotes are obtained by constructing a quoter object and using the
 fetch method to gather data, which is returned as a two-dimensional hash (or
 a reference to such a hash, if called in a scalar context). For example:
 .
  $q = Finance::Quote->new;
  %info = $q->fetch("australia", "CML");
  print "The price of CML is ".$info{"CML", "price"};
 .
 The first part of the hash (eg, "CML") is referred to as the stock.
 The second part (in this case, "price") is referred to as the label.