git: d76f33e236fb - main - devel/glib20: Update to 2.84.1
Date: Tue, 15 Apr 2025 12:48:25 UTC
The branch main has been updated by arrowd: URL: https://cgit.FreeBSD.org/ports/commit/?id=d76f33e236fb5bd319031fece1d6fbe714fbbef2 commit d76f33e236fb5bd319031fece1d6fbe714fbbef2 Author: Gleb Popov <arrowd@FreeBSD.org> AuthorDate: 2025-04-03 10:21:19 +0000 Commit: Gleb Popov <arrowd@FreeBSD.org> CommitDate: 2025-04-15 12:34:41 +0000 devel/glib20: Update to 2.84.1 PR: 285865 Exp-run by: antoine --- devel/glib20/Makefile | 8 +- devel/glib20/distinfo | 8 +- devel/glib20/files/patch-revert-8abf3a0 | 19 ++-- devel/glib20/pkg-plist | 185 +++++++++++--------------------- 4 files changed, 80 insertions(+), 140 deletions(-) diff --git a/devel/glib20/Makefile b/devel/glib20/Makefile index 2d36f81d6ec3..ef3b3598c398 100644 --- a/devel/glib20/Makefile +++ b/devel/glib20/Makefile @@ -1,14 +1,10 @@ PORTNAME= glib -DISTVERSION= 2.82.4 -PORTREVISION= 1 +DISTVERSION= 2.84.1 PORTEPOCH= 2 CATEGORIES= devel MASTER_SITES= GNOME DIST_SUBDIR= gnome -PATCH_SITES= https://gitlab.gnome.org/GNOME/${PORTNAME}/-/commit/ -PATCHFILES= 3dcf1ea13d9b2a3371fa35b79e640063de33dc20.patch:-p1 - MAINTAINER= desktop@FreeBSD.org COMMENT= Some useful routines of C programming (current stable version) WWW= https://www.gtk.org/ @@ -17,6 +13,7 @@ LICENSE= LGPL20 BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}packaging>0:devel/py-packaging@${PY_FLAVOR} LIB_DEPENDS= libffi.so:devel/libffi \ + libinotify.so:devel/libinotify \ libpcre2-8.so:devel/pcre2 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}packaging>0:devel/py-packaging@${PY_FLAVOR} TEST_DEPENDS= dbus-uuidgen:devel/dbus \ @@ -42,6 +39,7 @@ USE_PYTHON= py3kplist TRIGGERS= gio-modules glib-schemas MESON_ARGS= -Db_lundef=false \ -Ddefault_library=both \ + -Dfile_monitor_backend='libinotify-kqueue' \ -Dinstalled_tests=false \ -Dlibmount=disabled \ -Druntime_dir=/var/run \ diff --git a/devel/glib20/distinfo b/devel/glib20/distinfo index fa0b058cb6be..633e348fadc3 100644 --- a/devel/glib20/distinfo +++ b/devel/glib20/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1733991305 -SHA256 (gnome/glib-2.82.4.tar.xz) = 37dd0877fe964cd15e9a2710b044a1830fb1bd93652a6d0cb6b8b2dff187c709 -SIZE (gnome/glib-2.82.4.tar.xz) = 5556896 -SHA256 (gnome/3dcf1ea13d9b2a3371fa35b79e640063de33dc20.patch) = 31f731207b6f4a2760e048138c5363fe42c05e3624cbe5ee9612f3d047cb176c -SIZE (gnome/3dcf1ea13d9b2a3371fa35b79e640063de33dc20.patch) = 2083 +TIMESTAMP = 1744003899 +SHA256 (gnome/glib-2.84.1.tar.xz) = 2b4bc2ec49611a5fc35f86aca855f2ed0196e69e53092bab6bb73396bf30789a +SIZE (gnome/glib-2.84.1.tar.xz) = 5615396 diff --git a/devel/glib20/files/patch-revert-8abf3a0 b/devel/glib20/files/patch-revert-8abf3a0 index 3eab27da9e46..54a1539ecf1e 100644 --- a/devel/glib20/files/patch-revert-8abf3a0 +++ b/devel/glib20/files/patch-revert-8abf3a0 @@ -1,9 +1,9 @@ Revert https://gitlab.gnome.org/GNOME/glib/commit/8abf3a04e699 for breaking at least graphics/inkscape as wchar_t is locale-dependent. ---- glib/gconvert.c.orig 2018-03-12 16:23:37 UTC +--- glib/gconvert.c.orig 2025-03-06 13:09:13 UTC +++ glib/gconvert.c -@@ -264,13 +264,6 @@ g_iconv_open (const gchar *to_codeset, +@@ -165,12 +165,6 @@ g_iconv_open (const gchar *to_codeset, * GLib provides g_convert() and g_locale_to_utf8() which are likely * more convenient than the raw iconv wrappers. * @@ -13,11 +13,10 @@ breaking at least graphics/inkscape as wchar_t is locale-dependent. - * positive number of non-reversible conversions as replacement characters were - * used), or it may return -1 and set an error such as %EILSEQ, in such a - * situation. -- * - * Returns: count of non-reversible conversions, or -1 on error - **/ - gsize -@@ -379,14 +372,6 @@ close_converter (GIConv cd) + * + * See [`iconv(3posix)`](man:iconv(3posix)) and [`iconv(3)`](man:iconv(3)) for more details about behavior when an + * error occurs. +@@ -283,14 +277,6 @@ close_converter (GIConv cd) * character until it knows that the next character is not a mark that * could combine with the base character.) * @@ -32,7 +31,7 @@ breaking at least graphics/inkscape as wchar_t is locale-dependent. * Returns: (array length=bytes_written) (element-type guint8) (transfer full): * If the conversion was successful, a newly allocated buffer * containing the converted string, which must be freed with -@@ -466,13 +451,6 @@ g_convert_with_iconv (const gchar *str, +@@ -370,13 +356,6 @@ g_convert_with_iconv (const gchar *str, break; } } @@ -46,9 +45,9 @@ breaking at least graphics/inkscape as wchar_t is locale-dependent. else { if (!reset) ---- glib/gconvert.h.orig 2018-02-06 15:44:20 UTC +--- glib/gconvert.h.orig 2025-03-06 13:09:13 UTC +++ glib/gconvert.h -@@ -37,9 +37,7 @@ G_BEGIN_DECLS +@@ -39,9 +39,7 @@ G_BEGIN_DECLS * GConvertError: * @G_CONVERT_ERROR_NO_CONVERSION: Conversion between the requested character * sets is not supported. diff --git a/devel/glib20/pkg-plist b/devel/glib20/pkg-plist index e56e603d651a..cac9eb29f185 100644 --- a/devel/glib20/pkg-plist +++ b/devel/glib20/pkg-plist @@ -530,14 +530,6 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/class.TlsDatabase.html %%PORTDOCS%%share/doc/gio-2.0/class.TlsInteraction.html %%PORTDOCS%%share/doc/gio-2.0/class.TlsPassword.html -%%PORTDOCS%%share/doc/gio-2.0/class.UnixConnection.html -%%PORTDOCS%%share/doc/gio-2.0/class.UnixCredentialsMessage.html -%%PORTDOCS%%share/doc/gio-2.0/class.UnixFDList.html -%%PORTDOCS%%share/doc/gio-2.0/class.UnixFDMessage.html -%%PORTDOCS%%share/doc/gio-2.0/class.UnixInputStream.html -%%PORTDOCS%%share/doc/gio-2.0/class.UnixMountMonitor.html -%%PORTDOCS%%share/doc/gio-2.0/class.UnixOutputStream.html -%%PORTDOCS%%share/doc/gio-2.0/class.UnixSocketAddress.html %%PORTDOCS%%share/doc/gio-2.0/class.Vfs.html %%PORTDOCS%%share/doc/gio-2.0/class.VolumeMonitor.html %%PORTDOCS%%share/doc/gio-2.0/class.ZlibCompressor.html @@ -673,6 +665,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/const.VOLUME_IDENTIFIER_KIND_UNIX_DEVICE.html %%PORTDOCS%%share/doc/gio-2.0/const.VOLUME_IDENTIFIER_KIND_UUID.html %%PORTDOCS%%share/doc/gio-2.0/const.VOLUME_MONITOR_EXTENSION_POINT_NAME.html +%%PORTDOCS%%share/doc/gio-2.0/content-types.html %%PORTDOCS%%share/doc/gio-2.0/ctor.AppLaunchContext.new.html %%PORTDOCS%%share/doc/gio-2.0/ctor.Application.new.html %%PORTDOCS%%share/doc/gio-2.0/ctor.BufferedInputStream.new.html @@ -789,18 +782,6 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/ctor.TlsCertificate.new_from_pkcs11_uris.html %%PORTDOCS%%share/doc/gio-2.0/ctor.TlsCertificate.new_from_pkcs12.html %%PORTDOCS%%share/doc/gio-2.0/ctor.TlsPassword.new.html -%%PORTDOCS%%share/doc/gio-2.0/ctor.UnixCredentialsMessage.new.html -%%PORTDOCS%%share/doc/gio-2.0/ctor.UnixCredentialsMessage.new_with_credentials.html -%%PORTDOCS%%share/doc/gio-2.0/ctor.UnixFDList.new.html -%%PORTDOCS%%share/doc/gio-2.0/ctor.UnixFDList.new_from_array.html -%%PORTDOCS%%share/doc/gio-2.0/ctor.UnixFDMessage.new.html -%%PORTDOCS%%share/doc/gio-2.0/ctor.UnixFDMessage.new_with_fd_list.html -%%PORTDOCS%%share/doc/gio-2.0/ctor.UnixInputStream.new.html -%%PORTDOCS%%share/doc/gio-2.0/ctor.UnixMountMonitor.new.html -%%PORTDOCS%%share/doc/gio-2.0/ctor.UnixOutputStream.new.html -%%PORTDOCS%%share/doc/gio-2.0/ctor.UnixSocketAddress.new.html -%%PORTDOCS%%share/doc/gio-2.0/ctor.UnixSocketAddress.new_abstract.html -%%PORTDOCS%%share/doc/gio-2.0/ctor.UnixSocketAddress.new_with_type.html %%PORTDOCS%%share/doc/gio-2.0/ctor.ZlibCompressor.new.html %%PORTDOCS%%share/doc/gio-2.0/ctor.ZlibDecompressor.new.html %%PORTDOCS%%share/doc/gio-2.0/dbus-error.html @@ -843,7 +824,6 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/enum.TlsInteractionResult.html %%PORTDOCS%%share/doc/gio-2.0/enum.TlsProtocolVersion.html %%PORTDOCS%%share/doc/gio-2.0/enum.TlsRehandshakeMode.html -%%PORTDOCS%%share/doc/gio-2.0/enum.UnixSocketAddressType.html %%PORTDOCS%%share/doc/gio-2.0/enum.ZlibCompressorFormat.html %%PORTDOCS%%share/doc/gio-2.0/error.DBusError.html %%PORTDOCS%%share/doc/gio-2.0/error.IOErrorEnum.html @@ -945,6 +925,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_ENUMERATOR_IN_2_78_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_ENUMERATOR_IN_2_80_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_ENUMERATOR_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_ENUMERATOR_IN_2_84_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_IN_2_26_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_IN_2_28_FOR.html @@ -975,6 +956,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_IN_2_78_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_IN_2_80_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_IN_2_84_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_MACRO_IN_2_26_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_MACRO_IN_2_28_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_MACRO_IN_2_30_FOR.html @@ -1004,6 +986,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_MACRO_IN_2_78_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_MACRO_IN_2_80_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_MACRO_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_MACRO_IN_2_84_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_TYPE_IN_2_26_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_TYPE_IN_2_28_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_TYPE_IN_2_30_FOR.html @@ -1033,6 +1016,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_TYPE_IN_2_78_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_TYPE_IN_2_80_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_TYPE_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/gio-2.0/func.DEPRECATED_TYPE_IN_2_84_FOR.html %%PORTDOCS%%share/doc/gio-2.0/func.TEST_DBUS.html %%PORTDOCS%%share/doc/gio-2.0/func.UNAVAILABLE.html %%PORTDOCS%%share/doc/gio-2.0/func.UNAVAILABLE_STATIC_INLINE.html @@ -1049,6 +1033,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/func.bus_watch_name_on_connection.html %%PORTDOCS%%share/doc/gio-2.0/func.bus_watch_name_on_connection_with_closures.html %%PORTDOCS%%share/doc/gio-2.0/func.bus_watch_name_with_closures.html +%%PORTDOCS%%share/doc/gio-2.0/func.clear_dbus_signal_subscription.html %%PORTDOCS%%share/doc/gio-2.0/func.content_type_can_be_executable.html %%PORTDOCS%%share/doc/gio-2.0/func.content_type_equals.html %%PORTDOCS%%share/doc/gio-2.0/func.content_type_from_mime_type.html @@ -1104,6 +1089,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/func.pollable_stream_write_all.html %%PORTDOCS%%share/doc/gio-2.0/func.resources_enumerate_children.html %%PORTDOCS%%share/doc/gio-2.0/func.resources_get_info.html +%%PORTDOCS%%share/doc/gio-2.0/func.resources_has_children.html %%PORTDOCS%%share/doc/gio-2.0/func.resources_lookup_data.html %%PORTDOCS%%share/doc/gio-2.0/func.resources_open_stream.html %%PORTDOCS%%share/doc/gio-2.0/func.resources_register.html @@ -1111,32 +1097,6 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/func.simple_async_report_error_in_idle.html %%PORTDOCS%%share/doc/gio-2.0/func.simple_async_report_gerror_in_idle.html %%PORTDOCS%%share/doc/gio-2.0/func.simple_async_report_take_gerror_in_idle.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_is_mount_path_system_internal.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_is_system_device_path.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_is_system_fs_type.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_at.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_compare.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_copy.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_for.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_free.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_get_device_path.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_get_fs_type.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_get_mount_path.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_get_options.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_get_root_path.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_guess_can_eject.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_guess_icon.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_guess_name.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_guess_should_display.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_guess_symbolic_icon.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_is_readonly.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_is_system_internal.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_points_changed_since.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_points_get.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mount_points_get_from_file.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mounts_changed_since.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mounts_get.html -%%PORTDOCS%%share/doc/gio-2.0/func.unix_mounts_get_from_file.html %%PORTDOCS%%share/doc/gio-2.0/fzy.js %%PORTDOCS%%share/doc/gio-2.0/gapplication.html %%PORTDOCS%%share/doc/gio-2.0/gdbus-codegen.html @@ -1388,6 +1348,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/method.DBusConnection.is_closed.html %%PORTDOCS%%share/doc/gio-2.0/method.DBusConnection.register_object.html %%PORTDOCS%%share/doc/gio-2.0/method.DBusConnection.register_object_with_closures.html +%%PORTDOCS%%share/doc/gio-2.0/method.DBusConnection.register_object_with_closures2.html %%PORTDOCS%%share/doc/gio-2.0/method.DBusConnection.register_subtree.html %%PORTDOCS%%share/doc/gio-2.0/method.DBusConnection.remove_filter.html %%PORTDOCS%%share/doc/gio-2.0/method.DBusConnection.send_message.html @@ -2229,6 +2190,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/method.Resource._unregister.html %%PORTDOCS%%share/doc/gio-2.0/method.Resource.enumerate_children.html %%PORTDOCS%%share/doc/gio-2.0/method.Resource.get_info.html +%%PORTDOCS%%share/doc/gio-2.0/method.Resource.has_children.html %%PORTDOCS%%share/doc/gio-2.0/method.Resource.lookup_data.html %%PORTDOCS%%share/doc/gio-2.0/method.Resource.open_stream.html %%PORTDOCS%%share/doc/gio-2.0/method.Resource.ref.html @@ -2635,48 +2597,6 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/method.TlsPassword.set_value.html %%PORTDOCS%%share/doc/gio-2.0/method.TlsPassword.set_value_full.html %%PORTDOCS%%share/doc/gio-2.0/method.TlsPassword.set_warning.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixConnection.receive_credentials.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixConnection.receive_credentials_async.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixConnection.receive_credentials_finish.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixConnection.receive_fd.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixConnection.send_credentials.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixConnection.send_credentials_async.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixConnection.send_credentials_finish.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixConnection.send_fd.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixCredentialsMessage.get_credentials.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixFDList.append.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixFDList.get.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixFDList.get_length.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixFDList.peek_fds.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixFDList.steal_fds.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixFDMessage.append_fd.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixFDMessage.get_fd_list.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixFDMessage.steal_fds.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixInputStream.get_close_fd.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixInputStream.get_fd.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixInputStream.set_close_fd.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountMonitor.set_rate_limit.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.compare.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.copy.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.free.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.get_device_path.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.get_fs_type.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.get_mount_path.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.get_options.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.guess_can_eject.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.guess_icon.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.guess_name.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.guess_symbolic_icon.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.is_loopback.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.is_readonly.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixMountPoint.is_user_mountable.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixOutputStream.get_close_fd.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixOutputStream.get_fd.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixOutputStream.set_close_fd.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixSocketAddress.get_address_type.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixSocketAddress.get_is_abstract.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixSocketAddress.get_path.html -%%PORTDOCS%%share/doc/gio-2.0/method.UnixSocketAddress.get_path_len.html %%PORTDOCS%%share/doc/gio-2.0/method.Vfs.get_file_for_path.html %%PORTDOCS%%share/doc/gio-2.0/method.Vfs.get_file_for_uri.html %%PORTDOCS%%share/doc/gio-2.0/method.Vfs.get_supported_uri_schemes.html @@ -2981,16 +2901,6 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/property.TlsPassword.flags.html %%PORTDOCS%%share/doc/gio-2.0/property.TlsPassword.warning.html %%PORTDOCS%%share/doc/gio-2.0/property.TlsServerConnection.authentication-mode.html -%%PORTDOCS%%share/doc/gio-2.0/property.UnixCredentialsMessage.credentials.html -%%PORTDOCS%%share/doc/gio-2.0/property.UnixFDMessage.fd-list.html -%%PORTDOCS%%share/doc/gio-2.0/property.UnixInputStream.close-fd.html -%%PORTDOCS%%share/doc/gio-2.0/property.UnixInputStream.fd.html -%%PORTDOCS%%share/doc/gio-2.0/property.UnixOutputStream.close-fd.html -%%PORTDOCS%%share/doc/gio-2.0/property.UnixOutputStream.fd.html -%%PORTDOCS%%share/doc/gio-2.0/property.UnixSocketAddress.abstract.html -%%PORTDOCS%%share/doc/gio-2.0/property.UnixSocketAddress.address-type.html -%%PORTDOCS%%share/doc/gio-2.0/property.UnixSocketAddress.path-as-array.html -%%PORTDOCS%%share/doc/gio-2.0/property.UnixSocketAddress.path.html %%PORTDOCS%%share/doc/gio-2.0/property.ZlibCompressor.file-info.html %%PORTDOCS%%share/doc/gio-2.0/property.ZlibCompressor.format.html %%PORTDOCS%%share/doc/gio-2.0/property.ZlibCompressor.level.html @@ -3062,8 +2972,6 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/signal.SocketService.incoming.html %%PORTDOCS%%share/doc/gio-2.0/signal.ThreadedSocketService.run.html %%PORTDOCS%%share/doc/gio-2.0/signal.TlsConnection.accept-certificate.html -%%PORTDOCS%%share/doc/gio-2.0/signal.UnixMountMonitor.mountpoints-changed.html -%%PORTDOCS%%share/doc/gio-2.0/signal.UnixMountMonitor.mounts-changed.html %%PORTDOCS%%share/doc/gio-2.0/signal.Volume.changed.html %%PORTDOCS%%share/doc/gio-2.0/signal.Volume.removed.html %%PORTDOCS%%share/doc/gio-2.0/signal.VolumeMonitor.drive-changed.html @@ -3109,8 +3017,6 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/struct.SettingsSchemaSource.html %%PORTDOCS%%share/doc/gio-2.0/struct.SrvTarget.html %%PORTDOCS%%share/doc/gio-2.0/struct.StaticResource.html -%%PORTDOCS%%share/doc/gio-2.0/struct.UnixMountEntry.html -%%PORTDOCS%%share/doc/gio-2.0/struct.UnixMountPoint.html %%PORTDOCS%%share/doc/gio-2.0/style.css %%PORTDOCS%%share/doc/gio-2.0/tls-overview.html %%PORTDOCS%%share/doc/gio-2.0/type_func.Action.name_is_valid.html @@ -3224,10 +3130,6 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/type_func.TlsError.quark.html %%PORTDOCS%%share/doc/gio-2.0/type_func.TlsFileDatabase.new.html %%PORTDOCS%%share/doc/gio-2.0/type_func.TlsServerConnection.new.html -%%PORTDOCS%%share/doc/gio-2.0/type_func.UnixCredentialsMessage.is_supported.html -%%PORTDOCS%%share/doc/gio-2.0/type_func.UnixMountMonitor.get.html -%%PORTDOCS%%share/doc/gio-2.0/type_func.UnixMountPoint.at.html -%%PORTDOCS%%share/doc/gio-2.0/type_func.UnixSocketAddress.abstract_names_supported.html %%PORTDOCS%%share/doc/gio-2.0/type_func.Vfs.get_default.html %%PORTDOCS%%share/doc/gio-2.0/type_func.Vfs.get_local.html %%PORTDOCS%%share/doc/gio-2.0/type_func.VolumeMonitor.adopt_orphan_mount.html @@ -3456,6 +3358,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-2.0/vfunc.File.poll_mountable.html %%PORTDOCS%%share/doc/gio-2.0/vfunc.File.poll_mountable_finish.html %%PORTDOCS%%share/doc/gio-2.0/vfunc.File.prefix_matches.html +%%PORTDOCS%%share/doc/gio-2.0/vfunc.File.query_exists.html %%PORTDOCS%%share/doc/gio-2.0/vfunc.File.query_filesystem_info.html %%PORTDOCS%%share/doc/gio-2.0/vfunc.File.query_filesystem_info_async.html %%PORTDOCS%%share/doc/gio-2.0/vfunc.File.query_filesystem_info_finish.html @@ -3830,6 +3733,9 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-unix-2.0/func.mount_at.html %%PORTDOCS%%share/doc/gio-unix-2.0/func.mount_compare.html %%PORTDOCS%%share/doc/gio-unix-2.0/func.mount_copy.html +%%PORTDOCS%%share/doc/gio-unix-2.0/func.mount_entries_changed_since.html +%%PORTDOCS%%share/doc/gio-unix-2.0/func.mount_entries_get.html +%%PORTDOCS%%share/doc/gio-unix-2.0/func.mount_entries_get_from_file.html %%PORTDOCS%%share/doc/gio-unix-2.0/func.mount_for.html %%PORTDOCS%%share/doc/gio-unix-2.0/func.mount_free.html %%PORTDOCS%%share/doc/gio-unix-2.0/func.mount_get_device_path.html @@ -3901,6 +3807,23 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gio-unix-2.0/type_func.InputStream.get_close_fd.html %%PORTDOCS%%share/doc/gio-unix-2.0/type_func.InputStream.get_fd.html %%PORTDOCS%%share/doc/gio-unix-2.0/type_func.InputStream.set_close_fd.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.at.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.compare.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.copy.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.for.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.free.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.get_device_path.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.get_fs_type.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.get_mount_path.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.get_options.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.get_root_path.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.guess_can_eject.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.guess_icon.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.guess_name.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.guess_should_display.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.guess_symbolic_icon.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.is_readonly.html +%%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountEntry.is_system_internal.html %%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountMonitor.get.html %%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountMonitor.set_rate_limit.html %%PORTDOCS%%share/doc/gio-unix-2.0/type_func.MountPoint.at.html @@ -4024,6 +3947,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_ENUMERATOR_IN_2_78_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_ENUMERATOR_IN_2_80_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_ENUMERATOR_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_ENUMERATOR_IN_2_84_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_IN_2_26_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_IN_2_28_FOR.html @@ -4054,6 +3978,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_IN_2_78_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_IN_2_80_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_IN_2_84_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_MACRO_IN_2_26_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_MACRO_IN_2_28_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_MACRO_IN_2_30_FOR.html @@ -4083,6 +4008,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_MACRO_IN_2_78_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_MACRO_IN_2_80_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_MACRO_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_MACRO_IN_2_84_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_TYPE_IN_2_26_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_TYPE_IN_2_28_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_TYPE_IN_2_30_FOR.html @@ -4112,6 +4038,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_TYPE_IN_2_78_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_TYPE_IN_2_80_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_TYPE_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/girepository-2.0/func.DEPRECATED_TYPE_IN_2_84_FOR.html %%PORTDOCS%%share/doc/girepository-2.0/func.UNAVAILABLE.html %%PORTDOCS%%share/doc/girepository-2.0/func.UNAVAILABLE_STATIC_INLINE.html %%PORTDOCS%%share/doc/girepository-2.0/func.VFUNC_INFO.html @@ -4151,12 +4078,16 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/girepository-2.0/method.BaseInfo.unref.html %%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.can_throw_gerror.html %%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.get_arg.html +%%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.get_async_function.html %%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.get_caller_owns.html +%%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.get_finish_function.html %%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.get_instance_ownership_transfer.html %%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.get_n_args.html %%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.get_return_attribute.html %%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.get_return_type.html +%%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.get_sync_function.html %%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.invoke.html +%%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.is_async.html %%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.is_method.html %%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.iterate_return_attributes.html %%PORTDOCS%%share/doc/girepository-2.0/method.CallableInfo.load_arg.html @@ -4443,7 +4374,6 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/callback.TranslateFunc.html %%PORTDOCS%%%%DOCSDIR%%-2.0/callback.TraverseFunc.html %%PORTDOCS%%%%DOCSDIR%%-2.0/callback.TraverseNodeFunc.html -%%PORTDOCS%%%%DOCSDIR%%-2.0/callback.UnixFDSourceFunc.html %%PORTDOCS%%%%DOCSDIR%%-2.0/callback.VoidFunc.html %%PORTDOCS%%%%DOCSDIR%%-2.0/character-set.html %%PORTDOCS%%%%DOCSDIR%%-2.0/checked-math.html @@ -4573,6 +4503,8 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/const.SYSDEF_MSG_OOB.html %%PORTDOCS%%%%DOCSDIR%%-2.0/const.SYSDEF_MSG_PEEK.html %%PORTDOCS%%%%DOCSDIR%%-2.0/const.TEST_OPTION_ISOLATE_DIRS.html +%%PORTDOCS%%%%DOCSDIR%%-2.0/const.TEST_OPTION_NONFATAL_ASSERTIONS.html +%%PORTDOCS%%%%DOCSDIR%%-2.0/const.TEST_OPTION_NO_PRGNAME.html %%PORTDOCS%%%%DOCSDIR%%-2.0/const.TIME_SPAN_DAY.html %%PORTDOCS%%%%DOCSDIR%%-2.0/const.TIME_SPAN_HOUR.html %%PORTDOCS%%%%DOCSDIR%%-2.0/const.TIME_SPAN_MILLISECOND.html @@ -4708,7 +4640,6 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/enum.UnicodeBreakType.html %%PORTDOCS%%%%DOCSDIR%%-2.0/enum.UnicodeScript.html %%PORTDOCS%%%%DOCSDIR%%-2.0/enum.UnicodeType.html -%%PORTDOCS%%%%DOCSDIR%%-2.0/enum.UnixPipeEnd.html %%PORTDOCS%%%%DOCSDIR%%-2.0/enum.UserDirectory.html %%PORTDOCS%%%%DOCSDIR%%-2.0/enum.VariantClass.html %%PORTDOCS%%%%DOCSDIR%%-2.0/error-reporting.html @@ -4816,6 +4747,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/func.UNLIKELY.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.UNLOCK.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.VARIANT_BUILDER_INIT.html +%%PORTDOCS%%%%DOCSDIR%%-2.0/func.VARIANT_BUILDER_INIT_UNSET.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.VARIANT_DICT_INIT.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.WIN32_DLLMAIN_FOR_DLL_NAME.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.abort.html @@ -4947,6 +4879,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/func.chunk_new.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.chunk_new0.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.clear_error.html +%%PORTDOCS%%%%DOCSDIR%%-2.0/func.clear_fd.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.clear_handle_id.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.clear_list.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.clear_pointer.html @@ -5230,6 +5163,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/func.ref_count_inc.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.ref_count_init.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.ref_string_acquire.html +%%PORTDOCS%%%%DOCSDIR%%-2.0/func.ref_string_equal.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.ref_string_length.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.ref_string_new.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.ref_string_new_intern.html @@ -5256,6 +5190,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/func.set_prgname.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.set_print_handler.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.set_printerr_handler.html +%%PORTDOCS%%%%DOCSDIR%%-2.0/func.set_str.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.setenv.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.shell_error_quark.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.shell_parse_argv.html @@ -5297,6 +5232,8 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/func.static_mutex_lock.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.static_mutex_trylock.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.static_mutex_unlock.html +%%PORTDOCS%%%%DOCSDIR%%-2.0/func.steal_fd.html +%%PORTDOCS%%%%DOCSDIR%%-2.0/func.steal_handle_id.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.steal_pointer.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.stpcpy.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.str_equal.html @@ -5470,16 +5407,6 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/func.unichar_xdigit_value.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.unicode_canonical_decomposition.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.unicode_canonical_ordering.html -%%PORTDOCS%%%%DOCSDIR%%-2.0/func.unix_error_quark.html -%%PORTDOCS%%%%DOCSDIR%%-2.0/func.unix_fd_add.html -%%PORTDOCS%%%%DOCSDIR%%-2.0/func.unix_fd_add_full.html -%%PORTDOCS%%%%DOCSDIR%%-2.0/func.unix_fd_source_new.html -%%PORTDOCS%%%%DOCSDIR%%-2.0/func.unix_get_passwd_entry.html -%%PORTDOCS%%%%DOCSDIR%%-2.0/func.unix_open_pipe.html -%%PORTDOCS%%%%DOCSDIR%%-2.0/func.unix_set_fd_nonblocking.html -%%PORTDOCS%%%%DOCSDIR%%-2.0/func.unix_signal_add.html -%%PORTDOCS%%%%DOCSDIR%%-2.0/func.unix_signal_add_full.html -%%PORTDOCS%%%%DOCSDIR%%-2.0/func.unix_signal_source_new.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.unlink.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.unsetenv.html %%PORTDOCS%%%%DOCSDIR%%-2.0/func.usleep.html @@ -5863,6 +5790,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/method.MainContext.pop_thread_default.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.MainContext.prepare.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.MainContext.push_thread_default.html +%%PORTDOCS%%%%DOCSDIR%%-2.0/method.MainContext.pusher_new.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.MainContext.query.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.MainContext.ref.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.MainContext.release.html @@ -6237,6 +6165,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/method.TestSuite.add.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.TestSuite.add_suite.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.TestSuite.free.html +%%PORTDOCS%%%%DOCSDIR%%-2.0/method.Thread.get_name.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.Thread.join.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.Thread.ref.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.Thread.set_priority.html @@ -6375,6 +6304,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/method.VariantBuilder.close.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.VariantBuilder.end.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.VariantBuilder.init.html +%%PORTDOCS%%%%DOCSDIR%%-2.0/method.VariantBuilder.init_static.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.VariantBuilder.open.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.VariantBuilder.ref.html %%PORTDOCS%%%%DOCSDIR%%-2.0/method.VariantBuilder.unref.html @@ -6514,7 +6444,6 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/struct.Tree.html %%PORTDOCS%%%%DOCSDIR%%-2.0/struct.TreeNode.html %%PORTDOCS%%%%DOCSDIR%%-2.0/struct.Tuples.html -%%PORTDOCS%%%%DOCSDIR%%-2.0/struct.UnixPipe.html %%PORTDOCS%%%%DOCSDIR%%-2.0/struct.Uri.html %%PORTDOCS%%%%DOCSDIR%%-2.0/struct.UriParamsIter.html %%PORTDOCS%%%%DOCSDIR%%-2.0/struct.Variant.html @@ -6670,6 +6599,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-2.0/type_func.List.sort_with_data.html %%PORTDOCS%%%%DOCSDIR%%-2.0/type_func.MainContext.default.html %%PORTDOCS%%%%DOCSDIR%%-2.0/type_func.MainContext.get_thread_default.html +%%PORTDOCS%%%%DOCSDIR%%-2.0/type_func.MainContext.pusher_free.html %%PORTDOCS%%%%DOCSDIR%%-2.0/type_func.MainContext.ref_thread_default.html %%PORTDOCS%%%%DOCSDIR%%-2.0/type_func.MemChunk.info.html %%PORTDOCS%%%%DOCSDIR%%-2.0/type_func.MemChunk.new.html @@ -6906,6 +6836,11 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%%%DOCSDIR%%-unix-2.0/solarized-light.css %%PORTDOCS%%%%DOCSDIR%%-unix-2.0/struct.Pipe.html %%PORTDOCS%%%%DOCSDIR%%-unix-2.0/style.css +%%PORTDOCS%%%%DOCSDIR%%-unix-2.0/type_func.Pipe.clear.html +%%PORTDOCS%%%%DOCSDIR%%-unix-2.0/type_func.Pipe.close.html +%%PORTDOCS%%%%DOCSDIR%%-unix-2.0/type_func.Pipe.get.html +%%PORTDOCS%%%%DOCSDIR%%-unix-2.0/type_func.Pipe.open.html +%%PORTDOCS%%%%DOCSDIR%%-unix-2.0/type_func.Pipe.steal.html %%PORTDOCS%%%%DOCSDIR%%-unix-2.0/unix.html %%PORTDOCS%%%%DOCSDIR%%-unix-2.0/urlmap.js %%PORTDOCS%%share/doc/gmodule-2.0/RedHatDisplay-Black.woff @@ -6978,6 +6913,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_ENUMERATOR_IN_2_78_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_ENUMERATOR_IN_2_80_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_ENUMERATOR_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_ENUMERATOR_IN_2_84_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_IN_2_26_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_IN_2_28_FOR.html @@ -7008,6 +6944,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_IN_2_78_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_IN_2_80_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_IN_2_84_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_MACRO_IN_2_26_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_MACRO_IN_2_28_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_MACRO_IN_2_30_FOR.html @@ -7037,6 +6974,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_MACRO_IN_2_78_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_MACRO_IN_2_80_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_MACRO_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_MACRO_IN_2_84_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_TYPE_IN_2_26_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_TYPE_IN_2_28_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_TYPE_IN_2_30_FOR.html @@ -7066,6 +7004,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_TYPE_IN_2_78_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_TYPE_IN_2_80_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_TYPE_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/gmodule-2.0/func.DEPRECATED_TYPE_IN_2_84_FOR.html %%PORTDOCS%%share/doc/gmodule-2.0/func.UNAVAILABLE.html %%PORTDOCS%%share/doc/gmodule-2.0/func.UNAVAILABLE_STATIC_INLINE.html %%PORTDOCS%%share/doc/gmodule-2.0/fzy.js @@ -7294,6 +7233,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_ENUMERATOR_IN_2_78_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_ENUMERATOR_IN_2_80_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_ENUMERATOR_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_ENUMERATOR_IN_2_84_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_IN_2_26_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_IN_2_28_FOR.html @@ -7324,6 +7264,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_IN_2_78_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_IN_2_80_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_IN_2_84_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_MACRO_IN_2_26_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_MACRO_IN_2_28_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_MACRO_IN_2_30_FOR.html @@ -7353,6 +7294,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_MACRO_IN_2_78_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_MACRO_IN_2_80_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_MACRO_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_MACRO_IN_2_84_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_TYPE_IN_2_26_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_TYPE_IN_2_28_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_TYPE_IN_2_30_FOR.html @@ -7382,6 +7324,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_TYPE_IN_2_78_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_TYPE_IN_2_80_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_TYPE_IN_2_82_FOR.html +%%PORTDOCS%%share/doc/gobject-2.0/func.DEPRECATED_TYPE_IN_2_84_FOR.html %%PORTDOCS%%share/doc/gobject-2.0/func.ENUM_CLASS_TYPE.html %%PORTDOCS%%share/doc/gobject-2.0/func.ENUM_CLASS_TYPE_NAME.html %%PORTDOCS%%share/doc/gobject-2.0/func.FLAGS_CLASS_TYPE.html @@ -7570,6 +7513,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gobject-2.0/func.type_check_value_holds.html %%PORTDOCS%%share/doc/gobject-2.0/func.type_children.html %%PORTDOCS%%share/doc/gobject-2.0/func.type_create_instance.html +%%PORTDOCS%%share/doc/gobject-2.0/func.type_default_interface_get.html %%PORTDOCS%%share/doc/gobject-2.0/func.type_default_interface_peek.html %%PORTDOCS%%share/doc/gobject-2.0/func.type_default_interface_ref.html %%PORTDOCS%%share/doc/gobject-2.0/func.type_default_interface_unref.html @@ -7915,6 +7859,7 @@ share/bash-completion/completions/gsettings %%PORTDOCS%%share/doc/gobject-2.0/type_func.ParamSpec.is_valid_name.html %%PORTDOCS%%share/doc/gobject-2.0/type_func.ParamSpecPool.new.html %%PORTDOCS%%share/doc/gobject-2.0/type_func.TypeClass.adjust_private_offset.html +%%PORTDOCS%%share/doc/gobject-2.0/type_func.TypeClass.get.html %%PORTDOCS%%share/doc/gobject-2.0/type_func.TypeClass.peek.html %%PORTDOCS%%share/doc/gobject-2.0/type_func.TypeClass.peek_static.html %%PORTDOCS%%share/doc/gobject-2.0/type_func.TypeClass.ref.html