Displaying 1 result from an estimated 1 matches for "dep_op".
Did you mean:
dep_ok
2002 May 22
0
package names with `.' cause problems in the Depends field
...allowed in package names or
2) With R CMD check or
3) With my analysis?
The key Perl code in check seems to be:
foreach my $dep (@dependencies) {
$dep =~ /^\s*(\w+)(\s*\(([^) ]+)\s+([^) ]+)\))?\s*$/;
## The entry is malformed if there is no match, or there is
## a match but the dep_op is different from `<=' or `>', or
## the dep_version does not only consist of digits, `.' or
## `-'.
if(!($1) || ($2 && (!(($3 eq "<=") || ($3 eq ">="))
|| ($4 =~ /[^\d\.\-]/)))) {
$any++;
break;
}
}
if($any == 0)...