Linux packaging
May 11, 2026 ยท View on GitHub
Package distribution
We use different channels to build and distribute the Linux packages:
- (older version) included in official repos since Ubuntu 19.04 and Debian Buster
- Launchpad repo for stable, beta and alpha versions
- pso for stable versions
- llso for stable, beta, and alpha versions
- artifacts on GitHub for pull requests
Packages on llso are uploaded automatically and are intended as a staging environment for testing. Packages on pso are uploaded manually after the packages received some testing. End users usually have only pso enabled.
Building packages locally
It is possible to build packages locally. This can be done either directly on the machine, or in a Docker container which is more similar to the CI environment.
Building packages locally directly on the machine
To build packages locally, you'll have to have the dependencies installed.
The easiest way to achieve this is to use the mk-build-deps tool:
sudo apt install dh-python python3-all debhelper help2man devscripts \
equivs jq quilt
sudo mk-build-deps --install linux/debian/control
Then you can build the Debian package with:
KEYMAN_TIER=$(cat TIER.md)
export KEYMAN_TIER
cd linux
./scripts/deb-packaging.sh source
mkdir -p make_deb
cd make_deb
dpkg-source --extract ../../keyman_*.dsc
cd keyman-*
dch -v$(cat VERSION.md)-1 ""
debuild -us -uc
Local package builds with Docker
It is possible to use the usual Debian/Ubuntu tools to create the package locally. For someone who only occasionally deals with packaging it might be easier to use Docker and the scripts that run on GitHub actions:
Prerequisites for local package builds with Docker
You'll have to create the docker image.
-
clone gha-ubuntu-packaging repo
-
create the image:
cd /path/to/gha-ubuntu-packaging docker build --build-arg DIST=jammy --build-arg PLATFORM=amd64 -t sillsdev/jammy .
Building packages with Docker
-
create the source package
cd $KEYMAN_ROOT KEYMAN_TIER=$(cat TIER.md) export KEYMAN_TIER cd linux ./scripts/deb-packaging.sh sourceThis will create the source package in $KEYMAN_ROOT directory.
-
Create the binary packages with Docker:
cd $KEYMAN_ROOT DIST=jammy docker run -v $(pwd):/source -i -t -w /source --platform=amd64 \ --env INPUT_DIST=$DIST --env INPUT_SOURCE_DIR=. \ --env INPUT_SOURCEPACKAGE=$(ls keyman_*.dsc | sort | tail -1) \ sillsdev/$DISTThis will create the binary packages in
$KEYMAN_ROOT/artifacts.
Package builds
Package builds happen on Launchpad and GitHub. Package builds for the official Ubuntu/Debian repos happen outside of our control. However, we upload source packages to the Debian community.
GitHub Actions package builds
Build jobs
The Keyman GitHub repo contains various scripts that are used to trigger a build and as part of the package build, and of course the source code for the packages:
-
.github/workflows/deb-packaging.yml contains the definition of the packaging GHA
-
resources/teamcity/triggers/trigger-test-builds.sh runs on TeamCity to trigger the builds for the various platforms, among them the GHA package build.
-
resources/teamcity/triggers/trigger-release-builds.sh runs on TeamCity and increments the version number before triggering the builds for the various platforms.
-
The linux/scripts subdirectory contains
bashscripts that are used during the package build. Some are only needed for Launchpad builds.- deb-packaging.sh gets called by the packaging GHA to install dependencies, create the source package and to verify the API.
-
linux/debian - this is the
debiansubdirectory for Keyman for Linux with the meta data for the Linux package. See Debian New Maintainers' Guide for details to the various files in thedebiandirectory.
Flow of a Linux package build
- TeamCity jobs Keyman_Test or Keyman_TriggerReleaseBuilds* trigger a packaging GHA build
- packaging GHA calls deb-packaging.sh which installs dependencies and creates the source package
- packaging GHA creates the binary package for each linux package on each distribution
- packaging GHA verifies that the API didn't change with the help of deb-packaging.sh
- at the end of the build if it is not a build of a PR, the
.debfiles get uploaded to llso (alpha packages to e.g.jammy-experimental, beta packages tojammy-proposedand packages build from the stable branch to the main sectionjammy) - if the build is successful the job archives the artifacts
Package builds on Launchpad
Package builds on Launchpad are triggered manually by running the Keyman script linux/scripts/launchpad.sh.
Prerequisites for Launchpad
-
If you don't have one, create an account at launchpad.net
-
Request to join the "Keyman for Linux" team.
-
Create a GPG key and associate it to your launchpad account
-
Set the following environment variables in your
~/.profileor~/.bashrc(so you don't have to set them every time)export GPGKEY=[key_id] # using the `key_id` of your GPG key export DEBEMAIL="your.email.address@example.org" export DEBFULLNAME="Firstname Lastname" -
Create a
[keyman-ppa]section in your~/.config/dput/dput.cf(or~/.dput.cf) config file:[keyman-ppa] fqdn = ppa.launchpad.net method = sftp incoming = ~keymanapp/%(keyman-ppa)s login = *
Building packages on Launchpad
The launchpad.sh script downloads the current source code (beta or stable) from
downloads.keyman.com, creates a
Debian source package and uploads this to launchpad. Launchpad then rebuilds
for the different distros and architectures.
To upload the packages to launchpad, run the following script from the linux/ directory:
./scripts/launchpad.sh [options]
See launchpad.sh --help for supported parameters.
Releasing a new version
As part of releasing a new version it might be good to do some local testing first before uploading to Launchpad:
- Run
launchpad.shwith--simulateto build the packages - Then install them on a clean VM and make sure no glaring bugs
- Once you are happy with the packages you can run
launchpad.shwith--upload
Troubleshooting
Refer to the launchpad uploading help
for troubleshooting and setting up for dput upload.
Uploading Debian source packages
Unless you're a Debian maintainer you can't directly upload to the Debian repos. Instead you upload to <mentors.debian.net> and then look for a sponsor who will review the packages and upload them for you. Be prepared that this might take some persistence, and if somebody looks at it, it might take some iterations to get it accepted.
The Keyman packages are maintained on the Debian side by the Debian Input Method Team.
NOTE: All changelog files should contain the exact same entry that was
previously accepted into the Debian repo (plus the new entry for the new
update). This means that when your upload got accepted into Debian (not
<mentors.debian.net>) you'll have to update the changelog files to match
what got accepted (sometimes the Debian maintainers will create additional
package versions).
Prerequisites
-
an account on mentors.debian.net
-
an entry for
mentorsin your.dput.cffile:[mentors] fqdn = mentors.debian.net incoming = /upload method = https allow_unsigned_uploads = 0 progress_indicator = 2 # Allow uploads for UNRELEASED packages allowed_distributions = .* -
subscribe to the debian-input-method mailing list
Updating and uploading a stable release to Debian
To do this you can run the linux/scripts/upload-to-debian.sh script:
linux/scripts/upload-to-debian.sh -k ${DEBSIGNKEY} --push
This does several steps:
- Download the source code from <download.keyman.com> and create the source
package by running
scripts/debian.sh - sign the source package
- upload to mentors (unless
-nis passed) - Create a branch with the updated
linux/debian/changelogfile based on the stable branch - Cherry-pick the change on a new branch based on
master - If
--pushis passed, the two branches will be pushed to GitHub
There are a few additional manual required steps:
- Create a draft-PR for the change against stable branch
- Create a draft PR for the cherry-picked change against
master - file a RFS bug (Request For Sponsorship) against the
sponsorship-requestspseudo-package, cc'ingdebian-input-method, or just send an email to thedebian-input-methodlist.
After the package got published in Debian you can mark the PRs as ready for review. This should only be done after the package got published in Debian because the changelog file needs to contain the exact same information that the changelog in Debian has.
Reference
See the Linux readme for how to build Keyman on Linux etc.
References for Debian packaging
- mentors intro, especially section 3 (Publish your package)
- explanation of the sponsoring process
- personal package upload page