public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/glib2] cve-2026-58016-f44: Update to 2.65.3
@ 2026-08-11 10:37 Kalev Lember
  0 siblings, 0 replies; only message in thread
From: Kalev Lember @ 2026-08-11 10:37 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : e1ea8b2fcf9c5cdd83936bea22efe2738f0dcc57
Author : Kalev Lember <klember@redhat.com>
Date   : 2020-09-02T18:52:53+02:00
Stats  : +6/-60 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/e1ea8b2fcf9c5cdd83936bea22efe2738f0dcc57?branch=cve-2026-58016-f44

Log:
Update to 2.65.3

---
diff --git a/0001-gio-Allow-no-atime-from-statx.patch b/0001-gio-Allow-no-atime-from-statx.patch
deleted file mode 100644
index a91a9ff..0000000
--- a/0001-gio-Allow-no-atime-from-statx.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-From 6fc143bba81a02cac0ca6bc47e8249b65ffc0ad9 Mon Sep 17 00:00:00 2001
-From: Valentin David <valentin.david@codethink.co.uk>
-Date: Sun, 23 Aug 2020 16:41:17 +0200
-Subject: [PATCH] gio: Allow no atime from statx
-
-statx does not provide stx_atime when querying a file in a read-only
-mounted file system. So call to statx should not expect it to be in
-the mask. Otherwise we would fail with ERANGE for querying any file in
-a read-only file system.
-
-Fixes #2189.
----
- gio/glocalfileinfo.c | 13 ++++++++-----
- 1 file changed, 8 insertions(+), 5 deletions(-)
-
-diff --git a/gio/glocalfileinfo.c b/gio/glocalfileinfo.c
-index a34c1b78a..0690e1da2 100644
---- a/gio/glocalfileinfo.c
-+++ b/gio/glocalfileinfo.c
-@@ -1025,13 +1025,16 @@ set_info_from_stat (GFileInfo             *info,
- #elif defined (HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC)
-   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_MODIFIED_USEC, _g_stat_mtim_nsec (statbuf) / 1000);
- #endif
--  
--  _g_file_info_set_attribute_uint64_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_ACCESS, _g_stat_atime (statbuf));
-+
-+  if (_g_stat_has_field (statbuf, G_LOCAL_FILE_STAT_FIELD_ATIME))
-+    {
-+      _g_file_info_set_attribute_uint64_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_ACCESS, _g_stat_atime (statbuf));
- #if defined (HAVE_STRUCT_STAT_ST_ATIMENSEC)
--  _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_ACCESS_USEC, statbuf->st_atimensec / 1000);
-+      _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_ACCESS_USEC, statbuf->st_atimensec / 1000);
- #elif defined (HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC)
--  _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_ACCESS_USEC, _g_stat_atim_nsec (statbuf) / 1000);
-+      _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_ACCESS_USEC, _g_stat_atim_nsec (statbuf) / 1000);
- #endif
-+    }
- #endif
- 
- #ifndef G_OS_WIN32
-@@ -1805,7 +1808,7 @@ _g_local_file_info_get (const char             *basename,
- 
-   res = g_local_file_lstat (path,
-                             G_LOCAL_FILE_STAT_FIELD_BASIC_STATS | G_LOCAL_FILE_STAT_FIELD_BTIME,
--                            G_LOCAL_FILE_STAT_FIELD_ALL & (~G_LOCAL_FILE_STAT_FIELD_BTIME),
-+                            G_LOCAL_FILE_STAT_FIELD_ALL & (~G_LOCAL_FILE_STAT_FIELD_BTIME) & (~G_LOCAL_FILE_STAT_FIELD_ATIME),
-                             &statbuf);
- 
-   if (res == -1)
--- 
-2.28.0
-

diff --git a/glib2.spec b/glib2.spec
index 96110ac..8dd58ac 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -1,6 +1,6 @@
 Name: glib2
-Version: 2.65.2
-Release: 3%{?dist}
+Version: 2.65.3
+Release: 1%{?dist}
 Summary: A library of handy utility functions
 
 License: LGPLv2+
@@ -9,11 +9,6 @@ Source0: http://download.gnome.org/sources/glib/2.65/glib-%{version}.tar.xz
 
 # Avoid requiring a too new gtk-doc version for building glib
 Patch0: gtk-doc-1-32.patch
-# Fixes errors accessing read-only file systems (and possibly CIFS
-# shares)
-# https://gitlab.gnome.org/GNOME/glib/-/issues/2189
-# https://gitlab.gnome.org/GNOME/glib/-/merge_requests/1630
-Patch1: 0001-gio-Allow-no-atime-from-statx.patch
 
 BuildRequires: chrpath
 BuildRequires: gcc
@@ -222,6 +217,9 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
 %{_datadir}/installed-tests
 
 %changelog
+* Wed Sep 02 2020 Kalev Lember <klember@redhat.com> - 2.65.3-1
+- Update to 2.65.3
+
 * Tue Aug 25 2020 Adam Williamson <awilliam@redhat.com> - 2.65.2-3
 - Backport fix for GGO #2189 (error accessing some filesystems)
 

diff --git a/sources b/sources
index c6c7f02..bd36d7b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (glib-2.65.2.tar.xz) = 9a2ebd226b2d0bcd7fbfeeff7a0dd48f7a604636a19672dae5c0547dd8abe5f2bf3bd505e48797095f740775bac5e8eeb1230e754b9d03171d7d04c2363432fc
+SHA512 (glib-2.65.3.tar.xz) = 483526020928cdc13ae20402a55c69cfc5da9e22c31056fceef822d6d09ddb46d72a980307f3f5c516b3ee1dcf62ede88b3871456dec6f6813ed7653047bd8a7

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-08-11 10:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-11 10:37 [rpms/glib2] cve-2026-58016-f44: Update to 2.65.3 Kalev Lember

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox