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-09-29 20:18:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/at-spi2-core (Old)
 and      /work/SRC/openSUSE:Factory/.at-spi2-core.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "at-spi2-core"

Wed Sep 29 20:18:00 2021 rev:94 rq:921664 version:2.42.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/at-spi2-core/at-spi2-core.changes        
2021-07-22 22:43:44.355170182 +0200
+++ /work/SRC/openSUSE:Factory/.at-spi2-core.new.1899/at-spi2-core.changes      
2021-09-29 20:18:37.390932640 +0200
@@ -1,0 +2,7 @@
+Sun Sep 19 19:09:54 UTC 2021 - Michael Gorse <mgo...@suse.com>
+
+- Update to version 2.42.0:
+  + Set X root property when Xwayland starts on demand.
+  + Several dbus introspection fixes.
+
+-------------------------------------------------------------------

Old:
----
  at-spi2-core-2.40.3.tar.xz

New:
----
  at-spi2-core-2.42.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ at-spi2-core.spec ++++++
--- /var/tmp/diff_new_pack.dQBTVC/_old  2021-09-29 20:18:38.046934126 +0200
+++ /var/tmp/diff_new_pack.dQBTVC/_new  2021-09-29 20:18:38.050934135 +0200
@@ -17,13 +17,13 @@
 
 
 Name:           at-spi2-core
-Version:        2.40.3
+Version:        2.42.0
 Release:        0
 Summary:        Assistive Technology Service Provider Interface - D-Bus based 
implementation
 License:        LGPL-2.1-or-later
 Group:          System/GUI/GNOME
 URL:            https://www.gnome.org/
-Source0:        
https://download.gnome.org/sources/at-spi2-core/2.40/%{name}-%{version}.tar.xz
+Source0:        
https://download.gnome.org/sources/at-spi2-core/2.42/%{name}-%{version}.tar.xz
 Source99:       baselibs.conf
 
 BuildRequires:  gtk-doc
@@ -103,6 +103,8 @@
 %files
 %license COPYING
 %{_libexecdir}/at-spi2/
+%dir %{_sysconfdir}/xdg/Xwayland-session.d
+%{_sysconfdir}/xdg/Xwayland-session.d/00-at-spi
 %{_sysconfdir}/xdg/autostart/at-spi-dbus-bus.desktop
 %{_userunitdir}/at-spi-dbus-bus.service
 %dir %{_datadir}/dbus-1/accessibility-services/

++++++ at-spi2-core-2.40.3.tar.xz -> at-spi2-core-2.42.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.40.3/NEWS new/at-spi2-core-2.42.0/NEWS
--- old/at-spi2-core-2.40.3/NEWS        2021-07-09 15:51:52.264186100 +0200
+++ new/at-spi2-core-2.42.0/NEWS        2021-09-19 00:20:35.306066500 +0200
@@ -1,3 +1,9 @@
+What's new in at-spi2-core 2.42.0:
+
+* Set X root property when Xwayland starts on demand.
+
+* Several dbus introspection fixes.
+
 What's new in at-spi2-core 2.40.3:
 
 * Use abstract sockets if libdbus is older than 1.12.0 (#37).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.40.3/bus/00-at-spi 
new/at-spi2-core-2.42.0/bus/00-at-spi
--- old/at-spi2-core-2.40.3/bus/00-at-spi       1970-01-01 01:00:00.000000000 
+0100
+++ new/at-spi2-core-2.42.0/bus/00-at-spi       2021-09-19 00:20:35.314066600 
+0200
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+# Copy a11y bus address from the DBus session bus to the X11 root property.
+# This is useful when Xwayland is started on demand and if the user has an
+# application with X11 access that does not have access to the session bus.
+
+ADDR="$( busctl call --user org.a11y.Bus /org/a11y/bus org.a11y.Bus GetAddress 
)" || exit 0
+ADDR="$( echo $ADDR | sed 's/s "\(.*\)"/\1/' )" || exit 0
+
+exec xprop -root -format AT_SPI_BUS 8s -set AT_SPI_BUS "$ADDR"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.40.3/bus/meson.build 
new/at-spi2-core-2.42.0/bus/meson.build
--- old/at-spi2-core-2.40.3/bus/meson.build     2021-07-09 15:51:52.300186400 
+0200
+++ new/at-spi2-core-2.42.0/bus/meson.build     2021-09-19 00:20:35.314066600 
+0200
@@ -12,6 +12,7 @@
 
 busconfig_dir = join_paths(atspi_datadir, 'defaults/at-spi2')
 session_dir = join_paths(atspi_sysconfdir, 'xdg/autostart')
