Debspawn is a tool to build Debian packages in an isolated environment. Unlike similar tools like sbuild
or pbuilder
, debspawn
uses systemd-nspawn
instead of plain chroots to manage the isolated environment.
This allows Debspawn to isolate builds from the host system much more via containers. It also allows
for more advanced features to manage builds, for example setting resource limits for individual builds.
Please keep in mind that Debspawn is not a security feature! While it provides a lot of isolation from the host system, you should not run arbitrary untrusted code with it. The usual warnings for all container technology apply here.
Debspawn also allows one to run arbitrary custom commands in its environment. This is used by the Laniakea1 Spark workers to execute a variety of non-package builds and QA actions in the same environment in which we usually build packages.
Debspawn was created to be simple to use in automation as well as by humans. It should both be easily usable on large
build farms with good integration with a job runner, as well as on a personal workstation by a human user (to reproduce
builds done elsewhere, or to develop a Debian package).
Due to that, the most common operations are as easily accessible as possible and should require zero configuration
by default. Additionally, debspawn
will always try to do the right thing automatically before resorting to a flag
that the user has to set.
Options which change the build environment are - with one exception - not made available intentionally, so
achieving reproducible builds is easier.
See the FAQ below for more details.
On Debian/Ubuntu, simply run
sudo apt install debspawn
to start using Debspawn.
⚠ WARNING: Careful when installing via PyPI! While we do ship
debspawn
on PyPI, installing it viapip
will not install certain system services to automate cache cleanup and temp data cleanup. In addition to that, all manual pages will be missing. This is due to intentional limitations of Python packages installed via pip.
If you want to install Debspawn via PyPI anyway, you can use pip install debspawn
.
You can decide to install the system data files manually later by running the install-sysdata.py
script from the
Git repository and adjusting the debspawn
binary path in the installed systemd units, if you want to.
Clone the Git repository, install the (build and runtime) dependencies of debspawn
:
sudo apt install xsltproc docbook-xsl python3-setuptools zstd systemd-container debootstrap
You can the run debspawn.py
directly from the Git repository, or choose to install it:
sudo python setup.py install --root=/
Debspawn requires at least Python 3.9 on the host system, and Python 3.5 in the container. We try to keep the dependency footprint of this tool as small as possible, so it is not planned to raise that requirement or add any more dependencies anytime soon (especially not for the minimum Python version used in a container).
If sudo
is available on the system, debspawn
will automatically request root permission
when it needs it, there is no need to run it as root explicitly.
If it can not obtain privileges, debspawn
will exit with the appropriate error message.
You can easily create images for any suite that has a script in debootstrap
. For Debian Unstable for example:
$ debspawn create sid
This will create a Debian Sid (unstable) image for the current system architecture.
To create an image for testing Ubuntu builds:
$ debspawn create --arch=i386 cosmic
This creates an i386
image for Ubuntu 18.10. If you want to use a different mirror than set by default, pass it
with the --mirror
option.
Just run debspawn update
and give the details of the base image that should be updated:
$ debspawn update sid
$ debspawn update --arch=i386 cosmic
This will update the base image contents and perform other maintenance actions.
You can build a package from its source directory, or just by passing a plain .dsc
file to debspawn
. If the result
should be automatically signed, the --sign
flag needs to be passed too:
$ cd ~/packages/hello
$ debspawn build sid --sign
$ debspawn build --arch=i386 cosmic ./hello_2.10-1.dsc
Build results are by default returned in /var/lib/debspawn/results/
.
If you need to inject other local packages as build dependencies, place deb
files in /var/lib/debspawn/injected-pkgs
(or other location set in the config file).
You can use a command like this to build your project with gbp and Debspawn:
$ gbp buildpackage --git-builder='debspawn build sid --sign'
You might also want to add --results-dir=..
to the debspawn arguments to get the resulting artifacts in the directory
to which the package repository was originally exported.
If you want to, you can log into the container environment and either play around in
ephemeral mode with no persistent changes, or pass --persistent
to debspawn
so all changes are permanently saved:
$ debspawn login sid
# Attention! This may alter the build environment!
$ debspawn login --persistent sid
At some point, you may want to permanently remove a container image again, for example because the release it was built for went end of life. This is easily done as well:
$ debspawn delete sid
$ debspawn delete --arch=i386 cosmic
This is achieved with the debspawn run
command and is a bit more involved. Refer to its manual page
and help output for more information on how to use it: man debspawn run
.
Debspawn will read a global configuration file from /etc/debspawn/global.toml
, or a configuration file in a location
specified by the --config
flag.
If a configuration file is specified on the command line, the global file is ignored completely rather than merged.
The config is a TOML file containing any of the following (all optional) keys:
OSRootsDir
: directory for os images (/var/lib/debspawn/images/
)ResultsDir
: directory for build artifacts (/var/lib/debspawn/results/
)APTCacheDir
: directory for debspawn's own package cache (/var/lib/debspawn/aptcache/
)InjectedPkgsDir
: packages placed in this directory will be available as dependencies for builds (/var/lib/debspawn/injected-pkgs/
)TempDir
: temporary directory used for running containers (/var/tmp/debspawn/
)AllowUnsafePermissions
: allow usage of riskier container permissions, such as binding the host/dev
and/proc
into the container (false
)
Systemd-nspawn is a very lightweight container solution readily available without much (or any) setup on all Linux systems that are using systemd. It does not need any background daemon and while it does not provide a lot of features, it fits the relatively simple usecase of building in an isolated environment perfectly.
No - while apt-cacher-ng
is generally a useful tool, it is not required for efficient use of debspawn
.
debspawn
will cache downloaded packages between runs fully automatically, so packages only get downloaded when
they have not been retrieved before.
No, unfortunately. Due to the different technology used, there are subtle differences between sbuild chroots and
debspawn
containers.
The differences should - for the most part - not have any impact on package builds, and any such occurrence is highly
likely a bug in the package's build process. If you think it is not, please file a bug against Debspawn. We try to be
as close to sbuild's default environment as possible.
One way the build environment differs from Debian's default sbuild setup intentionally is in its consistent use of unicode.
By default, debspawn
will ensure that unicode is always available and used. If you do not want this behavior, you can pass
the --no-unicode
flag to debspawn
to disable unicode in the tool itself and in the build environment.
Not in the foreseeable future on Debian itself.
Sbuild is a proven tool that works well for Debian and supports other OSes than Linux, while debspawn
is Linux-only,
a thing that will not change due to its use of systemd.
However, Laniakea-using derivatives such as PureOS use the tool for building all packages and for constructing other
build environments to e.g. build disk images.
The Laniakea job runner uses debspawn
for a bunch of tasks and the integration with the Laniakea system is generally
quite tight.
Of course you can use debspawn
without Laniakea and integrate it with any tool you want. Debspawn will always be usable
without Laniakea automation.
Surprisingly, building packages with debspawn
is often a bit faster than using pbuilder
and sbuild
with their
default settings.
The speed gain comes in large part from the internal use of the Zstandard compression algorithm for container base images.
Zstd allows for fast decompression of the tarballs, which is exactly why it was chosen (LZ4 would be even faster,
but Zstd actually is a good compromise between compression ration and speed). This shaves off a few seconds of time
for each build that is used on base image decompression.
Additionally, Debspawn uses eatmydata
to disable fsync & co. by default in a few places, improving the time it takes
to set up the build environment by quite a bit as well.
If you want, you can configure other tools to make use of the same methods as well and see if they run faster.
There's nothing new or unusually clever here at all!