Accepting request 74970 from home:vuntz:branches:Base:System
Update to 1.5.4 OBS-URL: https://build.opensuse.org/request/show/74970 OBS-URL: https://build.opensuse.org/package/show/Base:System/dbus-1?expand=0&rev=59
This commit is contained in:
parent
b9f7e7277f
commit
ceda014e73
@ -1,3 +1,72 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 1 10:07:55 CEST 2011 - vuntz@opensuse.org
|
||||
|
||||
- Update to version 1.5.4:
|
||||
+ Security (local denial of service):
|
||||
- Byte-swap foreign-endian messages correctly, preventing a
|
||||
long-standing local DoS if foreign-endian messages are
|
||||
relayed through the dbus-daemon (fdo#38120, deb#629938, no
|
||||
CVE number yet)
|
||||
+ New things:
|
||||
- The constant to use for an infinite timeout now has a name,
|
||||
DBUS_TIMEOUT_INFINITE.
|
||||
- If GLib and DBus-GLib are already installed, more tests will be built,
|
||||
providing better coverage.(fdo#34570)
|
||||
+ Changes:
|
||||
- Consistently use atomic operations for the DBusConnection's
|
||||
refcount, fixing potential threading problems (fdo#38005)
|
||||
- Don't use -Wl,--gc-sections by default: in practice the size
|
||||
decrease is small (300KiB on x86-64) and it frequently
|
||||
doesn't work in unusual toolchains. (fdo#33466)
|
||||
- Use #!/bin/sh for run-with-tmp-session-bus.sh, making it work
|
||||
on *BSD (fdo#35880)
|
||||
- Use ln -fs to set up dbus for systemd, which should fix
|
||||
reinstallation when not using a DESTDIR (fdo#37870)
|
||||
- Windows-specific changes:
|
||||
. don't try to build dbus-daemon-launch-helper (fdo#37838)
|
||||
- Changes from version 1.5.2:
|
||||
+ Notes for distributors:
|
||||
- This version of D-Bus no longer uses -fPIE by default.
|
||||
+ Changes:
|
||||
+ D-Bus Specification v0.17
|
||||
. Reserve the extra characters used in signatures by GVariant
|
||||
(fdo#34529)
|
||||
. Define the ObjectManager interface (fdo#34869)
|
||||
+ Don't force -fPIE: distributions and libtool know better than
|
||||
we do whether it's desirable (fdo#16621, fdo#27215)
|
||||
+ Allow --disable-gc-sections, in case your toolchain offers
|
||||
the -ffunction-sections, -fdata-sections and
|
||||
-Wl,--gc-sections options but they're broken, as seen on
|
||||
Solaris (fdo#33466)
|
||||
+ Install dbus-daemon and dbus-daemon-launch-helper in a more
|
||||
normal way (fdo#14512)
|
||||
+ Ensure that maintainers upload documentation with the right
|
||||
permissions (fdo#36130)
|
||||
+ Don't force users of libdbus to be linked against
|
||||
-lpthread, -lrt (fdo#32827)
|
||||
+ Log system-bus activation information to syslog (fdo#35705)
|
||||
+ Log messages dropped due to quotas to syslog (fdo#35358)
|
||||
+ Make the nonce-tcp transport work on Unix (fdo#34569)
|
||||
+ On Unix, if /var/lib/dbus/machine-id cannot be read, try
|
||||
/etc/machine-id (fdo#35228)
|
||||
+ In the regression tests, don't report fds as "leaked" if they
|
||||
were open on startup (fdo#35173)
|
||||
+ Make dbus-monitor bail out if asked to monitor more than one
|
||||
bus, rather than silently using the last one (fdo#26548)
|
||||
+ Clarify documentation (fdo#35182)
|
||||
+ Clean up minor dead code and some incorrect error handling
|
||||
(fdo#33128, fdo#29881)
|
||||
+ Check that compiler options are supported before using them
|
||||
(fdo#19681)
|
||||
+ Windows:
|
||||
. Remove obsolete workaround for winioctl.h (fdo#35083)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 28 08:03:00 UTC 2011 - aj@suse.de
|
||||
|
||||
- Fix filelist to own a directory.
|
||||
- Do not package html files twice.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 18 14:04:24 UTC 2011 - coolo@novell.com
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package dbus-1-x11
|
||||
# spec file for package dbus-1-x11 (Version 1.4.1)
|
||||
#
|
||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -17,7 +17,6 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
|
||||
Name: dbus-1-x11
|
||||
BuildRequires: xorg-x11-devel
|
||||
Url: http://dbus.freedesktop.org/
|
||||
@ -28,8 +27,8 @@ Summary: D-Bus Message Bus System
|
||||
# COMMON1-BEGIN
|
||||
BuildRequires: doxygen libexpat-devel libzio pkg-config update-desktop-files
|
||||
BuildRequires: audit-devel
|
||||
Version: 1.5.0
|
||||
Release: 3
|
||||
Version: 1.5.4
|
||||
Release: 1
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f5a16340574738f5f6b463c9403acac020ec0ecce53ceaff0a7d4b568764ec17
|
||||
size 1848695
|
3
dbus-1.5.4.tar.gz
Normal file
3
dbus-1.5.4.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f8f452bed6f633a400b773c076d54fc1f5af527fe30acbe080b16ba781df1418
|
||||
size 1888291
|
@ -1,3 +1,66 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 1 10:07:55 CEST 2011 - vuntz@opensuse.org
|
||||
|
||||
- Update to version 1.5.4:
|
||||
+ Security (local denial of service):
|
||||
- Byte-swap foreign-endian messages correctly, preventing a
|
||||
long-standing local DoS if foreign-endian messages are
|
||||
relayed through the dbus-daemon (fdo#38120, deb#629938, no
|
||||
CVE number yet)
|
||||
+ New things:
|
||||
- The constant to use for an infinite timeout now has a name,
|
||||
DBUS_TIMEOUT_INFINITE.
|
||||
- If GLib and DBus-GLib are already installed, more tests will be built,
|
||||
providing better coverage.(fdo#34570)
|
||||
+ Changes:
|
||||
- Consistently use atomic operations for the DBusConnection's
|
||||
refcount, fixing potential threading problems (fdo#38005)
|
||||
- Don't use -Wl,--gc-sections by default: in practice the size
|
||||
decrease is small (300KiB on x86-64) and it frequently
|
||||
doesn't work in unusual toolchains. (fdo#33466)
|
||||
- Use #!/bin/sh for run-with-tmp-session-bus.sh, making it work
|
||||
on *BSD (fdo#35880)
|
||||
- Use ln -fs to set up dbus for systemd, which should fix
|
||||
reinstallation when not using a DESTDIR (fdo#37870)
|
||||
- Windows-specific changes:
|
||||
. don't try to build dbus-daemon-launch-helper (fdo#37838)
|
||||
- Changes from version 1.5.2:
|
||||
+ Notes for distributors:
|
||||
- This version of D-Bus no longer uses -fPIE by default.
|
||||
+ Changes:
|
||||
+ D-Bus Specification v0.17
|
||||
. Reserve the extra characters used in signatures by GVariant
|
||||
(fdo#34529)
|
||||
. Define the ObjectManager interface (fdo#34869)
|
||||
+ Don't force -fPIE: distributions and libtool know better than
|
||||
we do whether it's desirable (fdo#16621, fdo#27215)
|
||||
+ Allow --disable-gc-sections, in case your toolchain offers
|
||||
the -ffunction-sections, -fdata-sections and
|
||||
-Wl,--gc-sections options but they're broken, as seen on
|
||||
Solaris (fdo#33466)
|
||||
+ Install dbus-daemon and dbus-daemon-launch-helper in a more
|
||||
normal way (fdo#14512)
|
||||
+ Ensure that maintainers upload documentation with the right
|
||||
permissions (fdo#36130)
|
||||
+ Don't force users of libdbus to be linked against
|
||||
-lpthread, -lrt (fdo#32827)
|
||||
+ Log system-bus activation information to syslog (fdo#35705)
|
||||
+ Log messages dropped due to quotas to syslog (fdo#35358)
|
||||
+ Make the nonce-tcp transport work on Unix (fdo#34569)
|
||||
+ On Unix, if /var/lib/dbus/machine-id cannot be read, try
|
||||
/etc/machine-id (fdo#35228)
|
||||
+ In the regression tests, don't report fds as "leaked" if they
|
||||
were open on startup (fdo#35173)
|
||||
+ Make dbus-monitor bail out if asked to monitor more than one
|
||||
bus, rather than silently using the last one (fdo#26548)
|
||||
+ Clarify documentation (fdo#35182)
|
||||
+ Clean up minor dead code and some incorrect error handling
|
||||
(fdo#33128, fdo#29881)
|
||||
+ Check that compiler options are supported before using them
|
||||
(fdo#19681)
|
||||
+ Windows:
|
||||
. Remove obsolete workaround for winioctl.h (fdo#35083)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 28 08:03:00 UTC 2011 - aj@suse.de
|
||||
|
||||
|
@ -26,8 +26,8 @@ Summary: D-Bus Message Bus System
|
||||
# COMMON1-BEGIN
|
||||
BuildRequires: doxygen libexpat-devel libzio pkg-config update-desktop-files
|
||||
BuildRequires: audit-devel
|
||||
Version: 1.5.0
|
||||
Release: 5
|
||||
Version: 1.5.4
|
||||
Release: 1
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
|
Loading…
Reference in New Issue
Block a user