+xwayland_session_dir = join_paths(atspi_sysconfdir, 'xdg/Xwayland-session.d')
 
 configure_file(input: 'accessibility.conf.in',
                output: 'accessibility.conf',
@@ -33,6 +34,13 @@
                configuration: libexec_conf,
                install_dir: systemd_user_dir)
 
+if x11_dep.found()
+  # Note: It is safe to always install it. However, we only need this on
+  #       systemd enabled machines where Xwayland may be started on-demand.
+  install_data('00-at-spi',
+               install_dir: xwayland_session_dir)
+endif
+
 launcher_args = [
              '-DSYSCONFDIR="@0@"'.format(atspi_sysconfdir),
              '-DDATADIR="@0@"'.format(atspi_datadir),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.40.3/meson.build 
new/at-spi2-core-2.42.0/meson.build
--- old/at-spi2-core-2.40.3/meson.build 2021-07-09 15:51:52.308186300 +0200
+++ new/at-spi2-core-2.42.0/meson.build 2021-09-19 00:20:35.314066600 +0200
@@ -1,5 +1,5 @@
 project('at-spi2-core', 'c',
-        version: '2.40.3',
+        version: '2.42.0',
         license: 'LGPLv2.1+',
         default_options: [
           'buildtype=debugoptimized',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.40.3/po/LINGUAS 
new/at-spi2-core-2.42.0/po/LINGUAS
--- old/at-spi2-core-2.40.3/po/LINGUAS  2021-07-09 15:51:52.312186200 +0200
+++ new/at-spi2-core-2.42.0/po/LINGUAS  2021-09-19 00:20:35.318066600 +0200
@@ -1,3 +1,4 @@
+ab
 an
 as
 ast
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.40.3/po/ab.po 
new/at-spi2-core-2.42.0/po/ab.po
--- old/at-spi2-core-2.40.3/po/ab.po    1970-01-01 01:00:00.000000000 +0100
+++ new/at-spi2-core-2.42.0/po/ab.po    2021-09-19 00:20:35.318066600 +0200
@@ -0,0 +1,28 @@
+# Abkhazian translation for at-spi2-core.
+# Copyright (C) 2011 at-spi2-core's COPYRIGHT HOLDER
+# This file is distributed under the same license as the at-spi2-core package.
+# Nart Tlisha <daniel.abz...@gmail.com>, 2021.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: at-spi2-core master\n"
+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=at-";
+"spi&keywords=I18N+L10N&component=general\n"
+"POT-Creation-Date: 2014-02-03 23:50+0000\n"
+"PO-Revision-Date: 2021-08-16 13:50+0000\n"
+"Last-Translator: Nart Tlisha <daniel.abz...@gmail.com>\n"
+"Language-Team: Abkhazian\n"
+"Language: ab\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.5.4\n"
+
+#: ../atspi/atspi-component.c:325 ../atspi/atspi-misc.c:1034
+#: ../atspi/atspi-value.c:111
+msgid "The application no longer exists"
+msgstr "?????????? ???????? ????????????"
+
+#: ../atspi/atspi-misc.c:1777
+msgid "Attempted synchronous call where prohibited"
+msgstr "???????????????????? ???????? ?????????????? ???????? ????????????"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.40.3/po/be.po 
new/at-spi2-core-2.42.0/po/be.po
--- old/at-spi2-core-2.40.3/po/be.po    2021-07-09 15:51:52.312186200 +0200
+++ new/at-spi2-core-2.42.0/po/be.po    2021-09-19 00:20:35.318066600 +0200
@@ -1,29 +1,31 @@
 # Yuras Shumovich <shumovi...@gmail.com>, 2017.
 msgid ""
 msgstr ""
-"Project-Id-Version: at-spi2-core.master\n"
-"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=at-";
-"spi&keywords=I18N+L10N&component=at-spi2-core\n"
-"POT-Creation-Date: 2017-03-13 21:58+0000\n"
-"PO-Revision-Date: 2017-03-26 18:30+0300\n"
+"Project-Id-Version: ab10e6d45488175674299c2d7fc854f6\n"
+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/at-spi2-core/issues\n";
+"POT-Creation-Date: 2020-12-28 16:53+0000\n"
+"PO-Revision-Date: 2021-06-15 12:46\n"
 "Last-Translator: Yuras Shumovich <shumovi...@gmail.com>\n"
-"Language-Team: Belarusian <i18n-bel-gn...@googlegroups.com>\n"
+"Language-Team: Belarusian\n"
 "Language: be\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || n%10>=5 && n%10<=9 || 
n%100>=11 && n%100<=14 ? 2 : 3);\n"
 "X-Generator: Poedit 1.8.11\n"
+"X-Crowdin-Project: ab10e6d45488175674299c2d7fc854f6\n"
+"X-Crowdin-Project-ID: 104\n"
+"X-Crowdin-Language: be\n"
+"X-Crowdin-File: /Localizations/Gnome/Gnome 
development/in/at-spi2-core.master.be.po\n"
+"X-Crowdin-File-ID: 2608\n"
 
-#: ../atspi/atspi-component.c:326 ../atspi/atspi-misc.c:1073
-#: ../atspi/atspi-value.c:111
+#: atspi/atspi-component.c:332 atspi/atspi-misc.c:1077 atspi/atspi-value.c:111
 msgid "The application no longer exists"
 msgstr "???????????????? ?????????? ???? ??????????"
 
-#: ../atspi/atspi-misc.c:1832
+#: atspi/atspi-misc.c:1855
 msgid "Attempted synchronous call where prohibited"
-msgstr "???????????? ?????????????? ?????????????????? ????????????, ?????? 
?????? ???????? ????????????????????"
+msgstr "???????????? ?????????????????????? ?????????????? ?? 
?????????????????????? ??????????"
 
 #~ msgid "AT-SPI: Unknown signature %s for RemoveAccessible"
 #~ msgstr "AT-SPI: ???????????????? ???????????? %s ?????? RemoveAccessible"
@@ -57,8 +59,7 @@
 #~ "AT-SPI: ?????? ?????????????????? %s ?? ???????????????????? %s 
?????????????? ??????????????; ???????????????? %s\n"
 
 #~ msgid "atspi_dbus_get_property: Wrong type: expected %s, got %c\n"
-#~ msgstr ""
-#~ "atspi_dbus_get_property: ?????????????????????? ??????: ?????????????? %s, 
???????????????? %c\n"
+#~ msgstr "atspi_dbus_get_property: ?????????????????????? ??????: 
?????????????? %s, ???????????????? %c\n"
 
 #~ msgid "AT-SPI: Unknown interface %s"
 #~ msgstr "AT-SPI: ???????????????? ?????????????????? %s"
@@ -77,3 +78,4 @@
 
 #~ msgid "Got invalid signature %s for signal %s from interface %s\n"
 #~ msgstr "???????????????? ?????????? ???????????? %s ?????? ?????????????? 
%s ???????????????????? %s\n"
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.40.3/xml/Collection.xml 
new/at-spi2-core-2.42.0/xml/Collection.xml
--- old/at-spi2-core-2.40.3/xml/Collection.xml  2021-07-09 15:51:52.340186600 
+0200
+++ new/at-spi2-core-2.42.0/xml/Collection.xml  2021-09-19 00:20:35.322066800 
+0200
@@ -3,7 +3,7 @@
 <interface name="org.a11y.atspi.Collection">
 
   <method name="GetMatches">
-    <arg direction="in" name="rule" type="(auuasuauusub)"/>
+    <arg direction="in" name="rule" type="(aiia{ss}iaiiasib)"/>
     <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiMatchRule"/>
     <arg direction="in" name="sortby" type="u"/>
     <arg direction="in" name="count" type="i"/>
@@ -15,7 +15,7 @@
   <method name="GetMatchesTo">
     <arg direction="in" name="current_object" type="o"/>
     <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
-    <arg direction="in" name="rule" type="(auuasuauusub)"/>
+    <arg direction="in" name="rule" type="(aiia{ss}iaiiasib)"/>
     <annotation name="org.qtproject.QtDBus.QtTypeName.In1" 
value="QSpiMatchRule"/>
     <arg direction="in" name="sortby" type="u"/>
     <arg direction="in" name="tree" type="u"/>
@@ -29,7 +29,7 @@
   <method name="GetMatchesFrom">
     <arg direction="in" name="current_object" type="o"/>
     <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
-    <arg direction="in" name="rule" type="(auuasuauusub)"/>
+    <arg direction="in" name="rule" type="(aiia{ss}iaiiasib)"/>
     <annotation name="org.qtproject.QtDBus.QtTypeName.In1" 
value="QSpiMatchRule"/>
     <arg direction="in" name="sortby" type="u"/>
     <arg direction="in" name="tree" type="u"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.40.3/xml/Component.xml 
new/at-spi2-core-2.42.0/xml/Component.xml
--- old/at-spi2-core-2.40.3/xml/Component.xml   2021-07-09 15:51:52.340186600 
+0200
+++ new/at-spi2-core-2.42.0/xml/Component.xml   2021-09-19 00:20:35.322066800 
+0200
@@ -74,12 +74,14 @@
 
   <method name="ScrollTo">
     <arg direction="in" name="type" type="u"/>
+    <arg direction="out" type="b"/>
   </method>
 
   <method name="ScrollToPoint">
     <arg direction="in" name="type" type="u"/>
     <arg direction="in" name="x" type="i"/>
     <arg direction="in" name="y" type="i"/>
+    <arg direction="out" type="b"/>
   </method>
 
 </interface>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.40.3/xml/Document.xml 
new/at-spi2-core-2.42.0/xml/Document.xml
--- old/at-spi2-core-2.40.3/xml/Document.xml    2021-07-09 15:51:52.340186600 
+0200
+++ new/at-spi2-core-2.42.0/xml/Document.xml    2021-09-19 00:20:35.322066800 
+0200
@@ -16,7 +16,7 @@
   </method>
 
   <method name="GetAttributes">
-    <arg direction="out" type="{ss}"/>
+    <arg direction="out" type="a{ss}"/>
     <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiAttributeSet"/>
   </method>
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.40.3/xml/Text.xml 
new/at-spi2-core-2.42.0/xml/Text.xml
--- old/at-spi2-core-2.40.3/xml/Text.xml        2021-07-09 15:51:52.344186500 
+0200
+++ new/at-spi2-core-2.42.0/xml/Text.xml        2021-09-19 00:20:35.326066700 
+0200
@@ -157,6 +157,7 @@
     <arg direction="in" name="startOffset" type="i"/>
     <arg direction="in" name="endOffset" type="i"/>
     <arg direction="in" name="type" type="u"/>
+    <arg direction="out" type="b"/>
   </method>
 
   <method name="ScrollSubstringToPoint">
@@ -165,6 +166,7 @@
     <arg direction="in" name="type" type="u"/>
     <arg direction="in" name="x" type="i"/>
     <arg direction="in" name="y" type="i"/>
+    <arg direction="out" type="b"/>
   </method>
 
 </interface>

Reply via email to