Where can I download it?

Back to the main page

Where do I download it?

Precompiled Packages

Your distribution may already have compiled packages that are much easier to install. Refer to the users page for more details or use the instructions provided below to get you going using your native package manager.

Released Versions

Released versions are found on http://www.packagekit.org/releases/.

Latest Supported Versions:

These are versions which have new features for each release. We are also willing to break ABI and API to fix bugs and will merge new or modified translations as required or suggested. Releases are normally on the first working Monday of each month.

Version  Date
0.7.32012-03-01
0.7.22012-01-17
0.7.12011-11-10
0.7.02011-09-05

ABI Stable Versions:

These are versions where we will not break ABI, API or localisations. Releases are less frequent, usually every few months.

Version  Date
0.6.182011-09-05
0.6.172011-08-01
0.6.162011-07-04
0.6.152011-06-07
0.6.142011-05-04
0.6.132011-03-07
0.6.122011-02-01
0.6.112010-12-13
0.6.102010-11-01
0.6.92010-10-04
0.6.82010-09-06
0.6.72010-08-04
0.6.62010-07-01
0.6.52010-06-02
0.6.42010-05-06
0.6.32010-03-29
0.6.22010-03-01
0.6.12010-02-01
0.6.02010-01-04

Obsolete Versions:

These are versions that used to be the ABI stable releases, but are now longer supported. There will not be any more releases of these versions.

Version  Date
0.5.72010-03-03
0.5.62010-01-05
0.5.52009-12-07
0.5.42009-11-02
0.5.32009-10-05
0.5.22009-09-07
0.5.12009-08-03
0.5.02009-07-06
0.4.92009-08-03
0.4.82009-06-01
0.4.72009-05-05
0.4.62009-03-30
0.4.52009-03-09
0.4.42009-02-23
0.4.32009-02-02
0.4.22009-01-19
0.4.12009-01-08
0.4.02008-12-09
0.3.162009-06-10
0.3.152009-03-30
0.3.142009-02-02
0.3.122008-12-08
0.3.112008-11-24
0.3.102008-11-10
0.3.92008-10-27
0.3.82008-10-20
0.3.72008-10-13
0.3.62008-10-06
0.3.52008-09-29
0.3.42008-09-22
0.3.32008-09-16
0.3.22008-09-08
0.3.12008-08-27
0.3.02008-08-18
0.2.52008-09-06
0.2.42008-07-30
0.2.32008-07-04
0.2.22008-06-05
0.2.12008-05-09
0.2.02008-05-06
0.1.112008-04-05
0.1.102008-03-28
0.1.92008-03-04
0.1.82008-02-21
0.1.72008-02-14
0.1.62008-01-18
0.1.52007-12-21
0.1.42007-11-26
0.1.32007-11-10
0.1.22007-11-01
0.1.12007-10-23
0.1.02007-10-16

Dependencies

The actual PackageKit daemon requires:

gnome-packagekit will need all the usual GNOME libs as well. Just make sure you install PackageKit before gnome-packagekit!

Compiling the latest code

You can get the latest PackageKit daemon and GNOME frontend from the public git repositories on gitorious.org:

git clone git://gitorious.org/packagekit/packagekit.git
git clone git://git.gnome.org/gnome-packagekit

Apper (was KPackageKit) is available from Git in the KDE playground:

git clone git://anongit.kde.org/apper

There are detailed build instructions for different distros available:

If you want to commit changes or a new backend, then please email the mailing list and we can give you access to a developer server. The developer server is always up to date, and the anonymous git is synced about twice a day. Having a two tier server lets developers review code for correctness and security problems before it's used in the real world.

Adding backends to PackageKit

PackageKit itself is an abstract daemon, the only bits that are distro specific are the backends.

To make PackageKit work on a new distribution, you have to write a "backend" which is basically a shim layer from the distro tool to packagekitd. A backend can have one or more threads and also spawn other processes.

See the developer information here for more information.

Backends do not have to be complete; often they just contain basic functionality to install and remove but do not provide dependency or file lists for example. See the FAQ here for backends status.

We need people to create backends, and then package (pardon the pun) PackageKit and gnome-packagekit for more distributions. I think it's important that installing and updating software should be as easy as possible.

Back to the main page