pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/at-spi2-core



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Aug 22 06:55:26 UTC 2023

Modified Files:
        pkgsrc/devel/at-spi2-core: Makefile PLIST distinfo

Log Message:
at-spi2-core: updated to 2.44.1

What's new in at-spi2-core 2.44.1:

* Fix use after free when removing a hung process.

* Fix the build with X11 disabled.

* Fix crash when NULL is passed to some listener-related functions.

* impl_deregister_keystroke_listener: fix memory leak on iteration error.

What's new in at-spi2-core 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.

What's new in at-spi2-core 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.

What's new in at-spi2-core 2.42.0:

* Set X root property when Xwayland starts on demand.

* Several dbus introspection fixes.


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 pkgsrc/devel/at-spi2-core/Makefile
cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/at-spi2-core/PLIST
cvs rdiff -u -r1.31 -r1.32 pkgsrc/devel/at-spi2-core/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/at-spi2-core/Makefile
diff -u pkgsrc/devel/at-spi2-core/Makefile:1.45 pkgsrc/devel/at-spi2-core/Makefile:1.46
--- pkgsrc/devel/at-spi2-core/Makefile:1.45     Mon Aug 14 05:24:04 2023
+++ pkgsrc/devel/at-spi2-core/Makefile  Tue Aug 22 06:55:26 2023
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.45 2023/08/14 05:24:04 wiz Exp $
+# $NetBSD: Makefile,v 1.46 2023/08/22 06:55:26 adam Exp $
 
-DISTNAME=      at-spi2-core-2.40.3
-PKGREVISION=   3
+DISTNAME=      at-spi2-core-2.44.1
 CATEGORIES=    devel gnome
 MASTER_SITES=  ${MASTER_SITE_GNOME:=sources/at-spi2-core/${PKGVERSION_NOREV:R}/}
 EXTRACT_SUFX=  .tar.xz
@@ -11,19 +10,15 @@ HOMEPAGE=   https://www.linuxfoundation.or
 COMMENT=       Assistive Technology Service Provider Interface Core
 LICENSE=       gnu-lgpl-v2.1
 
-USE_TOOLS+=            msgfmt pkg-config
+USE_TOOLS+=    msgfmt pkg-config
 
 PKGCONFIG_OVERRIDE=            output/meson-private/atspi-2.pc
 PKGCONFIG_OVERRIDE_STAGE=      pre-install
 MAKE_ENV+=                     LD_LIBRARY_PATH=${WRKSRC}/output/atspi
 
-BUILD_DEFS+=           PKG_SYSCONFBASE
+BUILD_DEFS+=           PKG_SYSCONFDIR
 
 EGDIR=                 ${PREFIX}/share/examples/${PKGBASE}
-busconfigdir=          ${PKG_SYSCONFDIR}/at-spi2
-eg_busconfigdir=       ${EGDIR}/at-spi2
-default_sessiondir=    ${PKG_SYSCONFBASE}/xdg/autostart
-eg_default_sessiondir= ${EGDIR}/xdg/autostart
 
 SUBST_CLASSES+=                eg
 SUBST_SED.eg+=         -e 's,defaults,examples/${PKGBASE},'
@@ -31,18 +26,25 @@ SUBST_FILES.eg+=    bus/meson.build
 SUBST_STAGE.eg=                pre-configure
 SUBST_MESSAGE.eg=      Fixing path to examples directory.
 
-CONF_FILES=    ${eg_busconfigdir}/accessibility.conf \
-                       ${busconfigdir}/accessibility.conf
-CONF_FILES+=   ${eg_default_sessiondir}/at-spi-dbus-bus.desktop \
-                       ${default_sessiondir}/at-spi-dbus-bus.desktop
-MAKE_DIRS+=    ${busconfigdir} ${default_sessiondir}
+CONF_FILES=    ${EGDIR}/at-spi2/accessibility.conf \
+               ${PKG_SYSCONFDIR}/at-spi2/accessibility.conf
+CONF_FILES+=   ${EGDIR}/xdg/autostart/at-spi-dbus-bus.desktop \
+               ${PKG_SYSCONFDIR}/xdg/autostart/at-spi-dbus-bus.desktop
+CONF_FILES+=   ${EGDIR}/xdg/Xwayland-session.d/00-at-spi \
+               ${PKG_SYSCONFDIR}/xdg/Xwayland-session.d/00-at-spi
+MAKE_DIRS+=    ${PKG_SYSCONFDIR}/at-spi2
+MAKE_DIRS+=    ${PKG_SYSCONFDIR}/xdg/Xwayland-session.d
+MAKE_DIRS+=    ${PKG_SYSCONFDIR}/xdg/autostart
 
 PYTHON_FOR_BUILD_ONLY= tool
 
 post-install:
-       ${INSTALL_DATA_DIR} ${DESTDIR}${eg_default_sessiondir}
+       ${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}/xdg/Xwayland-session.d
+       ${MV} ${DESTDIR}${PKG_SYSCONFDIR}/xdg/Xwayland-session.d/00-at-spi \
+               ${DESTDIR}${EGDIR}/xdg/Xwayland-session.d/00-at-spi
+       ${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}/xdg/autostart
        ${MV} ${DESTDIR}${PKG_SYSCONFDIR}/xdg/autostart/at-spi-dbus-bus.desktop \
