Forrest logo
back to the DIST=${bullseye} tool

gbp:tldr:d60de

gbp: Build a package in a `pbuilder` environment for Debian Bullseye.
$ DIST=${bullseye} ARCH=${amd64} gbp buildpackage -jauto -us -uc --git-builder=${git-pbuilder}
try on your machine

This command sets the shell variables DIST and ARCH to the values ${bullseye} and ${amd64} respectively.

Then, it runs the gbp buildpackage command with the following options:

  • -jauto uses multiple processors for building packages, automatically determining the number of available processors.
  • -us indicates not to sign the source package.
  • -uc indicates not to sign the changes file.
  • --git-builder=${git-pbuilder} specifies the builder to be used for building the package, in this case, the value of the ${git-pbuilder} variable.
This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the DIST=${bullseye} tool