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 2026-08-09 21:31:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/at-spi2-core (Old) and /work/SRC/openSUSE:Factory/.at-spi2-core.new.16738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "at-spi2-core" Sun Aug 9 21:31:46 2026 rev:128 rq:1369842 version:2.60.6 Changes: -------- --- /work/SRC/openSUSE:Factory/at-spi2-core/at-spi2-core.changes 2026-07-02 20:05:46.893762791 +0200 +++ /work/SRC/openSUSE:Factory/.at-spi2-core.new.16738/at-spi2-core.changes 2026-08-09 21:32:18.535982963 +0200 @@ -1,0 +2,9 @@ +Sun Aug 2 07:52:56 UTC 2026 - Bjørn Lie <[email protected]> + +- Update to version 2.60.6: + + atk-bridge: Attempt to fix a crash in + get_registered_event_listeners + + AtspiDevice: Avoid assigning 0 as a grab id + + Remove G_GNUC_CONST from *_get_type_declarations + +------------------------------------------------------------------- Old: ---- at-spi2-core-2.60.5.tar.xz New: ---- at-spi2-core-2.60.6.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ at-spi2-core.spec ++++++ --- /var/tmp/diff_new_pack.AX0rdG/_old 2026-08-09 21:32:19.164004445 +0200 +++ /var/tmp/diff_new_pack.AX0rdG/_new 2026-08-09 21:32:19.168004582 +0200 @@ -23,7 +23,7 @@ %define atspiconfdir %{?_distconfdir}%{!?_distconfdir:%{_sysconfdir}} Name: at-spi2-core -Version: 2.60.5 +Version: 2.60.6 Release: 0 Summary: Assistive Technology Service Provider Interface - D-Bus based implementation License: LGPL-2.1-or-later ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.AX0rdG/_old 2026-08-09 21:32:19.216006224 +0200 +++ /var/tmp/diff_new_pack.AX0rdG/_new 2026-08-09 21:32:19.224006498 +0200 @@ -1,6 +1,6 @@ -mtime: 1782635036 -commit: 090994a8cdeb250de67ea439811fe50ffb623eb0c1e0ca4f8e2c9d2e1180790d +mtime: 1785657245 +commit: 95c3aca3ba19c83013429728ccbd7be3f2dafffb9b92ad7d4688304870052066 url: https://src.opensuse.org/GNOME/at-spi2-core -revision: 090994a8cdeb250de67ea439811fe50ffb623eb0c1e0ca4f8e2c9d2e1180790d +revision: 95c3aca3ba19c83013429728ccbd7be3f2dafffb9b92ad7d4688304870052066 projectscmsync: https://src.opensuse.org/GNOME/_ObsPrj ++++++ _service ++++++ --- /var/tmp/diff_new_pack.AX0rdG/_old 2026-08-09 21:32:19.248007318 +0200 +++ /var/tmp/diff_new_pack.AX0rdG/_new 2026-08-09 21:32:19.252007455 +0200 @@ -3,7 +3,7 @@ <service name="obs_scm" mode="manual"> <param name="scm">git</param> <param name="url">https://gitlab.gnome.org/GNOME/at-spi2-core.git</param> - <param name="revision">2.60.5</param> + <param name="revision">2.60.6</param> <param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param> <param name="versionrewrite-pattern">(.*)\+0</param> <param name="versionrewrite-replacement">\1</param> ++++++ at-spi2-core-2.60.5.tar.xz -> at-spi2-core-2.60.6.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.60.5/NEWS new/at-spi2-core-2.60.6/NEWS --- old/at-spi2-core-2.60.5/NEWS 2026-06-27 16:36:14.000000000 +0200 +++ new/at-spi2-core-2.60.6/NEWS 2026-07-31 20:32:41.000000000 +0200 @@ -1,3 +1,11 @@ +What's new in at-spi2-core 2.60.6: + +* atk-bridge: Attempt to fix a crash in get_registered_event_listeners + +* AtspiDevice: Avoid assigning 0 as a grab id + +* Remove G_GNUC_CONST from *_get_type_declarations + What's new in at-spi2-core 2.60.5: * Fix a possible crash in atk_bridge_adaptor_cleanup. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.60.5/atk-adaptor/bridge.c new/at-spi2-core-2.60.6/atk-adaptor/bridge.c --- old/at-spi2-core-2.60.5/atk-adaptor/bridge.c 2026-06-27 16:36:14.000000000 +0200 +++ new/at-spi2-core-2.60.6/atk-adaptor/bridge.c 2026-07-31 20:32:41.000000000 +0200 @@ -341,6 +341,8 @@ DBusMessage *reply; SpiBridge *app = user_data; + app->register_pending = NULL; + reply = dbus_pending_call_steal_reply (pending); dbus_pending_call_unref (pending); @@ -412,6 +414,7 @@ return FALSE; } + app->register_pending = pending; dbus_pending_call_set_notify (pending, register_reply, app, NULL); if (message) @@ -1124,6 +1127,12 @@ dbus_error_free (&error); } + if (spi_global_app_data->register_pending) + { + dbus_pending_call_cancel (spi_global_app_data->register_pending); + spi_global_app_data->register_pending = NULL; + } + dbus_connection_close (spi_global_app_data->bus); dbus_connection_unref (spi_global_app_data->bus); spi_global_app_data->bus = NULL; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.60.5/atk-adaptor/bridge.h new/at-spi2-core-2.60.6/atk-adaptor/bridge.h --- old/at-spi2-core-2.60.5/atk-adaptor/bridge.h 2026-06-27 16:36:14.000000000 +0200 +++ new/at-spi2-core-2.60.6/atk-adaptor/bridge.h 2026-07-31 20:32:41.000000000 +0200 @@ -79,6 +79,7 @@ GDBusConnection *session_bus; guint name_owner_changed_subscription_id; + DBusPendingCall *register_pending; }; extern SpiBridge *spi_global_app_data; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.60.5/atspi/atspi-device.c new/at-spi2-core-2.60.6/atspi/atspi-device.c --- old/at-spi2-core-2.60.5/atspi/atspi-device.c 2026-06-27 16:36:14.000000000 +0200 +++ new/at-spi2-core-2.60.6/atspi/atspi-device.c 2026-07-31 20:32:41.000000000 +0200 @@ -331,6 +331,9 @@ AtspiDevicePrivate *priv = atspi_device_get_instance_private (device); GSList *l; + if (id == 0) + return TRUE; + for (l = priv->key_watchers; l; l = l->next) { AtspiKeyGrab *grab = l->data; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.60.5/atspi/atspi-enum-types.h.template new/at-spi2-core-2.60.6/atspi/atspi-enum-types.h.template --- old/at-spi2-core-2.60.5/atspi/atspi-enum-types.h.template 2026-06-27 16:36:14.000000000 +0200 +++ new/at-spi2-core-2.60.6/atspi/atspi-enum-types.h.template 2026-07-31 20:32:41.000000000 +0200 @@ -15,7 +15,7 @@ /*** BEGIN enumeration-production ***/ #define ATSPI_TYPE_@ENUMSHORT@ (@enum_name@_get_type()) -GType @enum_name@_get_type (void) G_GNUC_CONST; +GType @enum_name@_get_type (void); /*** END enumeration-production ***/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.60.5/meson.build new/at-spi2-core-2.60.6/meson.build --- old/at-spi2-core-2.60.5/meson.build 2026-06-27 16:36:14.000000000 +0200 +++ new/at-spi2-core-2.60.6/meson.build 2026-07-31 20:32:41.000000000 +0200 @@ -1,5 +1,5 @@ project('at-spi2-core', 'c', - version: '2.60.5', + version: '2.60.6', license: 'LGPLv2.1+', default_options: [ 'buildtype=debugoptimized', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.60.5/po/[email protected] new/at-spi2-core-2.60.6/po/[email protected] --- old/at-spi2-core-2.60.5/po/[email protected] 2026-06-27 16:36:14.000000000 +0200 +++ new/at-spi2-core-2.60.6/po/[email protected] 2026-07-31 20:32:41.000000000 +0200 @@ -12,823 +12,829 @@ # Gil Forcada <[email protected]>, 2011. # Jordi Serratosa <[email protected]>, 2012. # -#, fuzzy msgid "" msgstr "" -"#-#-#-#-# [email protected] (at-spi2-core master) #-#-#-#-#\n" -"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-06-27 21:34+0000\n" -"PO-Revision-Date: 2014-03-15 21:31+0100\n" -"Last-Translator: Xavi Ivars <[email protected]>\n" -"Language-Team: Catalan <[email protected]>\n" -"Language: ca-valencia\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"#-#-#-#-# [email protected] (atk 1.6.0) #-#-#-#-#\n" "Project-Id-Version: atk 1.6.0\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=atk&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-09-11 09:07+0000\n" -"PO-Revision-Date: 2014-03-21 05:44+0100\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/at-spi2-core/issues/\n" +"POT-Creation-Date: 2026-06-09 18:47+0000\n" +"PO-Revision-Date: 2026-07-17 21:56+0000\n" "Last-Translator: Xavi Ivars <[email protected]>\n" "Language-Team: català; valencià <<[email protected]>>\n" -"Language: ca-valencia\n" +"Language: ca@valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Minairó 0.1.0\n" -#: atspi/atspi-component.c:326 atspi/atspi-misc.c:1073 atspi/atspi-value.c:111 -msgid "The application no longer exists" -msgstr "L'aplicació ja no existeix" - -#: atspi/atspi-misc.c:1843 -msgid "Attempted synchronous call where prohibited" -msgstr "S'ha intentat una crida síncrona on és prohibit" - -#: atk/atkhyperlink.c:126 +#: atk/atkhyperlink.c:127 msgid "Selected Link" msgstr "Enllaç seleccionat" -#: atk/atkhyperlink.c:127 +#: atk/atkhyperlink.c:128 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Especifica si l'objecte AtkHyperlink és seleccionat" -#: atk/atkhyperlink.c:133 +#: atk/atkhyperlink.c:134 msgid "Number of Anchors" msgstr "Nombre d'àncores" -#: atk/atkhyperlink.c:134 +#: atk/atkhyperlink.c:135 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "El nombre d'àncores associades amb l'objecte AtkHyperlink" -#: atk/atkhyperlink.c:142 +#: atk/atkhyperlink.c:143 msgid "End index" msgstr "Final de l'índex" -#: atk/atkhyperlink.c:143 +#: atk/atkhyperlink.c:144 msgid "The end index of the AtkHyperlink object" msgstr "El final de l'índex de l'objecte AtkHyperlink" -#: atk/atkhyperlink.c:151 +#: atk/atkhyperlink.c:152 msgid "Start index" msgstr "Inici de l'índex" -#: atk/atkhyperlink.c:152 +#: atk/atkhyperlink.c:153 msgid "The start index of the AtkHyperlink object" msgstr "L'inici de l'índex de l'objecte AtkHyperlink" -#: atk/atkobject.c:97 +#: atk/atkobject.c:273 +msgid "Accessible Name" +msgstr "Nom accessible" + +#: atk/atkobject.c:274 +msgid "Object instance’s name formatted for assistive technology access" +msgstr "" +"Nom de la instància de l'objecte formatat per a l'accés de les tecnologies " +"assistives" + +#: atk/atkobject.c:280 +msgid "Accessible Description" +msgstr "Descripció accessible" + +#: atk/atkobject.c:281 +msgid "Description of an object, formatted for assistive technology access" +msgstr "" +"Descripció d'un objecte, formatat per a l'accés de les tecnologies assistives" + +#: atk/atkobject.c:287 +msgid "Accessible Parent" +msgstr "Pare accessible" + +#: atk/atkobject.c:288 +msgid "Parent of the current accessible as returned by atk_object_get_parent()" +msgstr "Pare de l'accessible actual com el retorna l'«atk_object_get_parent()»" + +#: atk/atkobject.c:304 +msgid "Accessible Value" +msgstr "Valor accessible" + +#: atk/atkobject.c:305 +msgid "Is used to notify that the value has changed" +msgstr "S'utilitza per notificar que el valor ha canviat" + +#: atk/atkobject.c:313 +msgid "Accessible Role" +msgstr "Rol accessible" + +#: atk/atkobject.c:314 +msgid "The accessible role of this object" +msgstr "El rol accessible d'este objecte" + +#: atk/atkobject.c:321 +msgid "Accessible Layer" +msgstr "Capa accessible" + +#: atk/atkobject.c:322 +msgid "The accessible layer of this object" +msgstr "La capa accessible d'este objecte" + +#: atk/atkobject.c:330 +msgid "Accessible MDI Value" +msgstr "Valor MDI accessible" + +#: atk/atkobject.c:331 +msgid "The accessible MDI value of this object" +msgstr "El valor MDI accessible d'este objecte" + +#: atk/atkobject.c:347 +msgid "Accessible Table Caption" +msgstr "Títol de la taula accessible" + +#: atk/atkobject.c:348 +msgid "" +"Is used to notify that the table caption has changed; this property should " +"not be used. accessible-table-caption-object should be used instead" +msgstr "" +"S'utilitza per notificar que el títol de la taula ha canviat; esta propietat " +"no s'ha d'utilitzar. S'ha d'utilitzar accessible-table-caption-object en el " +"seu lloc" + +#: atk/atkobject.c:362 +msgid "Accessible Table Column Header" +msgstr "Capçalera de columna de taula accessible" + +#: atk/atkobject.c:363 +msgid "Is used to notify that the table column header has changed" +msgstr "" +"S'utilitza per notificar que la capçalera de la columna de la taula ha " +"canviat" + +#: atk/atkobject.c:378 +msgid "Accessible Table Column Description" +msgstr "Descripció de la columna de la taula accessible" + +#: atk/atkobject.c:379 +msgid "Is used to notify that the table column description has changed" +msgstr "" +"S'utilitza per notificar que la descripció de la columna de la taula ha " +"canviat" + +#: atk/atkobject.c:394 +msgid "Accessible Table Row Header" +msgstr "Capçalera de la fila de la taula accessible" + +#: atk/atkobject.c:395 +msgid "Is used to notify that the table row header has changed" +msgstr "" +"S'utilitza per notificar que la capçalera de la fila de la taula ha canviat" + +#: atk/atkobject.c:409 +msgid "Accessible Table Row Description" +msgstr "Descripció de la fila de la taula accessible" + +#: atk/atkobject.c:410 +msgid "Is used to notify that the table row description has changed" +msgstr "" +"S'utilitza per notificar que la descripció de la fila de la taula ha canviat" + +#: atk/atkobject.c:416 +msgid "Accessible Table Summary" +msgstr "Resum de la taula accessible" + +#: atk/atkobject.c:417 +msgid "Is used to notify that the table summary has changed" +msgstr "S'utilitza per notificar que el resum de la taula ha canviat" + +#: atk/atkobject.c:423 +msgid "Accessible Table Caption Object" +msgstr "Objecte de títol de taula accessible" + +#: atk/atkobject.c:424 +msgid "Is used to notify that the table caption has changed" +msgstr "S'utilitza per notificar que el títol de la taula ha canviat" + +#: atk/atkobject.c:430 +msgid "Number of Accessible Hypertext Links" +msgstr "Nombre d'enllaços d'hipertext accessibles" + +#: atk/atkobject.c:431 +msgid "The number of links which the current AtkHypertext has" +msgstr "El nombre d'enllaços que té l'AtkHypertext actual" + +#: atk/atkobject.c:440 +msgid "Accessible ID" +msgstr "Identificador accessible" + +#: atk/atkobject.c:441 +msgid "ID for the accessible; useful for automated testing" +msgstr "Identificador de l'accessible; útil per a les proves automàtiques" + +#: atk/atkobject.c:447 +msgid "Help text" +msgstr "Text d'ajuda" + +#: atk/atkobject.c:448 +msgid "Help text associated with the accessible" +msgstr "Text d'ajuda associat amb l'accessible" + +#. Translators: This string describes a range within value-related +#. * widgets such as a password-strength meter. Note that what such a +#. * widget presents is controlled by application developers. Thus +#. * assistive technologies such as screen readers are expected to +#. * present this string alone or as a token in a list. +#. +#: atk/atkvalue.c:193 +msgid "very weak" +msgstr "molt dèbil" + +#. Translators: This string describes a range within value-related +#. * widgets such as a password-strength meter. Note that what such a +#. * widget presents is controlled by application developers. Thus +#. * assistive technologies such as screen readers are expected to +#. * present this string alone or as a token in a list. +#. +#: atk/atkvalue.c:200 +msgid "weak" +msgstr "dèbil" + +#. Translators: This string describes a range within value-related +#. * widgets such as a password-strength meter. Note that what such a +#. * widget presents is controlled by application developers. Thus +#. * assistive technologies such as screen readers are expected to +#. * present this string alone or as a token in a list. +#. +#: atk/atkvalue.c:207 +msgid "acceptable" +msgstr "acceptable" + +#. Translators: This string describes a range within value-related +#. * widgets such as a password-strength meter. Note that what such a +#. * widget presents is controlled by application developers. Thus +#. * assistive technologies such as screen readers are expected to +#. * present this string alone or as a token in a list. +#. +#: atk/atkvalue.c:214 +msgid "strong" +msgstr "fort" + +#. Translators: This string describes a range within value-related +#. * widgets such as a password-strength meter. Note that what such a +#. * widget presents is controlled by application developers. Thus +#. * assistive technologies such as screen readers are expected to +#. * present this string alone or as a token in a list. +#. +#: atk/atkvalue.c:221 +msgid "very strong" +msgstr "molt fort" + +#. Translators: This string describes a range within value-related +#. * widgets such as a volume slider. Note that what such a widget +#. * presents (e.g. temperature, volume, price) is controlled by +#. * application developers. Thus assistive technologies such as screen +#. * readers are expected to present this string alone or as a token in +#. * a list. +#. +#: atk/atkvalue.c:229 +msgid "very low" +msgstr "molt baix" + +#. Translators: This string describes a range within value-related +#. * widgets such as a volume slider. Note that what such a widget +#. * presents (e.g. temperature, volume, price) is controlled by +#. * application developers. Thus assistive technologies such as screen +#. * readers are expected to present this string alone or as a token in +#. * a list. +#. +#: atk/atkvalue.c:237 +msgid "medium" +msgstr "mitjà" + +#. Translators: This string describes a range within value-related +#. * widgets such as a volume slider. Note that what such a widget +#. * presents (e.g. temperature, volume, price) is controlled by +#. * application developers. Thus assistive technologies such as screen +#. * readers are expected to present this string alone or as a token in +#. * a list. +#. +#: atk/atkvalue.c:245 +msgid "high" +msgstr "alt" + +#. Translators: This string describes a range within value-related +#. * widgets such as a volume slider. Note that what such a widget +#. * presents (e.g. temperature, volume, price) is controlled by +#. * application developers. Thus assistive technologies such as screen +#. * readers are expected to present this string alone or as a token in +#. * a list. +#. +#: atk/atkvalue.c:253 +msgid "very high" +msgstr "molt alt" + +#. Translators: This string describes a range within value-related +#. * widgets such as a hard drive usage. Note that what such a widget +#. * presents (e.g. hard drive usage, network traffic) is controlled by +#. * application developers. Thus assistive technologies such as screen +#. * readers are expected to present this string alone or as a token in +#. * a list. +#. +#: atk/atkvalue.c:261 +msgid "very bad" +msgstr "molt dolent" + +#. Translators: This string describes a range within value-related +#. * widgets such as a hard drive usage. Note that what such a widget +#. * presents (e.g. hard drive usage, network traffic) is controlled by +#. * application developers. Thus assistive technologies such as screen +#. * readers are expected to present this string alone or as a token in +#. * a list. +#. +#: atk/atkvalue.c:269 +msgid "bad" +msgstr "dolent" + +#. Translators: This string describes a range within value-related +#. * widgets such as a hard drive usage. Note that what such a widget +#. * presents (e.g. hard drive usage, network traffic) is controlled by +#. * application developers. Thus assistive technologies such as screen +#. * readers are expected to present this string alone or as a token in +#. * a list. +#. +#: atk/atkvalue.c:277 +msgid "good" +msgstr "bo" + +#. Translators: This string describes a range within value-related +#. * widgets such as a hard drive usage. Note that what such a widget +#. * presents (e.g. hard drive usage, network traffic) is controlled by +#. * application developers. Thus assistive technologies such as screen +#. * readers are expected to present this string alone or as a token in +#. * a list. +#. +#: atk/atkvalue.c:285 +msgid "very good" +msgstr "molt bo" + +#. Translators: This string describes a range within value-related +#. * widgets such as a hard drive usage. Note that what such a widget +#. * presents (e.g. hard drive usage, network traffic) is controlled by +#. * application developers. Thus assistive technologies such as screen +#. * readers are expected to present this string alone or as a token in +#. * a list. +#. +#: atk/atkvalue.c:293 +msgid "best" +msgstr "el millor" + +#: atspi/atspi-component.c:341 atspi/atspi-misc.c:1232 atspi/atspi-value.c:123 +msgid "The application no longer exists" +msgstr "L'aplicació ja no existeix" + +#: atspi/atspi-misc.c:51 msgid "invalid" msgstr "no vàlid" -#: atk/atkobject.c:98 +#: atspi/atspi-misc.c:52 msgid "accelerator label" msgstr "etiqueta d'accelerador" -#: atk/atkobject.c:99 +#: atspi/atspi-misc.c:53 msgid "alert" msgstr "alerta" -#: atk/atkobject.c:100 +#: atspi/atspi-misc.c:54 msgid "animation" msgstr "animació" -#: atk/atkobject.c:101 +#: atspi/atspi-misc.c:55 msgid "arrow" msgstr "fletxa" -#: atk/atkobject.c:102 +#: atspi/atspi-misc.c:56 msgid "calendar" msgstr "calendari" -#: atk/atkobject.c:103 +#: atspi/atspi-misc.c:57 msgid "canvas" msgstr "llenç" -#: atk/atkobject.c:104 +#: atspi/atspi-misc.c:58 msgid "check box" msgstr "casella de selecció" -#: atk/atkobject.c:105 +#: atspi/atspi-misc.c:59 msgid "check menu item" msgstr "element de menú de verificació" -#: atk/atkobject.c:106 +#: atspi/atspi-misc.c:60 msgid "color chooser" msgstr "selector de color" -#: atk/atkobject.c:107 +#: atspi/atspi-misc.c:61 msgid "column header" msgstr "capçalera de columna" -#: atk/atkobject.c:108 +#: atspi/atspi-misc.c:62 msgid "combo box" msgstr "quadre combinat" -#: atk/atkobject.c:109 +#: atspi/atspi-misc.c:63 msgid "dateeditor" msgstr "editor de data" -#: atk/atkobject.c:110 +#: atspi/atspi-misc.c:64 msgid "desktop icon" msgstr "icona d'escriptori" -#: atk/atkobject.c:111 +#: atspi/atspi-misc.c:65 msgid "desktop frame" msgstr "marc d'escriptori" -#: atk/atkobject.c:112 +#: atspi/atspi-misc.c:66 msgid "dial" msgstr "disc selector" -#: atk/atkobject.c:113 +#: atspi/atspi-misc.c:67 msgid "dialog" msgstr "diàleg" -#: atk/atkobject.c:114 +#: atspi/atspi-misc.c:68 msgid "directory pane" msgstr "quadre de directori" -#: atk/atkobject.c:115 +#: atspi/atspi-misc.c:69 msgid "drawing area" msgstr "àrea de dibuix" -#: atk/atkobject.c:116 +#: atspi/atspi-misc.c:70 msgid "file chooser" msgstr "selector de fitxers" -#: atk/atkobject.c:117 +#: atspi/atspi-misc.c:71 msgid "filler" msgstr "farciment" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:119 +#: atspi/atspi-misc.c:73 msgid "fontchooser" msgstr "selector de tipus de lletra" -#: atk/atkobject.c:120 +#: atspi/atspi-misc.c:74 msgid "frame" msgstr "marc" -#: atk/atkobject.c:121 +#: atspi/atspi-misc.c:75 msgid "glass pane" msgstr "quadre transparent" -#: atk/atkobject.c:122 +#: atspi/atspi-misc.c:76 msgid "html container" msgstr "contenidor d'html" -#: atk/atkobject.c:123 +#: atspi/atspi-misc.c:77 msgid "icon" msgstr "icona" -#: atk/atkobject.c:124 +#: atspi/atspi-misc.c:78 msgid "image" msgstr "imatge" -#: atk/atkobject.c:125 +#: atspi/atspi-misc.c:79 msgid "internal frame" msgstr "marc intern" -#: atk/atkobject.c:126 +#: atspi/atspi-misc.c:80 msgid "label" msgstr "etiqueta" -#: atk/atkobject.c:127 +#: atspi/atspi-misc.c:81 msgid "layered pane" msgstr "quadre superposat" -#: atk/atkobject.c:128 +#: atspi/atspi-misc.c:82 msgid "list" msgstr "llista" -#: atk/atkobject.c:129 +#: atspi/atspi-misc.c:83 msgid "list item" msgstr "element de llista" -#: atk/atkobject.c:130 +#: atspi/atspi-misc.c:84 msgid "menu" msgstr "menú" -#: atk/atkobject.c:131 +#: atspi/atspi-misc.c:85 msgid "menu bar" msgstr "barra de menú" -#: atk/atkobject.c:132 +#: atspi/atspi-misc.c:86 +msgid "menu button" +msgstr "botó de menú" + +#: atspi/atspi-misc.c:87 msgid "menu item" msgstr "element de menú" -#: atk/atkobject.c:133 +#: atspi/atspi-misc.c:88 msgid "option pane" msgstr "subfinestra d'opcions" -#: atk/atkobject.c:134 +#: atspi/atspi-misc.c:89 msgid "page tab" msgstr "pestanya de pàgina" -#: atk/atkobject.c:135 +#: atspi/atspi-misc.c:90 msgid "page tab list" msgstr "llista de pestanyes de pàgina" -#: atk/atkobject.c:136 +#: atspi/atspi-misc.c:91 msgid "panel" msgstr "quadre" -#: atk/atkobject.c:137 +#: atspi/atspi-misc.c:92 msgid "password text" msgstr "text de contrasenya" -#: atk/atkobject.c:138 +#: atspi/atspi-misc.c:93 msgid "popup menu" msgstr "menú emergent" -#: atk/atkobject.c:139 +#: atspi/atspi-misc.c:94 msgid "progress bar" msgstr "barra de progrés" -#: atk/atkobject.c:140 -msgid "push button" -msgstr "botó de pulsació" +#: atspi/atspi-misc.c:95 +msgid "button" +msgstr "botó" -#: atk/atkobject.c:141 +#: atspi/atspi-misc.c:96 msgid "radio button" msgstr "botó radial" -#: atk/atkobject.c:142 +#: atspi/atspi-misc.c:97 msgid "radio menu item" msgstr "element de menú radial" -#: atk/atkobject.c:143 +#: atspi/atspi-misc.c:98 msgid "root pane" msgstr "quadre arrel" -#: atk/atkobject.c:144 +#: atspi/atspi-misc.c:99 msgid "row header" msgstr "capçalera de fila" -#: atk/atkobject.c:145 +#: atspi/atspi-misc.c:100 msgid "scroll bar" msgstr "barra de desplaçament" -#: atk/atkobject.c:146 +#: atspi/atspi-misc.c:101 msgid "scroll pane" msgstr "subfinestra de desplaçament" -#: atk/atkobject.c:147 +#: atspi/atspi-misc.c:102 msgid "separator" msgstr "separador" -#: atk/atkobject.c:148 +#: atspi/atspi-misc.c:103 msgid "slider" msgstr "desplaçador" -#: atk/atkobject.c:149 +#: atspi/atspi-misc.c:104 msgid "split pane" msgstr "subfinestra partida" -#: atk/atkobject.c:150 +#: atspi/atspi-misc.c:105 msgid "spin button" msgstr "botó giratori" -#: atk/atkobject.c:151 +#: atspi/atspi-misc.c:106 msgid "statusbar" msgstr "barra d'estat" -#: atk/atkobject.c:152 +#: atspi/atspi-misc.c:107 +msgid "switch" +msgstr "commutador" + +#: atspi/atspi-misc.c:108 msgid "table" msgstr "taula" -#: atk/atkobject.c:153 +#: atspi/atspi-misc.c:109 msgid "table cell" msgstr "cel·la de taula" -#: atk/atkobject.c:154 +#: atspi/atspi-misc.c:110 msgid "table column header" msgstr "capçalera de columna de taula" -#: atk/atkobject.c:155 +#: atspi/atspi-misc.c:111 msgid "table row header" msgstr "capçalera de fila de taula" -#: atk/atkobject.c:156 +#: atspi/atspi-misc.c:112 msgid "tear off menu item" msgstr "element de menú desacoblable" -#: atk/atkobject.c:157 +#: atspi/atspi-misc.c:113 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:158 +#: atspi/atspi-misc.c:114 msgid "text" msgstr "text" -#: atk/atkobject.c:159 +#: atspi/atspi-misc.c:115 msgid "toggle button" msgstr "botó de selecció" -#: atk/atkobject.c:160 +#: atspi/atspi-misc.c:116 msgid "tool bar" msgstr "barra d'eines" -#: atk/atkobject.c:161 +#: atspi/atspi-misc.c:117 msgid "tool tip" msgstr "consell" -#: atk/atkobject.c:162 +#: atspi/atspi-misc.c:118 msgid "tree" msgstr "arbre" -#: atk/atkobject.c:163 +#: atspi/atspi-misc.c:119 msgid "tree table" msgstr "taula d'arbre" -#: atk/atkobject.c:164 +#: atspi/atspi-misc.c:120 msgid "unknown" msgstr "desconegut" -#: atk/atkobject.c:165 +#: atspi/atspi-misc.c:121 msgid "viewport" msgstr "subàrea" -#: atk/atkobject.c:166 +#: atspi/atspi-misc.c:122 msgid "window" msgstr "finestra" -#: atk/atkobject.c:167 +#: atspi/atspi-misc.c:123 msgid "header" msgstr "capçalera" -#: atk/atkobject.c:168 +#: atspi/atspi-misc.c:124 msgid "footer" msgstr "peu" -#: atk/atkobject.c:169 +#: atspi/atspi-misc.c:125 msgid "paragraph" msgstr "paràgraf" -#: atk/atkobject.c:170 +#: atspi/atspi-misc.c:126 msgid "ruler" msgstr "regle" -#: atk/atkobject.c:171 +#: atspi/atspi-misc.c:127 msgid "application" msgstr "aplicació" -#: atk/atkobject.c:172 +#: atspi/atspi-misc.c:128 msgid "autocomplete" msgstr "completa automàticament" -#: atk/atkobject.c:173 +#: atspi/atspi-misc.c:129 msgid "edit bar" msgstr "edita la barra" -#: atk/atkobject.c:174 +#: atspi/atspi-misc.c:130 msgid "embedded component" msgstr "component incrustat" -#: atk/atkobject.c:175 +#: atspi/atspi-misc.c:131 msgid "entry" msgstr "entrada" -#: atk/atkobject.c:176 +#: atspi/atspi-misc.c:132 msgid "chart" msgstr "diagrama" -#: atk/atkobject.c:177 +#: atspi/atspi-misc.c:133 msgid "caption" msgstr "títol" -#: atk/atkobject.c:178 +#: atspi/atspi-misc.c:134 msgid "document frame" msgstr "marc de document" -#: atk/atkobject.c:179 +#: atspi/atspi-misc.c:135 msgid "heading" msgstr "encapçalament" -#: atk/atkobject.c:180 +#: atspi/atspi-misc.c:136 msgid "page" msgstr "pàgina" -#: atk/atkobject.c:181 +#: atspi/atspi-misc.c:137 msgid "section" msgstr "secció" -#: atk/atkobject.c:182 +#: atspi/atspi-misc.c:138 msgid "redundant object" msgstr "objecte redundant" -#: atk/atkobject.c:183 +#: atspi/atspi-misc.c:139 msgid "form" msgstr "formulari" -#: atk/atkobject.c:184 +#: atspi/atspi-misc.c:140 msgid "link" msgstr "enllaç" -#: atk/atkobject.c:185 +#: atspi/atspi-misc.c:141 msgid "input method window" msgstr "finestra del mètode d'entrada" -#: atk/atkobject.c:186 +#: atspi/atspi-misc.c:142 msgid "table row" msgstr "fila de taula" -#: atk/atkobject.c:187 +#: atspi/atspi-misc.c:143 msgid "tree item" msgstr "element d'arbre" -#: atk/atkobject.c:188 +#: atspi/atspi-misc.c:144 msgid "document spreadsheet" msgstr "document de full de càlcul" -#: atk/atkobject.c:189 +#: atspi/atspi-misc.c:145 msgid "document presentation" msgstr "document de presentació" -#: atk/atkobject.c:190 +#: atspi/atspi-misc.c:146 msgid "document text" msgstr "document de text" -#: atk/atkobject.c:191 +#: atspi/atspi-misc.c:147 msgid "document web" msgstr "document web" -#: atk/atkobject.c:192 +#: atspi/atspi-misc.c:148 msgid "document email" msgstr "document de correu electrònic" -#: atk/atkobject.c:193 +#: atspi/atspi-misc.c:149 msgid "comment" msgstr "comentari" -#: atk/atkobject.c:194 +#: atspi/atspi-misc.c:150 msgid "list box" msgstr "caixa de llista" -#: atk/atkobject.c:195 +#: atspi/atspi-misc.c:151 msgid "grouping" msgstr "agrupació" -#: atk/atkobject.c:196 +#: atspi/atspi-misc.c:152 msgid "image map" msgstr "mapa d'imatge" -#: atk/atkobject.c:197 +#: atspi/atspi-misc.c:153 msgid "notification" msgstr "notificació" -#: atk/atkobject.c:198 +#: atspi/atspi-misc.c:154 msgid "info bar" msgstr "barra d'informació" -#: atk/atkobject.c:199 +#: atspi/atspi-misc.c:155 msgid "level bar" msgstr "barra de nivell" -#: atk/atkobject.c:200 +#: atspi/atspi-misc.c:156 msgid "title bar" msgstr "barra de títol" -#: atk/atkobject.c:201 +#: atspi/atspi-misc.c:157 msgid "block quote" msgstr "cita" -#: atk/atkobject.c:202 +#: atspi/atspi-misc.c:158 msgid "audio" msgstr "àudio" -#: atk/atkobject.c:203 +#: atspi/atspi-misc.c:159 msgid "video" msgstr "vídeo" -#: atk/atkobject.c:204 +#: atspi/atspi-misc.c:160 msgid "definition" msgstr "definició" -#: atk/atkobject.c:205 +#: atspi/atspi-misc.c:161 msgid "article" msgstr "article" -#: atk/atkobject.c:206 +#: atspi/atspi-misc.c:162 msgid "landmark" msgstr "marca important" -#: atk/atkobject.c:207 +#: atspi/atspi-misc.c:163 msgid "log" msgstr "registre" -#: atk/atkobject.c:208 +#: atspi/atspi-misc.c:164 msgid "marquee" msgstr "marquesina" -#: atk/atkobject.c:209 +#: atspi/atspi-misc.c:165 msgid "math" msgstr "matemàtiques" -#: atk/atkobject.c:210 +#: atspi/atspi-misc.c:166 msgid "rating" msgstr "valoració" -#: atk/atkobject.c:211 +#: atspi/atspi-misc.c:167 msgid "timer" msgstr "temporitzador" -#: atk/atkobject.c:212 +#: atspi/atspi-misc.c:168 msgid "description list" msgstr "llista de descripció" -#: atk/atkobject.c:213 +#: atspi/atspi-misc.c:169 msgid "description term" msgstr "terme de descripció" -#: atk/atkobject.c:214 +#: atspi/atspi-misc.c:170 msgid "description value" msgstr "valor de descripció" - -#: atk/atkobject.c:372 -msgid "Accessible Name" -msgstr "Nom accessible" - -#: atk/atkobject.c:373 -msgid "Object instance’s name formatted for assistive technology access" -msgstr "" -"Nom de la instància de l'objecte formatat per a l'accés de les tecnologies " -"assistives" - -#: atk/atkobject.c:379 -msgid "Accessible Description" -msgstr "Descripció accessible" - -#: atk/atkobject.c:380 -msgid "Description of an object, formatted for assistive technology access" -msgstr "" -"Descripció d'un objecte, formatat per a l'accés de les tecnologies assistives" - -#: atk/atkobject.c:386 -msgid "Accessible Parent" -msgstr "Pare accessible" - -#: atk/atkobject.c:387 -msgid "Parent of the current accessible as returned by atk_object_get_parent()" -msgstr "Pare de l'accessible actual com el retorna l'«atk_object_get_parent()»" - -#: atk/atkobject.c:403 -msgid "Accessible Value" -msgstr "Valor accessible" - -#: atk/atkobject.c:404 -msgid "Is used to notify that the value has changed" -msgstr "S'utilitza per notificar que el valor ha canviat" - -#: atk/atkobject.c:412 -msgid "Accessible Role" -msgstr "Rol accessible" - -#: atk/atkobject.c:413 -msgid "The accessible role of this object" -msgstr "El rol accessible d'este objecte" - -#: atk/atkobject.c:421 -msgid "Accessible Layer" -msgstr "Capa accessible" - -#: atk/atkobject.c:422 -msgid "The accessible layer of this object" -msgstr "La capa accessible d'este objecte" - -#: atk/atkobject.c:430 -msgid "Accessible MDI Value" -msgstr "Valor MDI accessible" - -#: atk/atkobject.c:431 -msgid "The accessible MDI value of this object" -msgstr "El valor MDI accessible d'este objecte" - -#: atk/atkobject.c:447 -msgid "Accessible Table Caption" -msgstr "Títol de la taula accessible" - -#: atk/atkobject.c:448 -msgid "" -"Is used to notify that the table caption has changed; this property should " -"not be used. accessible-table-caption-object should be used instead" -msgstr "" -"S'utilitza per notificar que el títol de la taula ha canviat; esta propietat " -"no s'ha d'utilitzar. S'ha d'utilitzar accessible-table-caption-object en el " -"seu lloc" - -#: atk/atkobject.c:462 -msgid "Accessible Table Column Header" -msgstr "Capçalera de columna de taula accessible" - -#: atk/atkobject.c:463 -msgid "Is used to notify that the table column header has changed" -msgstr "" -"S'utilitza per notificar que la capçalera de la columna de la taula ha " -"canviat" - -#: atk/atkobject.c:478 -msgid "Accessible Table Column Description" -msgstr "Descripció de la columna de la taula accessible" - -#: atk/atkobject.c:479 -msgid "Is used to notify that the table column description has changed" -msgstr "" -"S'utilitza per notificar que la descripció de la columna de la taula ha " -"canviat" - -#: atk/atkobject.c:494 -msgid "Accessible Table Row Header" -msgstr "Capçalera de la fila de la taula accessible" - -#: atk/atkobject.c:495 -msgid "Is used to notify that the table row header has changed" -msgstr "" -"S'utilitza per notificar que la capçalera de la fila de la taula ha canviat" - -#: atk/atkobject.c:509 -msgid "Accessible Table Row Description" -msgstr "Descripció de la fila de la taula accessible" - -#: atk/atkobject.c:510 -msgid "Is used to notify that the table row description has changed" -msgstr "" -"S'utilitza per notificar que la descripció de la fila de la taula ha canviat" - -#: atk/atkobject.c:516 -msgid "Accessible Table Summary" -msgstr "Resum de la taula accessible" - -#: atk/atkobject.c:517 -msgid "Is used to notify that the table summary has changed" -msgstr "S'utilitza per notificar que el resum de la taula ha canviat" - -#: atk/atkobject.c:523 -msgid "Accessible Table Caption Object" -msgstr "Objecte de títol de taula accessible" - -#: atk/atkobject.c:524 -msgid "Is used to notify that the table caption has changed" -msgstr "S'utilitza per notificar que el títol de la taula ha canviat" - -#: atk/atkobject.c:530 -msgid "Number of Accessible Hypertext Links" -msgstr "Nombre d'enllaços d'hipertext accessibles" - -#: atk/atkobject.c:531 -msgid "The number of links which the current AtkHypertext has" -msgstr "El nombre d'enllaços que té l'AtkHypertext actual" - -#. Translators: This string describes a range within value-related -#. * widgets such as a password-strength meter. Note that what such a -#. * widget presents is controlled by application developers. Thus -#. * assistive technologies such as screen readers are expected to -#. * present this string alone or as a token in a list. -#. -#: atk/atkvalue.c:194 -msgid "very weak" -msgstr "molt dèbil" - -#. Translators: This string describes a range within value-related -#. * widgets such as a password-strength meter. Note that what such a -#. * widget presents is controlled by application developers. Thus -#. * assistive technologies such as screen readers are expected to -#. * present this string alone or as a token in a list. -#. -#: atk/atkvalue.c:201 -msgid "weak" -msgstr "dèbil" - -#. Translators: This string describes a range within value-related -#. * widgets such as a password-strength meter. Note that what such a -#. * widget presents is controlled by application developers. Thus -#. * assistive technologies such as screen readers are expected to -#. * present this string alone or as a token in a list. -#. -#: atk/atkvalue.c:208 -msgid "acceptable" -msgstr "acceptable" - -#. Translators: This string describes a range within value-related -#. * widgets such as a password-strength meter. Note that what such a -#. * widget presents is controlled by application developers. Thus -#. * assistive technologies such as screen readers are expected to -#. * present this string alone or as a token in a list. -#. -#: atk/atkvalue.c:215 -msgid "strong" -msgstr "fort" - -#. Translators: This string describes a range within value-related -#. * widgets such as a password-strength meter. Note that what such a -#. * widget presents is controlled by application developers. Thus -#. * assistive technologies such as screen readers are expected to -#. * present this string alone or as a token in a list. -#. -#: atk/atkvalue.c:222 -msgid "very strong" -msgstr "molt fort" - -#. Translators: This string describes a range within value-related -#. * widgets such as a volume slider. Note that what such a widget -#. * presents (e.g. temperature, volume, price) is controlled by -#. * application developers. Thus assistive technologies such as screen -#. * readers are expected to present this string alone or as a token in -#. * a list. -#. -#: atk/atkvalue.c:230 -msgid "very low" -msgstr "molt baix" - -#. Translators: This string describes a range within value-related -#. * widgets such as a volume slider. Note that what such a widget -#. * presents (e.g. temperature, volume, price) is controlled by -#. * application developers. Thus assistive technologies such as screen -#. * readers are expected to present this string alone or as a token in -#. * a list. -#. -#: atk/atkvalue.c:238 -msgid "medium" -msgstr "mitjà" - -#. Translators: This string describes a range within value-related -#. * widgets such as a volume slider. Note that what such a widget -#. * presents (e.g. temperature, volume, price) is controlled by -#. * application developers. Thus assistive technologies such as screen -#. * readers are expected to present this string alone or as a token in -#. * a list. -#. -#: atk/atkvalue.c:246 -msgid "high" -msgstr "alt" - -#. Translators: This string describes a range within value-related -#. * widgets such as a volume slider. Note that what such a widget -#. * presents (e.g. temperature, volume, price) is controlled by -#. * application developers. Thus assistive technologies such as screen -#. * readers are expected to present this string alone or as a token in -#. * a list. -#. -#: atk/atkvalue.c:254 -msgid "very high" -msgstr "molt alt" - -#. Translators: This string describes a range within value-related -#. * widgets such as a hard drive usage. Note that what such a widget -#. * presents (e.g. hard drive usage, network traffic) is controlled by -#. * application developers. Thus assistive technologies such as screen -#. * readers are expected to present this string alone or as a token in -#. * a list. -#. -#: atk/atkvalue.c:262 -msgid "very bad" -msgstr "molt dolent" - -#. Translators: This string describes a range within value-related -#. * widgets such as a hard drive usage. Note that what such a widget -#. * presents (e.g. hard drive usage, network traffic) is controlled by -#. * application developers. Thus assistive technologies such as screen -#. * readers are expected to present this string alone or as a token in -#. * a list. -#. -#: atk/atkvalue.c:270 -msgid "bad" -msgstr "dolent" - -#. Translators: This string describes a range within value-related -#. * widgets such as a hard drive usage. Note that what such a widget -#. * presents (e.g. hard drive usage, network traffic) is controlled by -#. * application developers. Thus assistive technologies such as screen -#. * readers are expected to present this string alone or as a token in -#. * a list. -#. -#: atk/atkvalue.c:278 -msgid "good" -msgstr "bo" - -#. Translators: This string describes a range within value-related -#. * widgets such as a hard drive usage. Note that what such a widget -#. * presents (e.g. hard drive usage, network traffic) is controlled by -#. * application developers. Thus assistive technologies such as screen -#. * readers are expected to present this string alone or as a token in -#. * a list. -#. -#: atk/atkvalue.c:286 -msgid "very good" -msgstr "molt bo" - -#. Translators: This string describes a range within value-related -#. * widgets such as a hard drive usage. Note that what such a widget -#. * presents (e.g. hard drive usage, network traffic) is controlled by -#. * application developers. Thus assistive technologies such as screen -#. * readers are expected to present this string alone or as a token in -#. * a list. -#. -#: atk/atkvalue.c:294 -msgid "best" -msgstr "el millor" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.60.5/tests/atk/testdocument.c new/at-spi2-core-2.60.6/tests/atk/testdocument.c --- old/at-spi2-core-2.60.5/tests/atk/testdocument.c 2026-06-27 16:36:14.000000000 +0200 +++ new/at-spi2-core-2.60.6/tests/atk/testdocument.c 2026-07-31 20:32:41.000000000 +0200 @@ -44,7 +44,7 @@ AtkObjectClass parent_class; }; -GType test_document_get_type (void) G_GNUC_CONST; +GType test_document_get_type (void); static void test_document_interface_init (AtkDocumentIface *iface); G_DEFINE_TYPE_WITH_CODE (TestDocument, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.60.5/tests/atk/testvalue.c new/at-spi2-core-2.60.6/tests/atk/testvalue.c --- old/at-spi2-core-2.60.5/tests/atk/testvalue.c 2026-06-27 16:36:14.000000000 +0200 +++ new/at-spi2-core-2.60.6/tests/atk/testvalue.c 2026-07-31 20:32:41.000000000 +0200 @@ -80,7 +80,7 @@ AtkObjectClass parent_class; }; -GType test_value_get_type (void) G_GNUC_CONST; +GType test_value_get_type (void); static void test_value_interface_init (AtkValueIface *iface); G_DEFINE_TYPE_WITH_CODE (TestValue, ++++++ at-spi2-core.obsinfo ++++++ --- /var/tmp/diff_new_pack.AX0rdG/_old 2026-08-09 21:32:19.768025106 +0200 +++ /var/tmp/diff_new_pack.AX0rdG/_new 2026-08-09 21:32:19.772025243 +0200 @@ -1,5 +1,5 @@ name: at-spi2-core -version: 2.60.5 -mtime: 1782570974 -commit: 5812aabe3baee1ac95a19db298453318bbcd6b65 +version: 2.60.6 +mtime: 1785522761 +commit: fff349553d16f99de3258bdeed7b8a663469b84b ++++++ build.specials.obscpio ++++++ ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2026-08-02 09:54:05.000000000 +0200 @@ -0,0 +1,5 @@ +*.obscpio +*.osc +_build.* +.pbuild +osc-collab.*