-             ${DESTDIR}${eg_default_sessiondir}/at-spi-dbus-bus.desktop
+             ${DESTDIR}${EGDIR}/xdg/autostart/at-spi-dbus-bus.desktop
 
 .include "../../devel/glib2/buildlink3.mk"
 BUILDLINK_DEPMETHOD.gobject-introspection=     build

Index: pkgsrc/devel/at-spi2-core/PLIST
diff -u pkgsrc/devel/at-spi2-core/PLIST:1.16 pkgsrc/devel/at-spi2-core/PLIST:1.17
--- pkgsrc/devel/at-spi2-core/PLIST:1.16        Wed Aug 18 09:51:21 2021
+++ pkgsrc/devel/at-spi2-core/PLIST     Tue Aug 22 06:55:26 2023
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.16 2021/08/18 09:51:21 prlw1 Exp $
+@comment $NetBSD: PLIST,v 1.17 2023/08/22 06:55:26 adam Exp $
+@pkgdir etc/xdg/autostart
 include/at-spi-2.0/atspi/atspi-accessible.h
 include/at-spi-2.0/atspi/atspi-action.h
 include/at-spi-2.0/atspi/atspi-application.h
@@ -41,8 +42,10 @@ libexec/at-spi2-registryd
 share/dbus-1/accessibility-services/org.a11y.atspi.Registry.service
 share/dbus-1/services/org.a11y.Bus.service
 share/examples/at-spi2-core/at-spi2/accessibility.conf
+share/examples/at-spi2-core/xdg/Xwayland-session.d/00-at-spi
 share/examples/at-spi2-core/xdg/autostart/at-spi-dbus-bus.desktop
 share/gir-1.0/Atspi-2.0.gir
+share/locale/ab/LC_MESSAGES/at-spi2-core.mo
 share/locale/an/LC_MESSAGES/at-spi2-core.mo
 share/locale/as/LC_MESSAGES/at-spi2-core.mo
 share/locale/ast/LC_MESSAGES/at-spi2-core.mo
@@ -75,6 +78,7 @@ share/locale/hi/LC_MESSAGES/at-spi2-core
 share/locale/hr/LC_MESSAGES/at-spi2-core.mo
 share/locale/hu/LC_MESSAGES/at-spi2-core.mo
 share/locale/id/LC_MESSAGES/at-spi2-core.mo
+share/locale/is/LC_MESSAGES/at-spi2-core.mo
 share/locale/it/LC_MESSAGES/at-spi2-core.mo
 share/locale/ja/LC_MESSAGES/at-spi2-core.mo
 share/locale/kk/LC_MESSAGES/at-spi2-core.mo
@@ -114,4 +118,3 @@ share/locale/vi/LC_MESSAGES/at-spi2-core
 share/locale/zh_CN/LC_MESSAGES/at-spi2-core.mo
 share/locale/zh_HK/LC_MESSAGES/at-spi2-core.mo
 share/locale/zh_TW/LC_MESSAGES/at-spi2-core.mo
-@pkgdir etc/xdg/autostart

Index: pkgsrc/devel/at-spi2-core/distinfo
diff -u pkgsrc/devel/at-spi2-core/distinfo:1.31 pkgsrc/devel/at-spi2-core/distinfo:1.32
--- pkgsrc/devel/at-spi2-core/distinfo:1.31     Sat Jul 22 12:48:44 2023
+++ pkgsrc/devel/at-spi2-core/distinfo  Tue Aug 22 06:55:26 2023
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.31 2023/07/22 12:48:44 nia Exp $
+$NetBSD: distinfo,v 1.32 2023/08/22 06:55:26 adam Exp $
 
-BLAKE2s (at-spi2-core-2.40.3.tar.xz) = dd0423b9c07a817ee8ab24d316d1f574cb61b69ed1fdd1f69c147ae1fedfb9de
-SHA512 (at-spi2-core-2.40.3.tar.xz) = 85adf3da0a369d7f3481646a495a9c4c3337da3ae6a20ce8c924f8621d3d6ed1d9461bfac0e821dfe86e4ad6b930e4fd65d24c26401cbea644ef4951e5dda5ce
-Size (at-spi2-core-2.40.3.tar.xz) = 197528 bytes
+BLAKE2s (at-spi2-core-2.44.1.tar.xz) = 86ec961a62389f110650e2e02d3b097773b316c063772f325726d5a89e30b992
+SHA512 (at-spi2-core-2.44.1.tar.xz) = 8d85df75f886c4a19d829d14e5a9412b607b9cbe2d1b7ecb95b4082602f0624e90747fe955f96d378c3a52bc0e732074b97008bb34e6acc2722c7056b2c0504e
+Size (at-spi2-core-2.44.1.tar.xz) = 209780 bytes
 SHA1 (patch-bus_meson.build) = 086a8113d887da65a245a958b95d5fc4bfca7025



Home | Main Index | Thread Index | Old Index