1
0
Fork 0
mirror of https://github.com/bus1/dbus-broker.git synced 2026-09-19 21:14:22 +00:00
Linux D-Bus Message Broker
  • C 92.8%
  • Rust 4.9%
  • Meson 1.5%
  • Makefile 0.6%
  • Shell 0.1%
Find a file
David Rheinsberg 2956b5d381 ci: bump codeql workflows to v4
Bump the codeql workflows to v4, preparing for the sunset of v3.

Signed-off-by: David Rheinsberg <david@readahead.eu>
2026-07-02 11:13:39 +02:00
.github ci: bump codeql workflows to v4 2026-07-02 11:13:39 +02:00
docs build: add SPDX annotations 2026-06-30 14:45:03 +02:00
LICENSES build: import GPL-2.0 & GPL-3.0 2026-06-30 14:45:03 +02:00
src bus/diag: add unstable tracking of non-sender match rules 2026-06-30 20:41:05 +02:00
subprojects build: add SPDX annotations 2026-06-30 14:45:03 +02:00
test build: add SPDX annotations 2026-06-30 14:45:03 +02:00
.editorconfig build: add SPDX annotations 2026-06-30 14:45:03 +02:00
AUTHORS build: synchronize AUTHORS 2026-06-30 14:45:03 +02:00
Makefile build: add SPDX annotations 2026-06-30 14:45:03 +02:00
meson.build build: add unstable option 2026-06-30 20:40:43 +02:00
meson_options.txt build: mark option linux-4-17 as deprecated 2026-06-30 20:41:05 +02:00
NEWS.md build: add some initial release notes 2026-06-30 14:56:41 +02:00
packit.yml ci: update packit licensing 2026-06-30 14:45:03 +02:00
README.md build: relicense as GPL-3.0-or-later 2026-06-30 14:45:03 +02:00
REUSE.toml build: add SPDX annotations 2026-06-30 14:45:03 +02:00

dbus-broker - Linux D-Bus Message Broker

The dbus-broker project is an implementation of a message bus as defined by the D-Bus specification. Its aim is to provide high performance and reliability, while keeping compatibility to the D-Bus reference implementation. It is exclusively written for Linux systems, and makes use of many modern features provided by recent linux kernel releases.

WIKI: https://github.com/bus1/dbus-broker/wiki

BUG REPORTS: https://github.com/bus1/dbus-broker/issues

GIT:

  Cloning over ssh: git@github.com:bus1/dbus-broker.git
  Cloning over https: https://github.com/bus1/dbus-broker.git

GITWEB: https://github.com/bus1/dbus-broker

MAILINGLIST: https://groups.google.com/forum/#!forum/bus1-devel

Requirements

The requirements for dbus-broker are:

  glibc >= 2.16
  linux kernel >= 4.17
  libaudit >= 3.0               (optional)
  libcap-ng >= 0.6              (optional)
  libselinux >= 3.2             (optional)

Additionally, the compatibility launcher requires:

  expat >= 2.2
  systemd >= 230

At build-time, the following software is required:

  linux-api-headers >= 6.5
  meson >= 1.3
  pkg-config >= 0.29
  rust >= 1.84
  rust-bindgen >= 0.60
  dbus >= 1.10                (optional: only for tests)
  python-docutils >= 0.13     (optional: only for docs)

Install

The meson build-system is used for dbus-broker. Contact upstream documentation for detailed help. In most situations the following commands are sufficient to build and install dbus-broker from source:

  $ meson setup build
  $ meson compile -C build
  $ meson test -C build
  $ meson install -C build

For custom configuration options see meson_options.txt.

License

General Public License 3.0 or later See AUTHORS for details.

SPDX-License-Identifier: GPL-3.0-or-later SPDX-FileCopyrightText: D-Bus Broker Developers