why meson of CURRENT needs so many dependencies?

Build dependencies here:
Code:
/usr/ports/ports-mgmt/pkg
/usr/ports/devel/py-setuptools
/usr/ports/devel/py-wheel
/usr/ports/lang/python312
/usr/ports/devel/py-build
/usr/ports/devel/py-installer

Shown by make build-depends-list.
The result of make all-depends is +900 ports but I never had all of that installed. I think it's the recursive build-deps of all build-deps. Not really useful...
 
Build dependencies here:
Code:
/usr/ports/ports-mgmt/pkg
/usr/ports/devel/py-setuptools
/usr/ports/devel/py-wheel
/usr/ports/lang/python312
/usr/ports/devel/py-build
/usr/ports/devel/py-installer

Shown by make build-depends-list.
The result of make all-depends is +900 ports but I never had all of that installed. I think it's the recursive build-deps of all build-deps. Not really useful...
Probably do sort -u to exclude duplicates.
 
I think it's the recursive build-deps of all build-deps.
Yeah, it cascades really quickly.

pkg install -A autoconf automake gmake pkgconf gettext-runtime
This usually covers most of build dependencies. It should, at the very least, significantly cull that all-depends list.
 
Back
Top