public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/glib2] cve-2026-58016-f44: fix spec
@ 2026-08-11 10:33 Matthias Clasen
  0 siblings, 0 replies; 12+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:33 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : f51f344896252a17dbcda9ea14b6165b8142a371
Author : Matthias Clasen <mclasen@fedoraproject.org>
Date   : 2008-12-01T15:53:48+00:00
Stats  : +2/-321 in 5 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/f51f344896252a17dbcda9ea14b6165b8142a371?branch=cve-2026-58016-f44

Log:
fix spec

---
diff --git a/gio-2.18-always-pass-fuse-file-uri.patch b/gio-2.18-always-pass-fuse-file-uri.patch
deleted file mode 100644
index 2c3c350..0000000
--- a/gio-2.18-always-pass-fuse-file-uri.patch
+++ /dev/null
@@ -1,75 +0,0 @@
---- trunk/gio/gdesktopappinfo.c	2008/09/26 19:57:36	7554
-+++ trunk/gio/gdesktopappinfo.c	2008/10/01 17:46:57	7566
-@@ -530,9 +530,32 @@
- {
-   GList *uris = *uri_list;
-   char *expanded;
--  
-+  gboolean force_file_uri;
-+  char force_file_uri_macro;
-+
-   g_return_if_fail (exec != NULL);
--  
-+
-+  /* On %u and %U, pass POSIX file path pointing to the URI via
-+   * the FUSE mount in ~/.gvfs. Note that if the FUSE daemon isn't
-+   * running or the URI doesn't have a POSIX file path via FUSE
-+   * we'll just pass the URI.
-+   */
-+  switch (macro)
-+    {
-+    case 'u':
-+      force_file_uri_macro = 'f';
-+      force_file_uri = TRUE;
-+      break;
-+    case 'U':
-+      force_file_uri_macro = 'F';
-+      force_file_uri = TRUE;
-+      break;
-+    default:
-+      force_file_uri_macro = macro;
-+      force_file_uri = FALSE;
-+      break;
-+    }
-+
-   switch (macro)
-     {
-     case 'u':
-@@ -541,7 +564,17 @@
-     case 'n':
-       if (uris)
- 	{
--	  expanded = expand_macro_single (macro, uris->data);
-+          if (!force_file_uri)
-+            {
-+              expanded = expand_macro_single (macro, uris->data);
-+            }
-+          else
-+            {
-+              expanded = expand_macro_single (force_file_uri_macro, uris->data);
-+              if (expanded == NULL)
-+                expanded = expand_macro_single (macro, uris->data);
-+            }
-+
- 	  if (expanded)
- 	    {
- 	      g_string_append (exec, expanded);
-@@ -558,7 +591,17 @@
-     case 'N':
-       while (uris)
- 	{
--	  expanded = expand_macro_single (macro, uris->data);
-+          if (!force_file_uri)
-+            {
-+              expanded = expand_macro_single (macro, uris->data);
-+            }
-+          else
-+            {
-+              expanded = expand_macro_single (force_file_uri_macro, uris->data);
-+              if (expanded == NULL)
-+                expanded = expand_macro_single (macro, uris->data);
-+            }
-+
- 	  if (expanded)
- 	    {
- 	      g_string_append (exec, expanded);

diff --git a/glib-2.17.4-gio-guess-content-sync.patch b/glib-2.17.4-gio-guess-content-sync.patch
deleted file mode 100644
index ad10c35..0000000
--- a/glib-2.17.4-gio-guess-content-sync.patch
+++ /dev/null
@@ -1,139 +0,0 @@
---- trunk/docs/reference/gio/gio-sections.txt	2008/07/24 01:13:33	7251
-+++ trunk/docs/reference/gio/gio-sections.txt	2008/07/24 21:21:22	7252
-@@ -816,6 +816,7 @@
- g_mount_eject_finish
- g_mount_guess_content_type
- g_mount_guess_content_type_finish
-+g_mount_guess_content_type_sync
- <SUBSECTION Standard>
- G_IS_MOUNT
- G_MOUNT
---- trunk/gio/gio.symbols	2008/07/24 01:13:33	7251
-+++ trunk/gio/gio.symbols	2008/07/24 21:21:22	7252
-@@ -718,6 +718,7 @@
- g_mount_remount_finish 
- g_mount_guess_content_type
- g_mount_guess_content_type_finish
-+g_mount_guess_content_type_sync
- #endif
- #endif
- 
---- trunk/gio/gmount.c	2008/07/24 01:13:33	7251
-+++ trunk/gio/gmount.c	2008/07/24 21:21:22	7252
-@@ -570,9 +570,10 @@
-  * memory cards. See the <ulink url="http://www.freedesktop.org/wiki/Specifications/shared-mime-info-spec">shared-mime-info</ulink>
-  * specification for more on x-content types.
-  *
-- * This is an asynchronous operation, and is finished by calling 
-- * g_mount_guess_content_type_finish() with the @mount and #GAsyncResult 
-- * data returned in the @callback. 
-+ * This is an asynchronous operation (see
-+ * g_mount_guess_content_type_sync() for the synchronous version), and
-+ * is finished by calling g_mount_guess_content_type_finish() with the
-+ * @mount and #GAsyncResult data returned in the @callback.
-  *
-  * Since: 2.18
-  */
-@@ -644,6 +645,55 @@
-   return (* iface->guess_content_type_finish) (mount, result, error);
- }
- 
-+/**
-+ * g_mount_guess_content_type_sync:
-+ * @mount: a #GMount
-+ * @force_rescan: Whether to force a rescan of the content.
-+ *     Otherwise a cached result will be used if available
-+ * @cancellable: optional #GCancellable object, %NULL to ignore
-+ * @error: a #GError location to store the error occuring, or %NULL to
-+ *     ignore
-+ *
-+ * Tries to guess the type of content stored on @mount. Returns one or
-+ * more textual identifiers of well-known content types (typically
-+ * prefixed with "x-content/"), e.g. x-content/image-dcf for camera 
-+ * memory cards. See the <ulink url="http://www.freedesktop.org/wiki/Specifications/shared-mime-info-spec">shared-mime-info</ulink>
-+ * specification for more on x-content types.
-+ *
-+ * This is an synchronous operation and as such may block doing IO;
-+ * see g_mount_guess_content_type() for the asynchronous version.
-+ *
-+ * Returns: a %NULL-terminated array of content types or %NULL on error.
-+ *     Caller should free this array with g_strfreev() when done with it.
-+ *
-+ * Since: 2.18
-+ */
-+char **
-+g_mount_guess_content_type_sync (GMount              *mount,
-+                                 gboolean             force_rescan,
-+                                 GCancellable        *cancellable,
-+                                 GError             **error)
-+{
-+  GMountIface *iface;
-+
-+  g_return_val_if_fail (G_IS_MOUNT (mount), NULL);
-+
-+  iface = G_MOUNT_GET_IFACE (mount);
-+
-+  if (iface->guess_content_type_sync == NULL)
-+    {
-+      g_set_error_literal (error,
-+                           G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
-+                           /* Translators: This is an error
-+                            * message for mount objects that
-+                            * don't implement content type guessing. */
-+                           _("mount doesn't implement synchronous content type guessing"));
-+
-+      return NULL;
-+    }
-+
-+  return (* iface->guess_content_type_sync) (mount, force_rescan, cancellable, error);
-+}
- 
- #define __G_MOUNT_C__
- #include "gioaliasdef.c"
---- trunk/gio/gmount.h	2008/07/24 01:13:33	7251
-+++ trunk/gio/gmount.h	2008/07/24 21:21:22	7252
-@@ -119,6 +119,11 @@
-   gchar **           (*guess_content_type_finish) (GMount              *mount,
-                                                    GAsyncResult        *result,
-                                                     GError             **error); 
-+
-+  gchar **           (*guess_content_type_sync) (GMount              *mount,
-+                                                 gboolean             force_rescan,
-+                                                 GCancellable        *cancellable,
-+                                                 GError             **error);
- };
- 
- GType g_mount_get_type (void) G_GNUC_CONST;
-@@ -166,6 +171,11 @@
-                                                  GAsyncResult        *result,
-                                                  GError             **error);
- 
-+gchar **      g_mount_guess_content_type_sync (GMount              *mount,
-+                                               gboolean             force_rescan,
-+                                               GCancellable        *cancellable,
-+                                               GError             **error);
-+
- G_END_DECLS
- 
- #endif /* __G_MOUNT_H__ */
---- trunk/configure.in	2008/07/21 17:56:17	7234
-+++ trunk/configure.in	2008/07/21 18:07:55	7236
-@@ -23,7 +23,7 @@
- #
- m4_define([glib_major_version], [2])
- m4_define([glib_minor_version], [17])
--m4_define([glib_micro_version], [4])
-+m4_define([glib_micro_version], [5])
- m4_define([glib_interface_age], [0])
- m4_define([glib_binary_age],
-           [m4_eval(100 * glib_minor_version + glib_micro_version)])
---- trunk/tests/Makefile.am	2008/07/20 02:09:05	7209
-+++ trunk/tests/Makefile.am	2008/07/23 16:22:32	7243
-@@ -186,7 +186,6 @@
- module_test_LDFLAGS = $(G_MODULE_LDFLAGS)
- node_test_LDADD = $(progs_ldadd)
- onceinit_LDADD = $(thread_ldadd)
--option_test_LDADD = $(progs_ldadd)
- printf_test_LDADD = $(progs_ldadd)
- queue_test_LDADD = $(progs_ldadd)
- asyncqueue_test_LDADD = $(thread_ldadd)

diff --git a/glib-2.18.2-no-generic-icons.patch b/glib-2.18.2-no-generic-icons.patch
deleted file mode 100644
index 9308297..0000000
--- a/glib-2.18.2-no-generic-icons.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Index: gio/glocalfileinfo.c
-===================================================================
---- gio/glocalfileinfo.c	(revision 7620)
-+++ gio/glocalfileinfo.c	(revision 7621)
-@@ -1577,12 +1577,8 @@ _g_local_file_info_get (const char      
- 
-                       if (S_ISDIR (statbuf.st_mode)) 
-                         type_icon = "folder";
--                      else if (statbuf.st_mode & S_IXUSR)
--                        type_icon = "application-x-executable";
--                      else
--                        type_icon = "text-x-generic";
--
--                      g_themed_icon_append_name (G_THEMED_ICON (icon), type_icon);
-+                      if (type_icon)
-+                        g_themed_icon_append_name (G_THEMED_ICON (icon), type_icon);
-                     }
-                 }
- 

diff --git a/glib2.spec b/glib2.spec
index 1fc9af0..9790819 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -3,7 +3,7 @@
 Summary: A library of handy utility functions
 Name: glib2
 Version: 2.19.1
-Release: 1%{?dist}
+Release: 2%{?dist}
 License: LGPLv2+
 Group: System Environment/Libraries
 URL: http://www.gtk.org
@@ -19,12 +19,6 @@ BuildRequires: libselinux-devel
 # for sys/inotify.h
 BuildRequires: glibc-devel
 
-# https://bugzilla.redhat.com/show_bug.cgi?id=442835
-# http://bugzilla.gnome.org/show_bug.cgi?id=528670
-Patch2: gio-2.18-always-pass-fuse-file-uri.patch
-# http://bugzilla.gnome.org/show_bug.cgi?id=528320 (from svn)
-Patch3: glib-2.18.2-no-generic-icons.patch
-
 Patch4: glib-i386-atomic.patch
 
 # this patch requires autoreconf
@@ -61,8 +55,6 @@ of version 2 of the GLib library.
 
 %prep
 %setup -q -n glib-%{version}
-%patch2 -p1 -b .always-pass-fuse-file-uri
-%patch3 -p0 -b .no-generic-icons
 %patch4 -p1 -b .i386-atomic
 
 libtoolize --force --copy
@@ -141,7 +133,7 @@ rm -rf $RPM_BUILD_ROOT
 %{_libdir}/lib*.a
 
 %changelog
-* Mon Dec  1 2008 Matthias Clasen <mclasen@redhat.com> - 2.19.1-1
+* Mon Dec  1 2008 Matthias Clasen <mclasen@redhat.com> - 2.19.1-2
 - Update to 2.19.1
 
 * Mon Oct 27 2008 Matthias Clasen <mclasen@redhat.com> - 2.18.2-3

diff --git a/statfs-check.patch b/statfs-check.patch
deleted file mode 100644
index 2119afb..0000000
--- a/statfs-check.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-diff -up glib-2.17.4/configure.in.statfs-check glib-2.17.4/configure.in
---- glib-2.17.4/configure.in.statfs-check	2008-07-21 18:24:45.000000000 -0400
-+++ glib-2.17.4/configure.in	2008-07-21 18:25:19.000000000 -0400
-@@ -847,6 +847,7 @@ AC_CHECK_HEADERS([mntent.h sys/mnttab.h 
- AC_CHECK_MEMBERS([struct stat.st_mtimensec, struct stat.st_mtim.tv_nsec, struct stat.st_atimensec, struct stat.st_atim.tv_nsec, struct stat.st_ctimensec, struct stat.st_ctim.tv_nsec])
- AC_CHECK_MEMBERS([struct stat.st_blksize, struct stat.st_blocks, struct statfs.f_fstypename, struct statfs.f_bavail],,, [#include <sys/types.h>
- #include <sys/stat.h>
-+#include <sys/statfs.h>
- #include <unistd.h>
- #ifdef HAVE_SYS_PARAM_H
- #include <sys/param.h>
-diff -up glib-2.17.4/configure.statfs-check glib-2.17.4/configure
---- glib-2.17.4/configure.statfs-check	2008-07-21 18:25:36.000000000 -0400
-+++ glib-2.17.4/configure	2008-07-21 18:25:47.000000000 -0400
-@@ -33300,6 +33300,7 @@ cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
- #include <sys/types.h>
- #include <sys/stat.h>
-+#include <sys/statfs.h>
- #include <unistd.h>
- #ifdef HAVE_SYS_PARAM_H
- #include <sys/param.h>
-@@ -33349,6 +33350,7 @@ cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
- #include <sys/types.h>
- #include <sys/stat.h>
-+#include <sys/statfs.h>
- #include <unistd.h>
- #ifdef HAVE_SYS_PARAM_H
- #include <sys/param.h>
-@@ -33421,6 +33423,7 @@ cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
- #include <sys/types.h>
- #include <sys/stat.h>
-+#include <sys/statfs.h>
- #include <unistd.h>
- #ifdef HAVE_SYS_PARAM_H
- #include <sys/param.h>
-@@ -33470,6 +33473,7 @@ cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
- #include <sys/types.h>
- #include <sys/stat.h>
-+#include <sys/statfs.h>
- #include <unistd.h>
- #ifdef HAVE_SYS_PARAM_H
- #include <sys/param.h>
-@@ -33542,6 +33546,7 @@ cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
- #include <sys/types.h>
- #include <sys/stat.h>
-+#include <sys/statfs.h>
- #include <unistd.h>
- #ifdef HAVE_SYS_PARAM_H
- #include <sys/param.h>
-@@ -33591,6 +33596,7 @@ cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
- #include <sys/types.h>
- #include <sys/stat.h>
-+#include <sys/statfs.h>
- #include <unistd.h>
- #ifdef HAVE_SYS_PARAM_H
- #include <sys/param.h>
-@@ -33663,6 +33669,7 @@ cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
- #include <sys/types.h>
- #include <sys/stat.h>
-+#include <sys/statfs.h>
- #include <unistd.h>
- #ifdef HAVE_SYS_PARAM_H
- #include <sys/param.h>
-@@ -33712,6 +33719,7 @@ cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
- #include <sys/types.h>
- #include <sys/stat.h>
-+#include <sys/statfs.h>
- #include <unistd.h>
- #ifdef HAVE_SYS_PARAM_H
- #include <sys/param.h>

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [rpms/glib2] cve-2026-58016-f44: fix spec
@ 2026-08-11 10:35 Matthias Clasen
  0 siblings, 0 replies; 12+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:35 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : 1dfb21305d484d718838f66dfc7010e6b2ab1d50
Author : Matthias Clasen <mclasen@redhat.com>
Date   : 2012-06-26T01:02:20-04:00
Stats  : +1/-1 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/1dfb21305d484d718838f66dfc7010e6b2ab1d50?branch=cve-2026-58016-f44

Log:
fix spec

---
diff --git a/glib2.spec b/glib2.spec
index 69e3dd4..204e354 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -121,7 +121,7 @@ gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules
 %{_datadir}/glib-2.0/gdb
 %{_datadir}/glib-2.0/gettext
 %{_datadir}/glib-2.0/schemas/gschema.dtd
-%{_datadir/bash-completion/completions/gresource
+%{_datadir}/bash-completion/completions/gresource
 # %{_datadir}/glib-2.0/gdb/*.pyo
 # %{_datadir}/glib-2.0/gdb/*.pyc
 %{_bindir}/glib-genmarshal

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [rpms/glib2] cve-2026-58016-f44: fix spec
@ 2026-08-11 10:35 Matthias Clasen
  0 siblings, 0 replies; 12+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:35 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : 9d078a0e35939f1c09a238e6045b906d67d3c39e
Author : Matthias Clasen <mclasen@redhat.com>
Date   : 2012-01-20T15:47:55-05:00
Stats  : +0/-1 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/9d078a0e35939f1c09a238e6045b906d67d3c39e?branch=cve-2026-58016-f44

Log:
fix spec

---
diff --git a/glib2.spec b/glib2.spec
index 71328ac..7e5a0e9 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -57,7 +57,6 @@ The glib2-static package includes static libraries of the GLib library.
 
 %prep
 %setup -q -n glib-%{version}
-%patch0 -p1
 
 %build
 # Support builds of both git snapshots and tarballs packed with autogoo

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [rpms/glib2] cve-2026-58016-f44: fix spec
@ 2026-08-11 10:34 Matthias Clasen
  0 siblings, 0 replies; 12+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:34 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : 535843addbcc19129354fc909802a69974d1c9b4
Author : Matthias Clasen <mclasen@redhat.com>
Date   : 2011-06-06T23:55:28-04:00
Stats  : +1/-1 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/535843addbcc19129354fc909802a69974d1c9b4?branch=cve-2026-58016-f44

Log:
fix spec

---
diff --git a/glib2.spec b/glib2.spec
index 05cbf9f..d2dce3b 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -60,7 +60,7 @@ The glib2-static package includes static libraries of the GLib library.
 
 %prep
 %setup -q -n glib-%{version}
-%patch -p1 -b .datalist-deadlock
+%patch0 -p1 -b .datalist-deadlock
 
 %build
 # Support builds of both git snapshots and tarballs packed with autogoo

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [rpms/glib2] cve-2026-58016-f44: Fix spec
@ 2026-08-11 10:34 Matthias Clasen
  0 siblings, 0 replies; 12+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:34 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : da5523027ebe66912db94e4cae0dd75d4cbe5969
Author : Matthias Clasen <mclasen@fedoraproject.org>
Date   : 2010-04-23T11:07:05+00:00
Stats  : +1/-1 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/da5523027ebe66912db94e4cae0dd75d4cbe5969?branch=cve-2026-58016-f44

Log:
Fix spec

---
diff --git a/glib2.spec b/glib2.spec
index 0d6be59..4ca0308 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -176,7 +176,7 @@ esac
 %{_libdir}/lib*.a
 
 %changelog
-* Fir Apr 23 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.2-1
+* Fri Apr 23 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.2-1
 - Update to 2.25.2
 - Move schema compiler to the main package, since it is
   needed by other rpm's %%post at runtime

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [rpms/glib2] cve-2026-58016-f44: fix spec
@ 2026-08-11 10:34 Matthias Clasen
  0 siblings, 0 replies; 12+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:34 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : 867a0547c1f3cef955c8d4d0f8df984acb592798
Author : Matthias Clasen <mclasen@fedoraproject.org>
Date   : 2010-04-20T00:10:10+00:00
Stats  : +1/-1 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/867a0547c1f3cef955c8d4d0f8df984acb592798?branch=cve-2026-58016-f44

Log:
fix spec

---
diff --git a/glib2.spec b/glib2.spec
index 90c192a..3f307a1 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -78,7 +78,7 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/gio/modules/*.{a,la}
 rm -f $RPM_BUILD_ROOT%{_datadir}/glib-2.0/gdb/*.{pyc,pyo}
 
 # Install multilib wrappers for the binaries
-cp %{SOURCE1} $RPM_BUILD_ROOT{_bindir}/update-gio-modules
+install -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_bindir}/update-gio-modules
 
 case "$host" in
   alpha*|ia64*|powerpc64*|ppc64*|s390x*|sparc64*|x86_64*)

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [rpms/glib2] cve-2026-58016-f44: fix spec
@ 2026-08-11 10:34 Matthias Clasen
  0 siblings, 0 replies; 12+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:34 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : 190fc61d429c28a67709cb99a3599f60061dee74
Author : Matthias Clasen <mclasen@fedoraproject.org>
Date   : 2009-05-16T01:07:32+00:00
Stats  : +1/-1 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/190fc61d429c28a67709cb99a3599f60061dee74?branch=cve-2026-58016-f44

Log:
fix spec

---
diff --git a/glib2.spec b/glib2.spec
index 4de8880..f526f78 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -117,7 +117,7 @@ rm -rf $RPM_BUILD_ROOT
 %{_libdir}/lib*.a
 
 %changelog
-* Fri Mat 15 2009 Matthias Clasen <mclasen@redhat.com> - 2.21.0-1
+* Fri May 15 2009 Matthias Clasen <mclasen@redhat.com> - 2.21.0-1
 - Update to 2.21.0
 
 * Thu Apr  9 2009 Matthias Clasen <mclasen@redhat.com> - 2.20.1-1

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [rpms/glib2] cve-2026-58016-f44: fix spec
@ 2026-08-11 10:33 Matthias Clasen
  0 siblings, 0 replies; 12+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:33 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : 66d11f0ce90ea37cb2aa57288ce6418bbe237ec2
Author : Matthias Clasen <mclasen@fedoraproject.org>
Date   : 2008-07-03T15:57:57+00:00
Stats  : +1/-1 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/66d11f0ce90ea37cb2aa57288ce6418bbe237ec2?branch=cve-2026-58016-f44

Log:
fix spec

---
diff --git a/glib2.spec b/glib2.spec
index b957a9e..50f4aea 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -56,7 +56,7 @@ of version 2 of the GLib library.
 
 %prep
 %setup -q -n glib-%{version}
-%patch2 -p0 -b .only-pass-uri-to-gio-apps
+%patch2 -p1 -b .only-pass-uri-to-gio-apps
 %patch3 -p0 -b .selinux
 
 %build

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [rpms/glib2] cve-2026-58016-f44: fix spec
@ 2026-08-11 10:33 Matthias Clasen
  0 siblings, 0 replies; 12+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:33 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : 53ce54dc21a472dfcf2285a679a8bf525fd7fbfa
Author : Matthias Clasen <mclasen@fedoraproject.org>
Date   : 2007-12-22T18:24:02+00:00
Stats  : +2/-5 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/53ce54dc21a472dfcf2285a679a8bf525fd7fbfa?branch=cve-2026-58016-f44

Log:
fix spec

---
diff --git a/glib2.spec b/glib2.spec
index 5324352..eb460e6 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -10,13 +10,13 @@ URL: http://www.gtk.org
 Source: http://download.gnome.org/sources/glib/2.15/glib-%{version}.tar.bz2
 Source2: glib2.sh
 Source3: glib2.csh
-Patch0: desktopfiles.patch
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires: pkgconfig >= 1:0.14
 BuildRequires: gamin-devel
 BuildRequires: gettext
 
 Patch0: glib-2.15.0-gtestutils.patch
+Patch1: desktopfiles.patch
 
 %description 
 GLib is the low-level core library that forms the basis
@@ -49,11 +49,8 @@ of version 2 of the GLib library.
 
 %prep
 %setup -q -n glib-%{version}
-<<<<<<< glib2.spec
-%patch0 -p1 -b .desktopfiles
-=======
 %patch0 -p1 -b .gtestutils.patch
->>>>>>> 1.146
+%patch1 -p1 -b .desktopfiles
 
 %build
 for i in config.guess config.sub ; do

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [rpms/glib2] cve-2026-58016-f44: fix spec
@ 2026-08-11 10:33 Matthias Clasen
  0 siblings, 0 replies; 12+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:33 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : 5e3646c37a9d193725f89bba90f322db054e2e39
Author : Matthias Clasen <mclasen@fedoraproject.org>
Date   : 2007-12-21T04:45:58+00:00
Stats  : +1/-1 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/5e3646c37a9d193725f89bba90f322db054e2e39?branch=cve-2026-58016-f44

Log:
fix spec

---
diff --git a/glib2.spec b/glib2.spec
index b653c02..b3b4bfe 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -102,7 +102,7 @@ rm -rf $RPM_BUILD_ROOT
 %{libdir}/libgobject-2.0.so.*
 %{libdir}/libgio-2.0.so.*
 %{_sysconfdir}/profile.d/*
-{_libdir}/gio/modules/libgiofam.so
+%{_libdir}/gio/modules/libgiofam.so
 
 %files devel
 %defattr(-, root, root, -)

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [rpms/glib2] cve-2026-58016-f44: fix spec
@ 2026-08-11 10:33 Matthias Clasen
  0 siblings, 0 replies; 12+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:33 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : e29b2ddd75afcbc255bc9205a5499bcffbcfdc12
Author : Matthias Clasen <mclasen@fedoraproject.org>
Date   : 2007-02-03T18:49:44+00:00
Stats  : +1/-0 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/e29b2ddd75afcbc255bc9205a5499bcffbcfdc12?branch=cve-2026-58016-f44

Log:
fix spec

---
diff --git a/glib2.spec b/glib2.spec
index 4b64f8c..c4616b3 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -74,6 +74,7 @@ rm -rf $RPM_BUILD_ROOT
 make install DESTDIR=$RPM_BUILD_ROOT
 
 ## glib2.sh and glib2.csh
+./mkinstalldirs $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
 install -m 755 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
 install -m 755 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
 

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [rpms/glib2] cve-2026-58016-f44: fix spec
@ 2026-08-11 10:33 Matthias Clasen
  0 siblings, 0 replies; 12+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:33 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : aedaf3fd5356ec1aa74b3de6ebc1280a0cdf7624
Author : Matthias Clasen <mclasen@fedoraproject.org>
Date   : 2007-01-05T02:36:17+00:00
Stats  : +1/-1 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/aedaf3fd5356ec1aa74b3de6ebc1280a0cdf7624?branch=cve-2026-58016-f44

Log:
fix spec

---
diff --git a/glib2.spec b/glib2.spec
index 4f5235e..b85f74f 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -107,7 +107,7 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man1/*
 
 %changelog
-* Thu Jan  4 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.7-1
+* Thu Jan  4 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.7-1
 - Update to 2.12.7
 
 * Wed Dec 20 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.6-1

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2026-08-11 10:35 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-11 10:33 [rpms/glib2] cve-2026-58016-f44: fix spec Matthias Clasen
  -- strict thread matches above, loose matches on Subject: below --
2026-08-11 10:35 Matthias Clasen
2026-08-11 10:35 Matthias Clasen
2026-08-11 10:34 Matthias Clasen
2026-08-11 10:34 [rpms/glib2] cve-2026-58016-f44: Fix spec Matthias Clasen
2026-08-11 10:34 [rpms/glib2] cve-2026-58016-f44: fix spec Matthias Clasen
2026-08-11 10:34 Matthias Clasen
2026-08-11 10:33 Matthias Clasen
2026-08-11 10:33 Matthias Clasen
2026-08-11 10:33 Matthias Clasen
2026-08-11 10:33 Matthias Clasen
2026-08-11 10:33 Matthias Clasen

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