podman/vendor/github.com/godbus/dbus/v5
Doug Rabson 0d505f20ff vendor github.com/godbus/dbus/v5@4b691ce
This pulls in https://github.com/godbus/dbus/pull/332 allowing dbus to
build without cgo on FreeBSD. This will allow freebsd targets in the cross
build.

[NO NEW TESTS NEEDED]

Signed-off-by: Doug Rabson <dfr@rabson.org>
2022-10-30 16:45:47 +00:00
..
.golangci.yml vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
CONTRIBUTING.md update systemd & dbus dependencies 2020-03-10 18:34:55 +01:00
LICENSE update systemd & dbus dependencies 2020-03-10 18:34:55 +01:00
MAINTAINERS update systemd & dbus dependencies 2020-03-10 18:34:55 +01:00
README.md vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
auth.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
auth_anonymous.go update systemd & dbus dependencies 2020-03-10 18:34:55 +01:00
auth_external.go update systemd & dbus dependencies 2020-03-10 18:34:55 +01:00
auth_sha1.go update systemd & dbus dependencies 2020-03-10 18:34:55 +01:00
call.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
conn.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
conn_darwin.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
conn_other.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
conn_unix.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
conn_windows.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
dbus.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
decoder.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
default_handler.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
doc.go Vendor in containers/common@main 2022-02-28 16:23:26 -05:00
encoder.go Bump github.com/godbus/dbus/v5 from 5.0.4 to 5.0.5 2021-09-09 16:16:56 +00:00
escape.go Vendor in containers/common@main 2022-02-28 16:23:26 -05:00
export.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
homedir.go Vendor in containers/common@main 2022-02-28 16:23:26 -05:00
match.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
message.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
object.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
sequence.go Bump github.com/coreos/go-systemd/v22 from 22.3.0 to 22.3.1 2021-04-02 07:58:47 +00:00
sequential_handler.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
server_interfaces.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
sig.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
transport_darwin.go update systemd & dbus dependencies 2020-03-10 18:34:55 +01:00
transport_generic.go Bump github.com/godbus/dbus/v5 from 5.0.4 to 5.0.5 2021-09-09 16:16:56 +00:00
transport_nonce_tcp.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
transport_tcp.go update systemd & dbus dependencies 2020-03-10 18:34:55 +01:00
transport_unix.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
transport_unixcred_dragonfly.go update systemd & dbus dependencies 2020-03-10 18:34:55 +01:00
transport_unixcred_freebsd.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00
transport_unixcred_linux.go update systemd & dbus dependencies 2020-03-10 18:34:55 +01:00
transport_unixcred_netbsd.go vendor: update godbus to v5.0.6 2021-10-26 21:05:22 +02:00
transport_unixcred_openbsd.go update systemd & dbus dependencies 2020-03-10 18:34:55 +01:00
transport_zos.go Vendor in containers/common@main 2022-02-28 16:23:26 -05:00
variant.go Vendor in containers/common@main 2022-02-28 16:23:26 -05:00
variant_lexer.go update systemd & dbus dependencies 2020-03-10 18:34:55 +01:00
variant_parser.go vendor github.com/godbus/dbus/v5@4b691ce 2022-10-30 16:45:47 +00:00

README.md

Build Status

dbus

dbus is a simple library that implements native Go client bindings for the D-Bus message bus system.

Features

  • Complete native implementation of the D-Bus message protocol
  • Go-like API (channels for signals / asynchronous method calls, Goroutine-safe connections)
  • Subpackages that help with the introspection / property interfaces

Installation

This packages requires Go 1.12 or later. It can be installed by running the command below:

go get github.com/godbus/dbus/v5

Usage

The complete package documentation and some simple examples are available at godoc.org. Also, the _examples directory gives a short overview over the basic usage.

Projects using godbus

  • fyne a cross platform GUI in Go inspired by Material Design.
  • fynedesk a full desktop environment for Linux/Unix using Fyne.
  • go-bluetooth provides a bluetooth client over bluez dbus API.
  • iwd go bindings for the internet wireless daemon "iwd".
  • notify provides desktop notifications over dbus into a library.
  • playerbm a bookmark utility for media players.
  • rpic lightweight web app and RESTful API for managing a Raspberry Pi

Please note that the API is considered unstable for now and may change without further notice.

License

go.dbus is available under the Simplified BSD License; see LICENSE for the full text.

Nearly all of the credit for this library goes to github.com/guelfey/go.dbus.