diff options
Diffstat (limited to 'URPM.pm')
-rw-r--r-- | URPM.pm | 26 |
1 files changed, 4 insertions, 22 deletions
@@ -11,7 +11,7 @@ use URPM::Resolve; use URPM::Signature; our @ISA = qw(DynaLoader); -our $VERSION = '3.40'; +our $VERSION = '4.9'; URPM->bootstrap($VERSION); @@ -320,7 +320,7 @@ parse_synthesis()). Force the re-reading of the RPM configuration files. -=item URPM::ranges_overlap($range1, $range2 [, $nopromoteepoch]) +=item URPM::ranges_overlap($range1, $range2) This utility function compares two version ranges, in order to calculate dependencies properly. The ranges have roughly the form @@ -329,13 +329,6 @@ dependencies properly. The ranges have roughly the form where epoch, version and release are RPM-style version numbers. -If the optional parameter $nopromoteepoch is true, and if the 2nd range has no -epoch while the first one has one, then the 2nd range is assumed to have an -epoch C<== 0>. - -B<Warning>: $nopromoteepoch actually defaults to 1, so if you're going to -pass a variable, make sure undef is treated like 1, not 0. - =item $urpm->parse_synthesis($file [, callback => sub {...} ]) This method gets the B<depslist> and the B<provides> from a synthesis file @@ -622,12 +615,6 @@ Returns whether this package is compatible with the current machine's architecture. 0 means not compatible. The lower the result is, the preferred the package is. -=item $package->is_platform_compat() - -Return whether this package is compatible with the current machine's -platform configuration (/etc/rpm/platform). 0 mean not compatible. -The lower the result is the preferred the package is. - =item $package->license() =item $package->name() @@ -642,7 +629,7 @@ Full obsoletes tags Just the obsoleted package name. -=item $package->obsoletes_overlap($s, [$nopromoteepoch, [$direction] ]) +=item $package->obsoletes_overlap($s) =item $package->os() @@ -660,7 +647,7 @@ Full provides tags Just the provided package name. -=item $package->provides_overlap($s, [$nopromoteepoch,] [$direction]) +=item $package->provides_overlap($s) =item $package->rate() @@ -831,11 +818,6 @@ Sets rpm verbosity level. $level is an integer between 2 (RPMMESS_CRIT) and 7 =item rpmErrorWriteTo($fd) -=item platformscore($platform) - -Return the score of $platform according computer's configuration. -0 mean not compatible, lower is prefered. - =item archscore($arch) Return the score of the given arch. 0 mean not compatible, |