forked from pool/at-spi2-core
Accepting request 963532 from GNOME:Next
- Update to version 2.44.0: + Unlink the socket before binding when using dbus-broker. Fixes regression introduced in 2.43.92 where restarting the bus launcher would fail. - Update to version 2.43.92: + The AT-SPI bus now uses the user's XDG_RUNTIME_DIR for its socket. Fixes accessibility for Snap-confined applications. + Caps lock is now unlocked for key synthesis. Fixes cutting and pasting from brltty when caps lock is on. + Several fixes to the dbus specification. + Fix the build when x11 is disabled. + Fix several compiler warnings. - Use ldconfig_scriptlets macro for post(un) handling. - Move autostart .desktop and xwayland-session config to distconfdir. OBS-URL: https://build.opensuse.org/request/show/963532 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/at-spi2-core?expand=0&rev=209
This commit is contained in:
parent
c846198fe5
commit
0e05837fe8
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4b5da10e94fa3c6195f95222438f63a0234b99ef9df772c7640e82baeaa6e386
|
||||
size 198016
|
3
at-spi2-core-2.44.0.tar.xz
Normal file
3
at-spi2-core-2.44.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7eee3cf285b089060fd6b6e51b3eb2cacf752cca3a082c7f4c2c5ab841e51353
|
||||
size 209692
|
@ -1,3 +1,26 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 18 14:05:57 UTC 2022 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 2.44.0:
|
||||
+ Unlink the socket before binding when using dbus-broker. Fixes
|
||||
regression introduced in 2.43.92 where restarting the bus
|
||||
launcher would fail.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Mar 5 11:59:35 UTC 2022 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 2.43.92:
|
||||
+ The AT-SPI bus now uses the user's XDG_RUNTIME_DIR for its
|
||||
socket. Fixes accessibility for Snap-confined applications.
|
||||
+ Caps lock is now unlocked for key synthesis. Fixes cutting and
|
||||
pasting from brltty when caps lock is on.
|
||||
+ Several fixes to the dbus specification.
|
||||
+ Fix the build when x11 is disabled.
|
||||
+ Fix several compiler warnings.
|
||||
- Use ldconfig_scriptlets macro for post(un) handling.
|
||||
- Move autostart .desktop and xwayland-session config to
|
||||
distconfdir.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 8 21:57:10 UTC 2021 - Michael Gorse <mgorse@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package at-spi2-core
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,13 +17,13 @@
|
||||
|
||||
|
||||
Name: at-spi2-core
|
||||
Version: 2.42.0
|
||||
Version: 2.44.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.42/%{name}-%{version}.tar.xz
|
||||
Source0: https://download.gnome.org/sources/at-spi2-core/2.44/%{name}-%{version}.tar.xz
|
||||
Source99: baselibs.conf
|
||||
|
||||
BuildRequires: gtk-doc
|
||||
@ -98,17 +98,21 @@ to develop applications that require these.
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
%find_lang at-spi2-core
|
||||
%find_lang %{name}
|
||||
# Move autostart file to /usr/etc
|
||||
mkdir -p %{buildroot}%{_distconfdir}/xdg/autostart
|
||||
mkdir -p %{buildroot}%{_distconfdir}/xdg/Xwayland-session.d
|
||||
mv %{buildroot}%{_sysconfdir}/xdg/autostart/* %{buildroot}%{_distconfdir}/xdg/autostart/
|
||||
mv %{buildroot}%{_sysconfdir}/xdg/Xwayland-session.d/* %{buildroot}%{_distconfdir}/xdg/Xwayland-session.d/
|
||||
|
||||
%post -n libatspi0 -p /sbin/ldconfig
|
||||
%postun -n libatspi0 -p /sbin/ldconfig
|
||||
%ldconfig_scriptlets -n libatspi0
|
||||
|
||||
%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
|
||||
%dir %{_distconfdir}/xdg/Xwayland-session.d
|
||||
%{_distconfdir}/xdg/Xwayland-session.d/00-at-spi
|
||||
%{_distconfdir}/xdg/autostart/at-spi-dbus-bus.desktop
|
||||
%{_userunitdir}/at-spi-dbus-bus.service
|
||||
%dir %{_datadir}/dbus-1/accessibility-services/
|
||||
%{_datadir}/dbus-1/accessibility-services/org.a11y.atspi.Registry.service
|
||||
@ -123,7 +127,7 @@ to develop applications that require these.
|
||||
%{_libdir}/girepository-1.0/Atspi-2.0.typelib
|
||||
|
||||
%files devel
|
||||
%doc AUTHORS README
|
||||
%doc AUTHORS README.md
|
||||
%{_includedir}/at-spi-2.0/
|
||||
%{_libdir}/libatspi.so
|
||||
%{_libdir}/pkgconfig/atspi-2.pc
|
||||
|
Loading…
x
Reference in New Issue
Block a user