GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Dpkg::Changelog::Parse(3perl) libdpkg-perl Dpkg::Changelog::Parse(3perl)

Dpkg::Changelog::Parse - generic changelog parser for dpkg-parsechangelog

This module provides a set of functions which reproduce all the features of dpkg-parsechangelog.

$fields = changelog_parse_debian(%opt)
This function is deprecated, use changelog_parse() instead, with the changelog format set to "debian".
$fields = changelog_parse_plugin(%opt)
This function is deprecated, use changelog_parse() instead.
$fields = changelog_parse(%opt)
This function will parse a changelog. In list context, it returns as many Dpkg::Control objects as the parser did create. In scalar context, it will return only the first one. If the parser did not return any data, it will return an empty list in list context or undef on scalar context. If the parser failed, it will die.

The changelog file that is parsed is debian/changelog by default but it can be overridden with $opt{file}. The default output format is "dpkg" but it can be overridden with $opt{format}.

The parsing itself is done by a parser module (searched in the standard perl library directories. That module is named according to the format that it is able to parse, with the name capitalized. By default it is either Dpkg::Changelog::Debian (from the "debian" format) or the format name looked up in the 40 last lines of the changelog itself (extracted with this perl regular expression "\schangelog-format:\s+([0-9a-z]+)\W"). But it can be overridden with $opt{changelogformat}.

If $opt{compression} is false, the file will be loaded without compression support, otherwise by default compression support is disabled if the file is the default.

All the other keys in %opt are forwarded to the parser module constructor.

New option: 'compression' in changelog_parse().

Deprecated functions: changelog_parse_debian(), changelog_parse_plugin().

Obsolete options: $forceplugin, $libdir.

New functions: changelog_parse_debian(), changelog_parse_plugin().

Mark the module as public.
2019-04-19 1.19.7

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.