~vcs-imports/alien/master

« back to all changes in this revision

Viewing changes to Alien/Package/Rpm.pm

  • Committer: joey
  • Date: 2000-04-21 06:16:26 UTC
  • Revision ID: git-v1:eae03ee44d34f8f21d5d441f60821c28b9a8130d
The rewrite can convert from rpm to deb -- this is getting exciting!

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
Relocatable rpm packages have a prefixes field.
26
26
 
27
 
=item changelogtext
28
 
 
29
 
The text of the changelog
30
 
 
31
27
=head1 METHODS
32
28
 
33
29
=over 4
80
76
        # Get the conffiles list.
81
77
        $this->conffiles([map { chomp; $_ } `rpm -qcp $file`]);
82
78
 
83
 
        $this->copyright_extra(scalar `rpm -qpi $file`);
 
79
        $this->binary_info(scalar `rpm -qpi $file`);
84
80
 
85
81
        # Get the filelist.
86
82
        $this->filelist([map { chomp; $_ } `rpm -qpl $file`]);
109
105
        }
110
106
 
111
107
        $this->distribution("Red Hat");
 
108
        $this->origformat("rpm");
112
109
 
113
110
        return 1;
114
111
}