~ubuntu-branches/debian/sid/libconfig-model-dpkg-perl/sid

« back to all changes in this revision

Viewing changes to lib/Config/Model/Backend/Dpkg/Control.pm

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont
  • Date: 2015-05-08 10:24:03 UTC
  • mfrom: (1.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20150508102403-5a61zoujj1kqd7vw
Tags: 2.063
* Copyright scanner:
  * to cope with owner containing 'f00' (Closes: #783932)
  * handle ranges like 2010-12 or 2002-3 (Closes: #783928)
* Dpkg::Patch: fix handling of Subject body expressed as
  free form text below header.
* Updated list of supported arch in C::M::Dpkg::Dependency
  (Closes: #782995)
* control: added build-dep on libyaml-tiny-perl

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    # load dpkgctrl file
38
38
    my $c = $self -> parse_dpkg_file ($args{io_handle}, $args{check}, 1 ) ;
39
39
 
40
 
    # hack to fix Debian #735000: ask for infos for all packages not in cache in one go. Thus
41
 
    # the async code in Dependency is less likely to break since the cache is already up-to-date
42
 
    # when dependencies are checked one by one
 
40
    # fix Debian #735000: ask for infos for all packages not in cache in one go.
43
41
    $self->fill_package_cache ($c);
44
42
 
45
43
    my $root = $args{object} ;
97
95
    }
98
96
 
99
97
    my @pkgs = keys %packages;
100
 
    Config::Model::Dpkg::Dependency::cache_info_from_madison (@pkgs);
 
98
    Config::Model::Dpkg::Dependency::cache_info_from_madison ($self->node->instance,@pkgs);
101
99
}
102
100
 
103
101
sub read_sections {