Dpkg::Changelog - base class to implement a changelog parser
| Use Case | Command | Description |
|---|---|---|
| Create parser | $c = Dpkg::Changelog->new() | New changelog object |
| Parse file | $c->load($filename) | Parse a changelog file |
| Get all entries | @entries = @{$c} | Array of parsed entries |
| Filter by version | $c->get_range({since => '2.0'}) | Entries after a version |
| Format as dpkg control | $c->format_range('dpkg', {from => '1.0'}) | Retrieve structured data |
| Output to string | $str = $c->output() or "$c" | String of the whole changelog |
| Save to file | $c->save($filename) | Write changelog back |
Dpkg::Changelog is a class representing a changelog file as an array of changelog entries (Dpkg::Changelog::Entry). By deriving this class and implementing its parse method, you add the ability to fill this object with changelog entries.
$c = Dpkg::Changelog->new(%options) β Creates a new changelog object.$c->set_options(%opts) β Change the value of some options. verbose (defaults to 1) defines whether parse errors are displayed as warnings by default. reportfile is a string to use instead of the name of the file parsed, in particular in error messages. range defines the range of entries that we want to parse, the parser will stop as soon as it has parsed enough data to satisfy $c->get_range($opts{range}).$count = $c->parse($fh, $description) β Read the filehandle and parse a changelog in it. The data in the object is reset before parsing new data.
Returns the number of changelog entries that have been parsed with success.
This method needs to be implemented by one of the specialized changelog format subclasses.
$count = $c->load($filename) β Parse $filename contents for a changelog.
Returns the number of changelog entries that have been parsed with success.
$c->reset_parse_errors() β Can be used to delete all information about errors occurred during previous parse runs.$c->parse_error($file, $line_nr, $error, [$line]) β Record a new parse error in $file at line $line_nr. The error message is specified with $error and a copy of the line can be recorded in $line.$c->get_parse_errors() β Returns all error messages from the last parse run. If called in scalar context returns a human readable string representation. If called in list context returns an array of arrays. Each of these arrays contains
reportfile configuration option was given, its value will be used instead.$c->set_unparsed_tail($tail) β Add a string representing unparsed lines after the changelog entries. Use undef as $tail to remove the unparsed lines currently set.$c->get_unparsed_tail() β Return a string representing the unparsed lines after the changelog entries. Returns undef if there's no such thing.@{$c} β Returns all the Dpkg::Changelog::Entry objects contained in this changelog in the order in which they have been parsed.$c->get_range($range) β Returns an array (if called in list context) or a reference to an array of Dpkg::Changelog::Entry objects which each represent one entry of the changelog. $range is a hash reference describing the range of entries to return. See section "π― RANGE SELECTION".$c->abort_early() β Returns true if enough data have been parsed to be able to return all entries selected by the range set at creation (or with set_options).$str = $c->output() β Returns a string representation of the changelog (it's a concatenation of the string representation of the individual changelog entries). Also works when stringifying: "$c".$c->output($fh) β Output the changelog to the given filehandle.$c->save($filename) β Save the changelog in the given file.$control = $c->format_range($format, $range) β Formats the changelog into Dpkg::Control::Changelog objects representing the entries selected by the optional range specifier (see "π― RANGE SELECTION" for details). In scalar context returns a Dpkg::Index object containing the selected entries, in list context returns an array of Dpkg::Control::Changelog objects.
With format dpkg the returned Dpkg::Control::Changelog object is coalesced from the entries in the changelog that are part of the range requested, with the fields described below, but considering that "selected entry" means the first entry of the selected range.
With format rfc822 each returned Dpkg::Control::Changelog objects represents one entry in the changelog that is part of the range requested, with the fields described below, but considering that "selected entry" means for each entry.
The different formats return undef if no entries are matched. The following fields are contained in the object(s) returned:
Sourcepackage name (selected entry)
Versionpackages' version (selected entry)
Distributiontarget distribution (selected entry)
Urgencyurgency (highest of all entries in range)
Maintainerperson that created the (selected) entry
Datedate of the (selected) entry
Timestampdate of the (selected) entry as a timestamp in seconds since the epoch
Closesbugs closed by the (selected) entry/entries, sorted by bug number
Changescontent of the (selected) entry/entries
A range selection is described by a hash reference where the allowed keys and values are described below.
The following options take a version number as value.
since β Causes changelog information from all versions strictly later than version to be used.until β Causes changelog information from all versions strictly earlier than version to be used.from β Similar to since but also includes the information for the specified version itself.to β Similar to until but also includes the information for the specified version itself.The following options don't take version numbers as values:
all β If set to a true value, all entries of the changelog are returned, this overrides all other options.count β Expects a signed integer as value. Returns value entries from the top of the changelog if set to a positive integer, and abs(value) entries from the tail if set to a negative integer.offset β Expects a signed integer as value. Changes the starting point for count, either counted from the top (positive integer) or from the tail (negative integer). offset has no effect if count wasn't given as well.Some examples for the above options. Imagine an example changelog with entries for the versions 1.2, 1.3, 2.0, 2.1, 2.2, 3.0 and 3.1.
| Range | Included entries |
|---|---|
since => '2.0' | 3.1, 3.0, 2.2 |
until => '2.0' | 1.3, 1.2 |
from => '2.0' | 3.1, 3.0, 2.2, 2.1, 2.0 |
to => '2.0' | 2.0, 1.3, 1.2 |
count => 2 | 3.1, 3.0 |
count => -2 | 1.3, 1.2 |
count => 3, offset => 2 | 2.2, 2.1, 2.0 |
count => 2, offset => -3 | 2.0, 1.3 |
count => -2, offset => 3 | 3.0, 2.2 |
count => -2, offset => -3 | 2.2, 2.1 |
Any combination of one option of since and from and one of until and to returns the intersection of the two results with only one of the options specified.
$c->dpkg(), $c->rfc822().$c->format_range(). π Deprecated methods: $c->dpkg(), $c->rfc822(). π New field Timestamp in output formats.1.21.1 2025-09-09 Dpkg::Changelog(3perl)
Generated by phpman v4.9.25-3-gdbaf087 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-07-06 23:13 @216.73.217.93
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Enhanced by LLM: deepseek-v4-pro / taotoken.net / www.chedong.com - original format