Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dpkg::source::package(3) [debian man page]

Dpkg::Source::Package(3)					   libdpkg-perl 					  Dpkg::Source::Package(3)

NAME
Dpkg::Source::Package - manipulate Debian source packages DESCRIPTION
This module provides an object that can manipulate Debian source packages. While it supports both the extraction and the creation of source packages, the only API that is officially supported is the one that supports the extraction of the source package. FUNCTIONS
$p = Dpkg::Source::Package->new(filename => $dscfile, options => {}) Creates a new object corresponding to the source package described by the file $dscfile. The options hash supports the following options: skip_debianization If set to 1, do not apply Debian changes on the extracted source package. skip_patches If set to 1, do not apply Debian-specific patches. This options is specific for source packages using format "2.0" and "3.0 (quilt)". require_valid_signature If set to 1, the check_signature() method will be stricter and will error out if the signature can't be verified. copy_orig_tarballs If set to 1, the extraction will copy the upstream tarballs next the target directory. This is useful if you want to be able to rebuild the source package after its extraction. $p->get_filename() Returns the filename of the DSC file. $p->get_files() Returns the list of files referenced by the source package. The filenames usually do not have any path information. $p->check_checksums() Verify the checksums embedded in the DSC file. It requires the presence of the other files constituting the source package. If any inconsistency is discovered, it immediately errors out. $bool = $p->is_signed() Returns 1 if the DSC files contains an embedded OpenPGP signature. Otherwise returns 0. $p->check_signature() Implement the same OpenPGP signature check that dpkg-source does. In case of problems, it prints a warning or errors out. If the object has been created with the "require_valid_signature" option, then any problem will result in a fatal error. $p->extract($targetdir) Extracts the source package in the target directory $targetdir. Beware that if $targetdir already exists, it will be erased. AUTHOR
Raphael Hertzog, <hertzog@debian.org> 1.16.15 2014-06-05 Dpkg::Source::Package(3)

Check Out this Related Man Page

Config::Model::models::Debian::Dpkg::Source(3pm)	User Contributed Perl Documentation	  Config::Model::models::Debian::Dpkg::Source(3pm)

NAME
Config::Model::models::Debian::Dpkg::Source - Configuration class Debian::Dpkg::Source VERSION
version 2.021 DESCRIPTION
Configuration classes used by Config::Model Model of files found under debian/source directory. See dpkg-source for details. Elements format - source package format Specifies the format of the source package. A missing format implies a '1.0' source format.Mandatory. Type enum. choice: '1.0', '2.0', '3.0 (native)', '3.0 (quilt)', '3.0 (custom)', '3.0 (git)', '3.0 (bzr)'. Here are some explanations on the possible values: '1.0' A source package in this format consists either of a .orig.tar.gz associated to a .diff.gz or a single .tar.gz (in that case the package is said to be native). '2.0' was the first specification of a new-generation source package format. This format is not recommended for wide-spread usage, the format "3.0 (quilt)" replaces it. '3.0 (bzr)' This format is experimental. It generates a single tarball containing the bzr repository. '3.0 (custom)' This format is particular. It doesn't represent a real source package format but can be used to create source packages with arbitrary files. '3.0 (git)' This format is experimental. A source package in this format consists of a single bundle of a git repository .git to hold the source of a package. There may also be a .git shallow file listing revisions for a shallow git clone. '3.0 (native)' extension of the native package format as defined in the 1.0 format. '3.0 (quilt)' A source package in this format contains at least an original tarball (.orig.tar.ext where ext can be gz, bz2, lzma and xz) and a debian tarball (.debian.tar.ext). It can also contain additional original tarballs (.orig-component.tar.ext). options Source options as described in dpkg-sourceOptional. Type node. SEE ALSO
o cme o Config::Model::models::Debian::Dpkg::Source::Options AUTHOR
Dominique Dumont COPYRIGHT
2010,2011 Dominique Dumont LICENSE
LGPL2 perl v5.14.2 2012-11-09 Config::Model::models::Debian::Dpkg::Source(3pm)
Man Page