summaryrefslogtreecommitdiff
path: root/scripts/Dpkg/Cdata.pm
AgeCommit message (Collapse)AuthorFilesLines
2009-09-16Rename Dpkg::Cdata into Dpkg::ControlRaphaël Hertzog1-125/+0
Update all scripts and modules to use the new module names.
2009-06-26libdpkg-perl: Import Exporter with ‘use base’Guillem Jover1-2/+1
We don't need to set @ISA now.
2009-05-10Fix POD errors detected by podchecker in perl modulesGuillem Jover1-0/+2
Add missing blank lines after =cut, close =over section with =back and add a FIXME comment to an empty section.
2008-12-09Dpkg::ErrorHandling: Export public functions by defaultGuillem Jover1-1/+1
The remaining non exported functions and variables need to, either disappear, move to some better place, be renamed, or for variables to get hidden through a getter/setter.
2008-06-30Switch to use UTF-8 copyright symbol and add missing onesGuillem Jover1-1/+1
Some 'Copyright <year>' entries didn't have a copyright symbol. Add it and switch the rest from '(C)' to '©', but we don't do this on program output which for now should remain pure ascii.
2008-01-23Dpkg::Cdata: Import capit from Dpkg::FieldsGuillem Jover1-1/+1
Closes: #462172
2008-01-01Dpkg::Cdata, Dpkg::Control, Dpkg::Fields::Object: Add new modulesRaphael Hertzog1-0/+124
* scripts/Dpkg/Cdata.pm: This module provides a function to parse a block of fields/values like those in debian/control, in changes files or in dsc files. * scripts/Dpkg/Fields.pm: Dpkg::Fields::Object implements a tied hash which handles proper capitalization of fields and which can be dumped back. * scripts/Dpkg/Control.pm: This module parses debian/control and provide access to the tied hash for each block (source one and binary ones).