Build Debian packages and offer them in PPAs
Lap of Honor
The KUP example build demonstrates how to deal with major changes before you can build a new package successfully: Persson ported Kup 0.6 to KDE 5; version 0.5.1 still used the old KDE 4.
Therefore, you have to define various KDE 5 libraries as dependencies so that your packages build properly in Launchpad later. Kup tells you what these dependencies are if you trigger the build process with:
$ dpkg-buildpackage -rfakeroot -uc -us
Of course, this is guaranteed to fail because the chroot environment does not have the required KDE 5 libraries. However, you can read the missing libraries from the error message and find out in which Ubuntu package the corresponding library is hiding using the Search function in the package directory [6].
You will want to add the additional build dependencies to the line beginning with Build-Depends in the debian/control
file (Figure 2). Do not forget to insert a comma before you enter the additional dependencies (Listing 2).
Listing 2
KDE 5 Dependencies
Executing dpkg-buildpackage
the first time created a set of current 0.6.0-1 sources, so you are better off starting over completely if you want to trigger the package build again. To start over, the command:
rm -rf kup-0.6.0 dpkg-source -x kup_0.6.0-1.dsc
creates a clean, new kup-0.6.0-1
directory.
One last Kup peculiarity needs to be handled: The path to plugins for the KDE control center has changed between KDE 4 and KDE 5, so you need to add two lines to the end of debian/rules
(Figure 3; Listing 3) and use dch -i
to create a new entry in debian/changelog
(Figure 4).
Listing 3
New Rules for debian/rules
The debian
directory is now fit for Kup 0.6.0-1. Create a clean 0.6.0-2 source package with the following:
dpkg-buildpackage -rfakeroot -S -sa
for upload onto Launchpad.
Launchpad
If you want to share the fruits of your labors with others, the Ubuntu Launchpad platform is just the right tool. You'll need to register first, then start configuring the account once you find the confirmation email in your Inbox: Enter the ID for your GPG key in Launchpad to upload packages into your own PPAs.
Launchpad uses GPG as a control mechanism: The .dsc
file that belongs to each Debian source package must be signed with the same GPG key that belongs to your account (Figure 5). If you have not dealt with GnuPG before or do not have your own keys, now is a good time to change that [7] – you won't get far in matters regarding a PPA in Launchpad without GPG keys.
To land directly in the GnuPG configuration of your Launchpad account, use the address https://launchpad.net/~<LaunchpadID>/+editpgpkeys. Enter your key ID here and permanently link the key in Launchpad with your profile.
Signing the Source Package
The penultimate step before finishing is to sign the source code package produced by dpkg-buildpackage
. For security reasons, you want to exit
the chroot environment. The debsign
tool is needed next, so install the package on your local system with:
# apt-get --no-install-recommends \ install devscripts
From the command line, go to the folder where the source package is located and sign it by entering:
debsign kup_0.6.0-2.dsc
If required, the tool will prompt you to enter your GPG password and then create the signatures.
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.