distributionprovided
distributionprovided is a term used in software packaging and deployment to indicate that a given library, runtime, or dependency is supplied by the operating system distribution or the target environment rather than being shipped with the application. It marks the dependency as satisfiable by the environment, so the build or package manager will not include the artifact in the produced distribution and will not install it as a separate package.
In practice, a manifest or build script may include a flag or annotation named distributionProvided, distribution_provided,
Use cases include operating system package managers (apt, rpm) where a library is guaranteed to be present;
Caveats: relying on distributionProvided can lead to portability issues if target environments do not provide the
Because the term is not universally standardized, readers should consult the specific tooling or packaging documentation