PN: dbus
PV: 1.10.10
PR: r0
PKGV: 1.10.10
PKGR: r0
LICENSE: AFL-2 | GPLv2+
DESCRIPTION: D-Bus is a message bus system, a simple way for applications to talk to one another. In addition to interprocess communication, D-Bus helps coordinate process lifecycle; it makes it simple and reliable to code a \\"single instance\\" application or daemon, and to launch applications and daemons on demand when their services are needed.
SUMMARY: D-Bus message bus
RDEPENDS_dbus: base-files base-passwd initscripts-functions shadow dbus-lib (>= 1.10.10) expat (>= 2.2.0) glibc (>= linaro-2.23) libx11 (>= 1.6.3)
RPROVIDES_dbus: dbus-x11 dbus-systemd dbus (=1.10.10)
RRECOMMENDS_dbus:  update-rc.d
RREPLACES_dbus:  dbus-x11 dbus-systemd
RCONFLICTS_dbus:  dbus-systemd
SECTION: base
PKG_dbus: dbus-1
FILES_dbus: /usr/bin/dbus-daemon*                /usr/bin/dbus-uuidgen                /usr/bin/dbus-cleanup-sockets                /usr/bin/dbus-send                /usr/bin/dbus-monitor                /usr/bin/dbus-launch                /usr/bin/dbus-run-session                /usr/bin/dbus-update-activation-environment                /usr/libexec/dbus*                /etc                /var                /usr/share/dbus-1/services                /usr/share/dbus-1/system-services                /usr/share/dbus-1/session.d                /usr/share/dbus-1/session.conf                /usr/share/dbus-1/system.d                /usr/share/dbus-1/system.conf                /lib/systemd/system                /usr/lib/systemd/user 
pkg_postinst_dbus: \t# If both systemd and sysvinit are enabled, mask the dbus-1 init script\n        if false; then\n\t\tif [ -n "$D" ]; then\n\t\t\tOPTS="--root=$D"\n\t\tfi\n\t\tsystemctl $OPTS mask dbus-1.service\n\tfi\n\n\tif [ -z "$D" ] && [ -e /etc/init.d/populate-volatile.sh ] ; then\n\t\t/etc/init.d/populate-volatile.sh update\n\tfi\n# Begin section update-rc.d\nif type update-rc.d >/dev/null 2>/dev/null; then\n\tif [ -n "$D" ]; then\n\t\tOPT="-r $D"\n\telse\n\t\tOPT="-s"\n\tfi\n\tupdate-rc.d $OPT dbus-1 start 02 5 3 2 . stop 20 0 1 6 .\nfi\n# End section update-rc.d\n
pkg_postrm_dbus: #!/bin/sh\nif type update-rc.d >/dev/null 2>/dev/null; then\n\tif [ -n "$D" ]; then\n\t\tOPT="-f -r $D"\n\telse\n\t\tOPT="-f"\n\tfi\n\tupdate-rc.d $OPT dbus-1 remove\nfi\n
pkg_preinst_dbus: #!/bin/sh\nif [ -z "$D" -a -f "/etc/init.d/dbus-1" ]; then\n\t/etc/init.d/dbus-1 stop || :\nfi\nif type update-rc.d >/dev/null 2>/dev/null; then\n\tif [ -n "$D" ]; then\n\t\tOPT="-f -r $D"\n\telse\n\t\tOPT="-f"\n\tfi\n\tupdate-rc.d $OPT dbus-1 remove\nfi\nbbnote () {\n\techo "NOTE: $*"\n}\nbbwarn () {\n\techo "WARNING: $*"\n}\nbbfatal () {\n\techo "ERROR: $*"\n\texit 1\n}\nperform_groupadd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "dbus: Performing groupadd with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ print $NF }'`\n\tlocal group_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\tif test "x$group_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupadd \\$opts\\" || true\n\t\tgroup_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\t\tif test "x$group_exists" = "x"; then\n\t\t\tbbfatal "dbus: groupadd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "dbus: group $groupname already exists, not re-creating it"\n\tfi\n}\nperform_useradd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "dbus: Performing useradd with [$opts]"\n\tlocal username=`echo "$opts" | awk '{ print $NF }'`\n\tlocal user_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\tif test "x$user_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c  \\"$PSEUDO useradd \\$opts\\" || true\n\t\tuser_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\t\tif test "x$user_exists" = "x"; then\n\t\t\tbbfatal "dbus: useradd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "dbus: user $username already exists, not re-creating it"\n\tfi\n}\nperform_groupmems () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "dbus: Performing groupmems with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-g" || $i == "--group") print $(i+1) }'`\n\tlocal username=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-a" || $i == "--add") print $(i+1) }'`\n\tbbnote "dbus: Running groupmems command with group $groupname and user $username"\n\tlocal mem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*" $rootdir/etc/group || true`"\n\tif test "x$mem_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupmems \\$opts\\" || true\n\t\tmem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*" $rootdir/etc/group || true`"\n\t\tif test "x$mem_exists" = "x"; then\n\t\t\tbbfatal "dbus: groupmems command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "dbus: group $groupname already contains $username, not re-adding it"\n\tfi\n}\nOPT=""\nSYSROOT=""\n\nif test "x$D" != "x"; then\n\t# Installing into a sysroot\n\tSYSROOT="$D"\n\tOPT="--root $D"\n\n\t# Make sure login.defs is there, this is to make debian package backend work\n\t# correctly while doing rootfs.\n\t# The problem here is that if /etc/login.defs is treated as a config file for\n\t# shadow package, then while performing preinsts for packages that depend on\n\t# shadow, there might only be /etc/login.def.dpkg-new there in root filesystem.\n\tif [ ! -e $D/etc/login.defs -a -e $D/etc/login.defs.dpkg-new ]; then\n\t    cp $D/etc/login.defs.dpkg-new $D/etc/login.defs\n\tfi\n\n\t# user/group lookups should match useradd/groupadd --root\n\texport PSEUDO_PASSWD="$SYSROOT:/scratch/petalinux-yocto/yocto_sdk_full_2017.3/build/tmp/sysroots/x86_64-linux"\nfi\n\n# If we're not doing a special SSTATE/SYSROOT install\n# then set the values, otherwise use the environment\nif test "x$UA_SYSROOT" = "x"; then\n\t# Installing onto a target\n\t# Add groups and users defined only for this package\n\tGROUPADD_PARAM="${GROUPADD_PARAM}"\n\tUSERADD_PARAM="${USERADD_PARAM}"\n\tGROUPMEMS_PARAM="${GROUPMEMS_PARAM}"\nfi\n\n# Perform group additions first, since user additions may depend\n# on these groups existing\nif test "x`echo $GROUPADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupadd commands..."\n\t# Invoke multiple instances of groupadd for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupadd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $USERADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running useradd commands..."\n\t# Invoke multiple instances of useradd for parameter lists\n\t# separated by ';'\n\topts=`echo "$USERADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$USERADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_useradd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $GROUPMEMS_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupmems commands..."\n\t# Invoke multiple instances of groupmems for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupmems "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n
pkg_prerm_dbus: #!/bin/sh\n# Begin section update-rc.d\nif [ -z "$D" -a -x "/etc/init.d/dbus-1" ]; then\n\t/etc/init.d/dbus-1 stop || :\nfi\n# End section update-rc.d\n
FILERPROVIDESFLIST_dbus: /usr/bin/dbus-send /usr/bin/dbus-run-session /usr/bin/dbus-update-activation-environment /usr/bin/dbus-monitor /usr/bin/dbus-launch /usr/bin/dbus-uuidgen /usr/bin/dbus-cleanup-sockets /usr/bin/dbus-daemon /usr/libexec/dbus-daemon-launch-helper
FILES_INFO: {"/usr/libexec/dbus-daemon-launch-helper": 49008, "/etc/dbus-1/system.conf": 833, "/usr/bin/dbus-launch": 23648, "/usr/bin/dbus-monitor": 20248, "/etc/dbus-1/session.conf": 838, "/usr/bin/dbus-uuidgen": 6856, "/usr/bin/dbus-send": 21440, "/usr/bin/dbus-run-session": 9984, "/usr/bin/dbus-update-activation-environment": 11008, "/usr/share/dbus-1/system.conf": 4363, "/etc/init.d/dbus-1": 2887, "/usr/share/dbus-1/session.conf": 3561, "/usr/bin/dbus-cleanup-sockets": 9304, "/etc/default/volatiles/99_dbus": 48, "/usr/bin/dbus-daemon": 173496}
FILERPROVIDES_/usr/bin/dbus-send_dbus: elf(buildid) (= b7cfd36823f23d579be6cd9741cf17fb9d1c24ec)
FILERPROVIDES_/usr/bin/dbus-run-session_dbus: elf(buildid) (= 939a182eb66b13b2e5a4cb12ef44c9479596aa0e)
FILERPROVIDES_/usr/bin/dbus-update-activation-environment_dbus: elf(buildid) (= aa62946b7c8ea26e1e16d74b3348f41489ef0219)
FILERPROVIDES_/usr/bin/dbus-monitor_dbus: elf(buildid) (= db278c924d227da97a485bab757f11470ed945e2)
FILERPROVIDES_/usr/bin/dbus-launch_dbus: elf(buildid) (= 09b3a6b5143f6616edad5b81998c154def8b95cb)
FILERPROVIDES_/usr/bin/dbus-uuidgen_dbus: elf(buildid) (= f9d7bd6bfca2407bd67838237827ca8af998c2de)
FILERPROVIDES_/usr/bin/dbus-cleanup-sockets_dbus: elf(buildid) (= e2736d6c0401b9411c03ee9b46f643776d5f0335)
FILERPROVIDES_/usr/bin/dbus-daemon_dbus: elf(buildid) (= c135d3d913ca0742728a24416bac6e396c822dd6)
FILERPROVIDES_/usr/libexec/dbus-daemon-launch-helper_dbus: elf(buildid) (= 3f5a539ba3b54522b24a7f6836da049d99c6a379)
FILERDEPENDSFLIST_dbus: /usr/bin/dbus-send /usr/bin/dbus-run-session /usr/bin/dbus-update-activation-environment /usr/bin/dbus-monitor /etc/init.d/dbus-1 /usr/bin/dbus-launch /usr/bin/dbus-cleanup-sockets /usr/libexec/dbus-daemon-launch-helper /usr/bin/dbus-daemon /usr/bin/dbus-uuidgen
FILERDEPENDS_/usr/bin/dbus-send_dbus: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libdbus-1.so.3()(64bit) libdbus-1.so.3(LIBDBUS_1_3)(64bit) libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.10)(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit) rtld(GNU_HASH)
FILERDEPENDS_/usr/bin/dbus-run-session_dbus: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libdbus-1.so.3()(64bit) libdbus-1.so.3(LIBDBUS_1_3)(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit) rtld(GNU_HASH)
FILERDEPENDS_/usr/bin/dbus-update-activation-environment_dbus: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libdbus-1.so.3()(64bit) libdbus-1.so.3(LIBDBUS_1_3)(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit) rtld(GNU_HASH)
FILERDEPENDS_/usr/bin/dbus-monitor_dbus: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libdbus-1.so.3()(64bit) libdbus-1.so.3(LIBDBUS_1_3)(64bit) libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.10)(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit) rtld(GNU_HASH)
FILERDEPENDS_/etc/init.d/dbus-1_dbus: /bin/sh
FILERDEPENDS_/usr/bin/dbus-launch_dbus: libX11.so.6()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libdbus-1.so.3()(64bit) libdbus-1.so.3(LIBDBUS_1_3)(64bit) libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.10)(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit) rtld(GNU_HASH)
FILERDEPENDS_/usr/bin/dbus-cleanup-sockets_dbus: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) rtld(GNU_HASH)
FILERDEPENDS_/usr/libexec/dbus-daemon-launch-helper_dbus: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libdbus-1.so.3()(64bit) libdbus-1.so.3(LIBDBUS_1_3)(64bit) libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.10)(64bit) libexpat.so.1()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit) rtld(GNU_HASH)
FILERDEPENDS_/usr/bin/dbus-daemon_dbus: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libdbus-1.so.3()(64bit) libdbus-1.so.3(LIBDBUS_1_3)(64bit) libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.10)(64bit) libexpat.so.1()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit) rtld(GNU_HASH)
FILERDEPENDS_/usr/bin/dbus-uuidgen_dbus: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libdbus-1.so.3()(64bit) libdbus-1.so.3(LIBDBUS_1_3)(64bit) libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.10)(64bit) rtld(GNU_HASH)
PKGSIZE_dbus: 337522
