mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-18 00:10:04 +00:00
MOVEDlint: check for flavored version of a port
There is no need to document when a port has been flavored or new flavor has been added, check if someone added such a line, and prevent the person it is not needed
This commit is contained in:
parent
5ff97cc655
commit
d1349053a7
@ -115,7 +115,11 @@ $3 !~ /^20[0-3][0-9]-[01][0-9]-[0-3][0-9]$/ {
|
||||
# No else because the port is there but does not have the flavor,
|
||||
# so it should be ok.
|
||||
} else {
|
||||
printf "%5d: %s must be marked as resurrected\n", NR, $1 | sort
|
||||
if ($2 ~ $1 "@") {
|
||||
printf "%5d: %s is a flavor of %s, the line should be removed\n", NR, $2, $1 | sort
|
||||
} else {
|
||||
printf "%5d: %s must be marked as resurrected\n", NR, $1 | sort
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user