Skip to main content

kmpkg install

Synopsis

  • Classic mode
kmpkg install [options] <package>...
  • Manifest mode
kmpkg install [options]

Description

Build and install port packages.

Classic mode

In Classic mode, this verb adds port packages to the existing set in the installed directory (defaults to installed/ under the kmpkg root). This can require removing and rebuilding existing packages, which can fail.

Package Syntax

portname[feature1,feature2]:triplet

Package references without a triplet are automatically qualified by the default target triplet. Package references that do not explicitly list core are considered to imply all default features.

Manifest mode

In Manifest mode, this command sets the installed directory to the state specified by the kmpkg.json manifest file, adding, removing, or rebuilding packages as needed.

Options

All kmpkg commands support a set of common options.

--allow-unsupported

Instead of stopping on an unsupported port, continue with a warning.

By default, kmpkg refuses to execute an install plan containing a port installation for a triplet outside its "supports" clause. The "supports" clause of a package describes the full set of platforms a package is expected to be buildable on. This flag instructs kmpkg to warn that the build is expected to fail instead of stopping.

--clean-after-build

Clean buildtrees, packages, and downloads after building each package.

This option has the same effect as passing --clean-buildtrees-after-build, --clean-downloads-after-build, and --clean-packages-after-build.

--clean-buildtrees-after-build

Clean all subdirectories from the buildtrees temporary subfolder after building each package.

All top-level files in the buildtrees subfolder (e.g. buildtrees/zlib/config-x64-windows-out.log) will be kept. All subdirectories will be deleted.

--clean-downloads-after-build

Clean all unextracted assets from the downloads/ folder after building each package.

All top level files in the downloads/ folder will be deleted. Extracted tools will be kept.

--clean-packages-after-build

Clean the packages temporary subfolder after building each package.

The packages subfolder for the built package (for example, packages/zlib_x64-windows) will be deleted after installation.

--dry-run

Print the install plan, but do not remove or install any packages.

The install plan lists all packages and features that will be installed, as well as any other packages that need to be removed and rebuilt.

--editable

  • Classic mode only

Perform editable builds for all directly referenced packages on the command line.

When kmpkg builds ports, it purges and re-extracts the source code each time to ensure inputs are accurately. This is necessary for Manifest mode to accurately update what is installed and for binary caching to ensure cached content is correct.

Passing the --editable flag disables this behavior, preserving edits to the extracted sources in the buildtrees/ folder. This helps develop patches quickly by avoiding the need to write a file on each change.

Sources extracted during an editable build do not have a .clean/ suffix on the directory name and will not be cleared by subsequent non-editable builds.

--enforce-port-checks

Fail install if a port has detected problems or attempts to use a deprecated feature.

By default, kmpkg will run several checks on built packages and emit warnings if any issues are detected. This flag upgrades those warnings to an error.

--x-feature=<feature>

This section covers an experimental feature of kmpkg which may change or be removed at any time.

  • Manifest mode only

Specify an additional feature from the kmpkg.json to install dependencies for.

By default, only "dependencies" and the dependencies of "default-features" will be installed.

--head

  • Classic mode only

Request all packages explicitly referenced on the command line to fetch the latest sources available when building.

This flag is only intended for temporary testing and is not intended for production or long-term use. This disables binary caching for all explicitly referenced packages and their dependents because kmpkg cannot accurately track all inputs.

--keep-going

Continue the install plan after the first failure.

By default, kmpkg will stop at the first package build failure. This flag instructs kmpkg to continue building and installing other parts of the install plan that don't depend upon the failed package.

--x-no-default-features

This section covers an experimental feature of kmpkg which may change or be removed at any time.

  • Manifest mode only

Don't install the default features from the top-level manifest.

When using install in Manifest mode, by default all dependencies of the features listed in "default-features" will be installed. This flag disables that behavior so only features explicitly enabled by --x-feature will be installed.

--no-downloads

When building a package, prevent ports from downloading new assets during the build.

By default, ports will acquire source code and tools on demand from the internet (subject to asset caching). This parameter blocks downloads and restricts ports to only the assets that were previously downloaded and cached on the machine.

--only-downloads

Attempt to download all assets required for an install plan without performing any builds.

When passed this option, kmpkg will run each build in the plan until it makes its first non-downloading external process call. Most ports perform all downloads before the first external process call (usually to their build system), so this procedure will download all required assets. Ports that do not follow this procedure will not have their assets pre-downloaded.

--only-binarycaching

Refuse to perform any builds. Only restore packages from binary caches.

This flag blocks kmpkg from performing builds on demand and will fail if a package cannot be found in any binary caches.

--recurse

  • Classic mode only

Approve an install plan that requires rebuilding packages.

In order to modify the set of features of an installed package, kmpkg must remove and rebuild that package. Because this has the potential of failing and leaving the install tree with fewer packages than the user started with, the user must approve plans that rebuild packages by passing this flag.

--x-write-nuget-packages-config

This section covers an experimental feature of kmpkg which may change or be removed at any time.

Writes out a NuGet packages.config-formatted file for use with binary caching.

This option can be used in conjunction with --dry-run to obtain the list of NuGet packages required from binary caching without building or installing any packages. This enables the NuGet command line to be invoked separately for advanced scenarios, such as using alternate protocols to acquire the .nupkg files.

--no-print-usage

Suppress generation of usage text printed at the end of installation.