packagekit_dart 0.4.0 copy "packagekit_dart: ^0.4.0" to clipboard
packagekit_dart: ^0.4.0 copied to clipboard

Dart FFI bindings for PackageKit, the cross-distro Linux package manager. Search, install, update, and remove packages via D-Bus with async streams.

packagekit_dart #

Typed Dart API for the PackageKit D-Bus package manager abstraction layer. Supports search, install, update, remove, and repo management across APT, DNF, Zypper, and other PackageKit backends.

Uses sdbus-cpp v2 for typed D-Bus signal delivery via Dart_PostCObject_DL.

Platform support #

Platform Search / info Install / remove / update Repo management
Ubuntu 22.04+ (APT) Y Y (polkit) Y (polkit)
Fedora 38+ (DNF) Y Y (polkit) Y (polkit)
openSUSE (Zypper) Y Y (polkit) Y (polkit)
Arch (Alpm) Y Y (polkit) Y (polkit)
Any Linux with PackageKit >= 1.2 Y Y Y
macOS / Windows - - -

PackageKit is socket-activated on all modern distributions. If the daemon is not running when PkClient.connect() is called, systemd will start it automatically.

Prerequisites #

PackageKit must be installed on the target system. Without it, PkClient.connect() will throw PkServiceUnavailableException.

Ubuntu/Debian:

sudo apt install packagekit

Fedora:

sudo dnf install PackageKit

openSUSE:

sudo zypper install PackageKit

Arch:

sudo pacman -S packagekit

Verify the daemon is available:

busctl status org.freedesktop.PackageKit 2>/dev/null && echo "OK" || echo "Not available"

Note: PackageKit requires a real Linux system with systemd and D-Bus. It will not work in minimal containers, chroots, or WSL environments that lack a system bus and the PackageKit .service file.

Quick start #

import 'package:packagekit_dart/packagekit_dart.dart';

Future<void> main() async {
  final client = await PkClient.connect();
  print('Backend: ${client.properties?.backendName}');

  // Search for packages
  final tx = client.searchName('firefox');
  await for (final pkg in tx.packages) {
    print('${pkg.id.name} ${pkg.id.version}: ${pkg.summary}');
  }
  await tx.result;

  await client.close();
}

Authorization and interactivity #

Install, remove, and update are polkit-gated. On a stock desktop the relevant actions (org.freedesktop.packagekit.package-install and friends) are auth_admin_keep, so a non-root caller must be authorized before the daemon will act.

PkClient.connect() is interactive by default: transactions send interactive=true, which lets the daemon ask polkit to prompt the user. Pass interactive: false for unattended callers that must fail fast rather than block on a prompt:

final client = await PkClient.connect(interactive: false);

Non-interactive suppresses the prompt; it does not grant anything. An unauthorized transaction then fails immediately with PkError.notAuthorized. To run unattended, run as root.

Where there is no polkit agent — an SSH session, for instance — pkttyagent --process $$ & provides a text-mode prompt.

WSL #

polkit cannot reliably prompt on WSL. It needs a logind session owned by the calling user, and WSL frequently supplies neither: shells started by tooling belong to no session at all, and sessions manufactured with sudo end up owned by root while running your uid. In both cases an authentication agent registers successfully and is then never consulted, so every privileged transaction fails instantly with PkError.notAuthorized — indistinguishable from a real denial.

Run as root instead:

$ sudo my-tool install ...

uid 0 bypasses polkit entirely, so no agent, session, or policy change is needed. This is the simplest approach on WSL.

Note that sudo resets PATH via secure_path, so a tool installed under ~/.local will not be found. Use an absolute path:

$ sudo "$(command -v my-tool)" install ...

Weigh this against what the calling tool does besides package management. A process running as root writes root-owned files, so anything that also maintains caches or configuration under $HOME will leave artifacts the user can no longer modify. For those callers, prefer the rule below and keep the client unprivileged — which is the arrangement PackageKit exists to make possible.

Optional: authorizing without a prompt

If you need non-root operation, a polkit rule can authorize specific actions for the wheel group. This is a persistent change to system authorization policy — it grants unattended install, remove, and update to everyone in wheel, with no authentication. Decide whether that is acceptable for your machine before installing it.

