Hello community, here is the log from the commit of package at-spi2-atk for openSUSE:Factory checked in at 2020-11-19 11:54:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/at-spi2-atk (Old) and /work/SRC/openSUSE:Factory/.at-spi2-atk.new.5913 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "at-spi2-atk" Thu Nov 19 11:54:03 2020 rev:82 rq:847168 version:2.38.0 Changes: -------- --- /work/SRC/openSUSE:Factory/at-spi2-atk/at-spi2-atk.changes 2020-03-05 23:17:28.517149865 +0100 +++ /work/SRC/openSUSE:Factory/.at-spi2-atk.new.5913/at-spi2-atk.changes 2020-11-23 10:21:51.016777457 +0100 @@ -1,0 +2,13 @@ +Mon Sep 14 13:10:28 UTC 2020 - dims...@opensuse.org + +- Update to version 2.38.0: + + Updated translations. + +------------------------------------------------------------------- +Fri Sep 4 15:47:19 UTC 2020 - dims...@opensuse.org + +- Update to version 2.37.90: + + Add support for the new mark and suggestion roles. + + Meson: add tests option. + +------------------------------------------------------------------- Old: ---- at-spi2-atk-2.34.2.tar.xz New: ---- at-spi2-atk-2.38.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ at-spi2-atk.spec ++++++ --- /var/tmp/diff_new_pack.esR8s9/_old 2020-11-23 10:21:51.536778045 +0100 +++ /var/tmp/diff_new_pack.esR8s9/_new 2020-11-23 10:21:51.540778049 +0100 @@ -17,20 +17,20 @@ Name: at-spi2-atk -Version: 2.34.2 +Version: 2.38.0 Release: 0 Summary: GTK+ module for the Assistive Technology Service Provider Interface License: LGPL-2.1-or-later Group: Development/Libraries/C and C++ URL: https://gitlab.gnome.org/GNOME/at-spi2-atk -Source0: https://download.gnome.org/sources/at-spi2-atk/2.34/%{name}-%{version}.tar.xz +Source0: https://download.gnome.org/sources/at-spi2-atk/2.38/%{name}-%{version}.tar.xz Source98: baselibs.conf Source99: %{name}-rpmlintrc BuildRequires: fdupes BuildRequires: meson BuildRequires: pkgconfig -BuildRequires: pkgconfig(atk) >= 2.33.3 +BuildRequires: pkgconfig(atk) >= 2.36.0 BuildRequires: pkgconfig(atspi-2) >= 2.33.2 BuildRequires: pkgconfig(dbus-1) >= 1.5 BuildRequires: pkgconfig(glib-2.0) >= 2.32.0 ++++++ at-spi2-atk-2.34.2.tar.xz -> at-spi2-atk-2.38.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-atk-2.34.2/NEWS new/at-spi2-atk-2.38.0/NEWS --- old/at-spi2-atk-2.34.2/NEWS 2020-02-29 23:37:19.000000000 +0100 +++ new/at-spi2-atk-2.38.0/NEWS 2020-09-12 21:24:15.318387300 +0200 @@ -1,3 +1,9 @@ +What's new in at-spi2-atk 2.37.90: + +* Add support for the new mark and suggestion roles (!21). + +* Meson: add tests option (!22). + What's new in at-spi2-atk 2.34.2: * Meson: don't hard-code shared_library (!19). diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-atk-2.34.2/atk-adaptor/object.c new/at-spi2-atk-2.38.0/atk-adaptor/object.c --- old/at-spi2-atk-2.34.2/atk-adaptor/object.c 2020-02-29 23:37:19.000000000 +0100 +++ new/at-spi2-atk-2.38.0/atk-adaptor/object.c 2020-09-12 21:24:15.334387500 +0200 @@ -485,6 +485,8 @@ role_table[ATK_ROLE_FOOTNOTE] = ATSPI_ROLE_FOOTNOTE; role_table[ATK_ROLE_CONTENT_DELETION] = ATSPI_ROLE_CONTENT_DELETION; role_table[ATK_ROLE_CONTENT_INSERTION] = ATSPI_ROLE_CONTENT_INSERTION; + role_table[ATK_ROLE_MARK] = ATSPI_ROLE_MARK; + role_table[ATK_ROLE_SUGGESTION] = ATSPI_ROLE_SUGGESTION; return TRUE; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-atk-2.34.2/meson.build new/at-spi2-atk-2.38.0/meson.build --- old/at-spi2-atk-2.34.2/meson.build 2020-02-29 23:37:19.000000000 +0100 +++ new/at-spi2-atk-2.38.0/meson.build 2020-09-12 21:24:15.338387500 +0200 @@ -1,5 +1,5 @@ project('at-spi2-atk', 'c', - version: '2.34.2', + version: '2.38.0', license: 'LGPLv2.1+', default_options: [ 'buildtype=debugoptimized', @@ -38,7 +38,7 @@ glib_req_version = '>= 2.32.0' gobject_req_version = '>= 2.0.0' gmodule_req_version = '>= 2.0.0' -atk_req_version = '>= 2.33.3' +atk_req_version = '>= 2.36.0' atspi_req_version = '>= 2.33.2' libxml_req_version = '>= 2.9.1' @@ -61,4 +61,6 @@ subdir('droute') subdir('atk-adaptor') -subdir('tests') +if get_option('tests') + subdir('tests') +endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-atk-2.34.2/meson_options.txt new/at-spi2-atk-2.38.0/meson_options.txt --- old/at-spi2-atk-2.34.2/meson_options.txt 2020-02-29 23:37:19.000000000 +0100 +++ new/at-spi2-atk-2.38.0/meson_options.txt 2020-09-12 21:24:15.338387500 +0200 @@ -2,3 +2,7 @@ description: 'Disable peer-to-peer DBus connections', type: 'boolean', value: false) +option('tests', + description: 'Whether to build tests', + type: 'boolean', + value: true) _______________________________________________ openSUSE Commits mailing list -- commit@lists.opensuse.org To unsubscribe, email commit-le...@lists.opensuse.org List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette List Archives: https://lists.opensuse.org/archives/list/commit@lists.opensuse.org