From 2ac59be3924ccfd8cd5dba37c432553be9adf364 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Mon, 7 Aug 2023 07:51:40 +0000 Subject: [PATCH] =?UTF-8?q?at-spi2-core:=202.48.3=20=E2=86=92=202.49.90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.gnome.org/GNOME/at-spi2-core/-/compare/AT_SPI2_CORE_2_48_3...AT_SPI2_CORE_2_49_90 NEWS look good: * TableCell.xml: Add Get{Column,Row}HeaderCells methods * atspi_accessible_get_localized_role_name: Use internal names when possible. * Add a non-recursive function to clear a single object's cache. * Fix a test failure/timeout. * Add atspi_get_version() to return the runtime version of the library. * Collection: fix match testing for attributes. * Fix a NULL pointer dereference when deregistering an event listener that doesn't include a detail. * Fix the documentation for interfaces in collection match rules. * Add an AtspiLive enum to specify the politeness level for live regions, and document that this should be used for Announcement signals. Also add a notification signal in atk to replace the announcement signal that lacks the politeness information. * Add an asynchronous version of atspi_generate_mouse_event. Don't aware of build change that needs action. Changelog-reviewed-by: Bobby Rong Changelog-reviewed-by: Jan Tojnar --- pkgs/development/libraries/at-spi2-core/default.nix | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pkgs/development/libraries/at-spi2-core/default.nix b/pkgs/development/libraries/at-spi2-core/default.nix index 2a47de8d5643..f144ec1dad6b 100644 --- a/pkgs/development/libraries/at-spi2-core/default.nix +++ b/pkgs/development/libraries/at-spi2-core/default.nix @@ -1,7 +1,6 @@ { lib , stdenv , fetchurl -, fetchpatch , meson , ninja , pkg-config @@ -24,23 +23,15 @@ stdenv.mkDerivation rec { pname = "at-spi2-core"; - version = "2.48.3"; + version = "2.49.90"; outputs = [ "out" "dev" ]; src = fetchurl { url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "NzFt9DypmJzlOdVM9CmnaMKLs4oLNJUL6t0EIYJ+31U="; + sha256 = "HmYSdV1xu+lSFW3AUbKB0aQyalaWrDu8jP1ayP2XHxg="; }; - patches = [ - # Fix implicit declaration of `strcasecmp`, which is an error on clang 16. - (fetchpatch { - url = "https://gitlab.gnome.org/GNOME/at-spi2-core/-/merge_requests/147.patch"; - hash = "sha256-UU2n//Z9F1SyUGyuDKsiwZDyThsp/tJprz/zolDDTyw="; - }) - ]; - nativeBuildInputs = [ glib meson