Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package at-spi2-core for openSUSE:Factory checked in at 2021-07-15 23:58:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/at-spi2-core (Old) and /work/SRC/openSUSE:Factory/.at-spi2-core.new.2625 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "at-spi2-core" Thu Jul 15 23:58:55 2021 rev:92 rq:906036 version:2.40.3 Changes: -------- --- /work/SRC/openSUSE:Factory/at-spi2-core/at-spi2-core.changes 2021-06-11 22:30:50.370147411 +0200 +++ /work/SRC/openSUSE:Factory/.at-spi2-core.new.2625/at-spi2-core.changes 2021-07-15 23:59:05.478131530 +0200 @@ -1,0 +2,6 @@ +Fri Jul 9 21:30:37 UTC 2021 - Ferdinand Thiessen <[email protected]> + +- Update to version 2.40.3 + + Bugfix: Use abstract sockets if libdbus is older than 1.12.0 + +------------------------------------------------------------------- Old: ---- at-spi2-core-2.40.2.tar.xz New: ---- at-spi2-core-2.40.3.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ at-spi2-core.spec ++++++ --- /var/tmp/diff_new_pack.wfLULk/_old 2021-07-15 23:59:06.106126480 +0200 +++ /var/tmp/diff_new_pack.wfLULk/_new 2021-07-15 23:59:06.106126480 +0200 @@ -17,7 +17,7 @@ Name: at-spi2-core -Version: 2.40.2 +Version: 2.40.3 Release: 0 Summary: Assistive Technology Service Provider Interface - D-Bus based implementation License: LGPL-2.1-or-later ++++++ at-spi2-core-2.40.2.tar.xz -> at-spi2-core-2.40.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.40.2/NEWS new/at-spi2-core-2.40.3/NEWS --- old/at-spi2-core-2.40.2/NEWS 2021-06-05 20:30:10.532779700 +0200 +++ new/at-spi2-core-2.40.3/NEWS 2021-07-09 15:51:52.264186100 +0200 @@ -1,3 +1,7 @@ +What's new in at-spi2-core 2.40.3: + +* Use abstract sockets if libdbus is older than 1.12.0 (#37). + What's new in at-spi2-core 2.40.2: * README: Remove outdated links. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.40.2/bus/accessibility.conf.in new/at-spi2-core-2.40.3/bus/accessibility.conf.in --- old/at-spi2-core-2.40.2/bus/accessibility.conf.in 2021-06-05 20:30:10.544779800 +0200 +++ new/at-spi2-core-2.40.3/bus/accessibility.conf.in 2021-07-09 15:51:52.300186400 +0200 @@ -6,7 +6,7 @@ <servicedir>@DATADIR@/dbus-1/accessibility-services</servicedir> <auth>EXTERNAL</auth> - <listen>unix:dir=/tmp</listen> + <listen>@SOCKET_ADDRESS@</listen> <policy context="default"> <!-- Allow root to connect --> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.40.2/bus/meson.build new/at-spi2-core-2.40.3/bus/meson.build --- old/at-spi2-core-2.40.2/bus/meson.build 2021-06-05 20:30:10.548779700 +0200 +++ new/at-spi2-core-2.40.3/bus/meson.build 2021-07-09 15:51:52.300186400 +0200 @@ -4,6 +4,12 @@ accessibility_conf = configuration_data() accessibility_conf.set('DATADIR', atspi_datadir) +if libdbus_dep.version().version_compare('>= 1.12.0') + accessibility_conf.set('SOCKET_ADDRESS', 'unix:dir=/tmp') +else + accessibility_conf.set('SOCKET_ADDRESS', 'unix:tmpdir=/tmp') +endif + busconfig_dir = join_paths(atspi_datadir, 'defaults/at-spi2') session_dir = join_paths(atspi_sysconfdir, 'xdg/autostart') diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.40.2/meson.build new/at-spi2-core-2.40.3/meson.build --- old/at-spi2-core-2.40.2/meson.build 2021-06-05 20:30:10.552779700 +0200 +++ new/at-spi2-core-2.40.3/meson.build 2021-07-09 15:51:52.308186300 +0200 @@ -1,5 +1,5 @@ project('at-spi2-core', 'c', - version: '2.40.2', + version: '2.40.3', license: 'LGPLv2.1+', default_options: [ 'buildtype=debugoptimized',