// /etc/polkit-1/rules.d/49-packagekit-dart.rules
//
// Scoped to three named actions on purpose. A blanket grant on
// org.freedesktop.packagekit.* would also cover repository reconfiguration
// and untrusted-package installs, which is a considerably larger grant.
polkit.addRule(function(action, subject) {
    var allowed = [
        "org.freedesktop.packagekit.package-install",
        "org.freedesktop.packagekit.package-remove",
        "org.freedesktop.packagekit.system-update"
    ];
    if (allowed.indexOf(action.id) !== -1 && subject.isInGroup("wheel")) {
        return polkit.Result.YES;
    }
});

Remove it with sudo rm /etc/polkit-1/rules.d/49-packagekit-dart.rules.

Diagnosing an unexpected notAuthorized

Session problems and genuine policy denials produce the same error. To tell them apart:

$ loginctl show-session $(loginctl session-status | head -1 | awk '{print $1}') \
    -p User -p Service -p Class

A usable session reports your own uid, Service=login, and Class=user. If the command errors, the shell has no session and cannot be prompted.

Dependency resolution and the simulate-first pattern #

PackageKit performs full dependency resolution in the backend (libsolv for DNF/Zypper, libapt-pkg for APT). The recommended workflow for install/remove/update is:

1. simulateInstall(ids)  -->  PkInstallPlan (dry-run, no system changes)
2. Display plan to user, ask for confirmation
3. installPackages(ids)  -->  Real install with live progress
// Simulate first — see exactly what will change
final plan = await client.simulateInstall(packageIds);
print('${plan.installing.length} to install, '
    '${plan.updating.length} to update, '
    '${plan.removing.length} to remove');

if (!plan.isEmpty) {
  // Execute the real install
  final tx = client.installPackages(packageIds);
  await for (final p in tx.progress) {
    print(p.progressLabel);
  }
  await tx.result;
}

TOCTOU note #

simulateInstall() and installPackages() are separate PackageKit transactions. The daemon's dependency solver runs independently in each. Between the two calls, another process may install packages, refresh the cache, or modify repos. The real install will silently recompute a fresh dependency plan that may differ from the simulate plan.

This is expected behavior. Always pass the original package IDs to installPackages(), not plan.allIds — let the backend resolve the current state at install time.

Flutter example #

A full-featured Flutter desktop catalog app is included at example/packagekit_catalog/.

[PackageKit Catalog]

Examples #

Example Description
search.dart Search packages by name
install.dart Simulate-first install with live progress
simulate_install.dart Dry-run dep resolution (scripting-friendly)
get_updates.dart List available updates with security classification
list_repos.dart List configured repositories
monitor_updates.dart Watch for daemon update notifications

Run with:

dart run example/search.dart firefox
dart run example/install.dart vim
dart run example/get_updates.dart

Building the native library #

# Clone with submodules
git clone --recursive https://github.com/meta-flutter/packagekit_dart.git
cd packagekit_dart

# Build
cmake -B build native/ -GNinja \
  -DCMAKE_BUILD_TYPE=Release \
  -DBUILD_TESTING=ON
cmake --build build --parallel

# Run C++ tests
ctest --test-dir build/test --output-on-failure

# Run Dart tests
PK_NC_LIB=$PWD/build/libpackagekit_nc.so dart test

Dependencies #

Ubuntu/Debian:

sudo apt install cmake ninja-build pkg-config clang libsystemd-dev libgtest-dev

Fedora:

sudo dnf install cmake ninja-build clang clang-tools-extra systemd-devel gtest-devel

Architecture #

Dart (PkClient)
  |  dart:ffi
  v
pk_bridge.h  (C ABI)
  |
  +-- PkManager        (system bus connection, event loop thread, properties)
  +-- PkTransactionBridge  (per-transaction signal handlers -> PostCObject)
  |
  v
sdbus-cpp v2  (D-Bus proxy, typed signals)
  |
  v
org.freedesktop.PackageKit  (system bus, socket-activated daemon)

All signal payloads are glaze-encoded with a discriminator byte prefix and posted to Dart via Dart_PostCObject_DL. The Dart GlazeCodec decodes them into typed domain objects.

License #

Apache-2.0. See LICENSE.

sdbus-cpp is MIT. PackageKit D-Bus XML interface files are LGPL 2.1 (vendored for code generation only).

0
likes
0
points
17k
downloads

Publisher

unverified uploader

Weekly Downloads

Dart FFI bindings for PackageKit, the cross-distro Linux package manager. Search, install, update, and remove packages via D-Bus with async streams.

Repository (GitHub)
View/report issues

Topics

#linux #packagekit #dbus #package-manager #ffi

License

unknown (license)

Dependencies

code_assets, ffi, hooks, native_toolchain_c, path

More

Packages that depend on packagekit_dart