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

Changelog

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

  * Drop text-trim.patch, libstring-util-perl is packaged now.
  * Replace test and runtime dependency on libtext-trim-perl
    with libstring-util-perl.

 -- gregor herrmann <email address hidden>  Sun, 05 Feb 2023 14:24:34 +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
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfinance-quote-perl_1.54-2.dsc 3.3 KiB 44c507d169eff82115e577f2be56857d0964dfc0719ef7795247cf71fe2d8631
libfinance-quote-perl_1.54.orig.tar.gz 248.8 KiB cdfca19f5454eb57c57cf232beee7823ab8ae435e65c37bf537b3f59fae5ddf4
libfinance-quote-perl_1.54-2.debian.tar.xz 6.3 KiB caf7c60cfa45059d75afa8f4ef56229c3284a2f49c5022eadb4b5ac3d6faf6c9

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.