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
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
Kubuntu Focus Announces XE Gen 2 Linux Laptop
Another Kubuntu-based laptop has arrived to be your next ultra-portable powerhouse with a Linux heart.
-
MNT Seeks Financial Backing for New Seven-Inch Linux Laptop
MNT Pocket Reform is a tiny laptop that is modular, upgradable, recyclable, reusable, and ships with Debian Linux.
-
Ubuntu Flatpak Remix Adds Flatpak Support Preinstalled
If you're looking for a version of Ubuntu that includes Flatpak support out of the box, there's one clear option.
-
Gnome 44 Release Candidate Now Available
The Gnome 44 release candidate has officially arrived and adds a few changes into the mix.
-
Flathub Vying to Become the Standard Linux App Store
If the Flathub team has any say in the matter, their product will become the default tool for installing Linux apps in 2023.
-
Debian 12 to Ship with KDE Plasma 5.27
The Debian development team has shifted to the latest version of KDE for their testing branch.
-
Planet Computers Launches ARM-based Linux Desktop PCs
The firm that originally released a line of mobile keyboards has taken a different direction and has developed a new line of out-of-the-box mini Linux desktop computers.
-
Ubuntu No Longer Shipping with Flatpak
In a move that probably won’t come as a shock to many, Ubuntu and all of its official spins will no longer ship with Flatpak installed.
-
openSUSE Leap 15.5 Beta Now Available
The final version of the Leap 15 series of openSUSE is available for beta testing and offers only new software versions.
-
Linux Kernel 6.2 Released with New Hardware Support
Find out what's new in the most recent release from Linus Torvalds and the Linux kernel team.