1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00

Handle flavors in the proxydeps qa check.

Reviewed by:	bdrewery
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D14595
This commit is contained in:
Mathieu Arnold 2018-03-07 09:17:33 +00:00
parent f64de12b56
commit 3754818b76
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=463782

View File

@ -669,6 +669,13 @@ proxydeps() {
# If we don't already depend on it, and we don't provide it
if ! listcontains ${dep_file_pkg} "${LIB_RUN_DEPENDS} ${PKGORIGIN}"; then
# If the package has a flavor, check that the dependency is not on that particular flavor.
flavor=$(pkg annotate -q -S "${dep_file_pkg}" flavor)
if [ -n "${flavor}" ]; then
if listcontains ${dep_file_pkg}@${flavor} "${LIB_RUN_DEPENDS} ${PKGORIGIN}"; then
continue
fi
fi
err "${file} is linked to ${dep_file} from ${dep_file_pkg} but it is not declared as a dependency"
proxydeps_suggest_uses ${dep_file_pkg} ${dep_file}
rc=1