Path to this page:
./
sysutils/dbus,
Message bus system
Branch: pkgsrc-2013Q1,
Version: 1.6.12,
Package name: dbus-1.6.12,
Maintainer: pkgsrc-usersD-BUS is a message bus, used for sending messages between applications.
Conceptually, it fits somewhere in between raw sockets and CORBA in terms
of complexity.
D-BUS supports broadcast messages, asynchronous messages (thus decreasing
latency), authentication, and more. It is designed to be low-overhead;
messages are sent using a binary protocol, not using XML. D-BUS also
supports a method call mapping for its messages, but it is not required;
this makes using the system quite simple.
This package provides the D-BUS core library and daemon, as well as
some utilities that complement it.
DEINSTALL [+/-]# $NetBSD: DEINSTALL,v 1.2 2011/10/29 15:17:17 dholland Exp $
# DEINSTALL is used rather than @pkgdir because the automatic directory
# deletion mechanism makes dbus services remove these directories first,
# and thus "Directory disappeared" messages will likely appear under @pkgdir
case ${STAGE} in
POST-DEINSTALL)
CYCLE="@PREFIX@/share/dbus-1/system-services \
@PREFIX@/share/dbus-1/services \
@PREFIX@/libexec/dbus-1"
for dbuspath in ${CYCLE}; do
if [ -d ${dbuspath} ]; then
if [ -n `${LS} -A ${dbuspath}` ]; then
${RMDIR} ${dbuspath}
fi
fi
done
;;
esac
Required to build:[
pkgtools/x11-links] [
devel/gmake] [
devel/libtool-base] [
devel/pkg-config]
Package options: kqueue, x11
Master sites:
SHA1: 96f7ae2edb8711fe4fb42718d03fdb00a90416d5
RMD160: 2ffda0a66ac457ee77c498a95b85d04a147906d6
Filesize: 1888.481 KB
Version history: (Expand)
- (2013-06-19) Updated to version: dbus-1.6.12
- (2013-04-01) Package added to pkgsrc.se, version dbus-1.6.8 (created)
CVS history: (Expand)
2013-06-19 16:44:07 by Matthias Scheler | Files touched by this commit (3) | |
Log message:
Pullup ticket #4162 - requested by wiz
sysutils/dbus: security update
Revisions pulled up:
- sysutils/dbus/Makefile 1.60-1.61
- sysutils/dbus/distinfo 1.43-1.44
- sysutils/dbus/patches/patch-ab 1.21
---
Module Name: pkgsrc
Committed By: wiz
Date: Sun May 26 18:06:05 UTC 2013
Modified Files:
pkgsrc/sysutils/dbus: Makefile distinfo
pkgsrc/sysutils/dbus/patches: patch-ab
Log message:
Update to 1.6.10:
D-Bus 1.6.10 (2013-04-24)
==
The âlittle-known facts about bananasâ release.
⢠Following Unicode Corrigendum #9, the noncharacters U+nFFFE, U+nFFFF,
U+FDD0..U+FDEF are allowed in UTF-8 strings again.
(fd.o #63072, Simon McVittie)
⢠Diagnose incorrect use of dbus_connection_get_data() with negative slot
(i.e. before allocating the slot) rather than returning junk
(fd.o #63127, Dan Williams)
⢠In the activation helper, when compiled for tests, do not reset the system
bus address, fixing the regression tests. (fd.o #52202, Simon)
⢠Fix building with Valgrind 3.8, at the cost of causing harmless warnings
with Valgrind 3.6 on some compilers (fd.o #55932, Arun Raghavan)
⢠Don't leak temporary fds pointing to /dev/null (fd.o #56927, Michel \
HERMIER)
⢠Create session.d, system.d directories under CMake (fd.o #41319,
Ralf Habacker)
⢠Unix-specific:
· Include alloca.h for alloca() if available, fixing compilation on
Solaris 10 (fd.o #63071, Dagobert Michelsen)
---
Module Name: pkgsrc
Committed By: wiz
Date: Thu Jun 13 13:00:34 UTC 2013
Modified Files:
pkgsrc/sysutils/dbus: Makefile distinfo
Log message:
Update to 1.6.12:
D-Bus 1.6.12 (2013-06-13)
==
Fixes:
⢠CVE-2013-2168: Fix misuse of va_list that could be used as a denial
of service for system services. Vulnerability reported by Alexandru Cornea.
(Simon)
⢠In dbus-daemon, don't crash if a .service file starts with key=value
(fd.o #60853, Chengwei Yang)
⢠Unix-specific:
· Fix an assertion failure if we try to activate systemd services before
systemd connects to the bus (fd.o #50199, Chengwei Yang)
· Avoid compiler warnings for ignoring the return from write()
(Chengwei Yang)
|